3665ee0128b762d52b11c2d42c4c248528ffb278
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeDAG.cpp
1 //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This 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/CodeGen/MachineModuleInfo.h"
19 #include "llvm/CodeGen/PseudoSourceValue.h"
20 #include "llvm/Target/TargetFrameInfo.h"
21 #include "llvm/Target/TargetLowering.h"
22 #include "llvm/Target/TargetData.h"
23 #include "llvm/Target/TargetMachine.h"
24 #include "llvm/Target/TargetOptions.h"
25 #include "llvm/Target/TargetSubtarget.h"
26 #include "llvm/CallingConv.h"
27 #include "llvm/Constants.h"
28 #include "llvm/DerivedTypes.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/Compiler.h"
31 #include "llvm/Support/MathExtras.h"
32 #include "llvm/ADT/DenseMap.h"
33 #include "llvm/ADT/SmallVector.h"
34 #include "llvm/ADT/SmallPtrSet.h"
35 #include <map>
36 using namespace llvm;
37
38 #ifndef NDEBUG
39 static cl::opt<bool>
40 ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
41                  cl::desc("Pop up a window to show dags before legalize"));
42 #else
43 static const bool ViewLegalizeDAGs = 0;
44 #endif
45
46 //===----------------------------------------------------------------------===//
47 /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
48 /// hacks on it until the target machine can handle it.  This involves
49 /// eliminating value sizes the machine cannot handle (promoting small sizes to
50 /// large sizes or splitting up large values into small values) as well as
51 /// eliminating operations the machine cannot handle.
52 ///
53 /// This code also does a small amount of optimization and recognition of idioms
54 /// as part of its processing.  For example, if a target does not support a
55 /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
56 /// will attempt merge setcc and brc instructions into brcc's.
57 ///
58 namespace {
59 class VISIBILITY_HIDDEN SelectionDAGLegalize {
60   TargetLowering &TLI;
61   SelectionDAG &DAG;
62
63   // Libcall insertion helpers.
64   
65   /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
66   /// legalized.  We use this to ensure that calls are properly serialized
67   /// against each other, including inserted libcalls.
68   SDOperand LastCALLSEQ_END;
69   
70   /// IsLegalizingCall - This member is used *only* for purposes of providing
71   /// helpful assertions that a libcall isn't created while another call is 
72   /// being legalized (which could lead to non-serialized call sequences).
73   bool IsLegalizingCall;
74   
75   enum LegalizeAction {
76     Legal,      // The target natively supports this operation.
77     Promote,    // This operation should be executed in a larger type.
78     Expand      // Try to expand this to other ops, otherwise use a libcall.
79   };
80   
81   /// ValueTypeActions - This is a bitvector that contains two bits for each
82   /// value type, where the two bits correspond to the LegalizeAction enum.
83   /// This can be queried with "getTypeAction(VT)".
84   TargetLowering::ValueTypeActionImpl ValueTypeActions;
85
86   /// LegalizedNodes - For nodes that are of legal width, and that have more
87   /// than one use, this map indicates what regularized operand to use.  This
88   /// allows us to avoid legalizing the same thing more than once.
89   DenseMap<SDOperand, SDOperand> LegalizedNodes;
90
91   /// PromotedNodes - For nodes that are below legal width, and that have more
92   /// than one use, this map indicates what promoted value to use.  This allows
93   /// us to avoid promoting the same thing more than once.
94   DenseMap<SDOperand, SDOperand> PromotedNodes;
95
96   /// ExpandedNodes - For nodes that need to be expanded this map indicates
97   /// which which operands are the expanded version of the input.  This allows
98   /// us to avoid expanding the same node more than once.
99   DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
100
101   /// SplitNodes - For vector nodes that need to be split, this map indicates
102   /// which which operands are the split version of the input.  This allows us
103   /// to avoid splitting the same node more than once.
104   std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
105   
106   /// ScalarizedNodes - For nodes that need to be converted from vector types to
107   /// scalar types, this contains the mapping of ones we have already
108   /// processed to the result.
109   std::map<SDOperand, SDOperand> ScalarizedNodes;
110   
111   void AddLegalizedOperand(SDOperand From, SDOperand To) {
112     LegalizedNodes.insert(std::make_pair(From, To));
113     // If someone requests legalization of the new node, return itself.
114     if (From != To)
115       LegalizedNodes.insert(std::make_pair(To, To));
116   }
117   void AddPromotedOperand(SDOperand From, SDOperand To) {
118     bool isNew = PromotedNodes.insert(std::make_pair(From, To));
119     assert(isNew && "Got into the map somehow?");
120     // If someone requests legalization of the new node, return itself.
121     LegalizedNodes.insert(std::make_pair(To, To));
122   }
123
124 public:
125
126   SelectionDAGLegalize(SelectionDAG &DAG);
127
128   /// getTypeAction - Return how we should legalize values of this type, either
129   /// it is already legal or we need to expand it into multiple registers of
130   /// smaller integer type, or we need to promote it to a larger type.
131   LegalizeAction getTypeAction(MVT VT) const {
132     return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
133   }
134
135   /// isTypeLegal - Return true if this type is legal on this target.
136   ///
137   bool isTypeLegal(MVT VT) const {
138     return getTypeAction(VT) == Legal;
139   }
140
141   void LegalizeDAG();
142
143 private:
144   /// HandleOp - Legalize, Promote, or Expand the specified operand as
145   /// appropriate for its type.
146   void HandleOp(SDOperand Op);
147     
148   /// LegalizeOp - We know that the specified value has a legal type.
149   /// Recursively ensure that the operands have legal types, then return the
150   /// result.
151   SDOperand LegalizeOp(SDOperand O);
152   
153   /// UnrollVectorOp - We know that the given vector has a legal type, however
154   /// the operation it performs is not legal and is an operation that we have
155   /// no way of lowering.  "Unroll" the vector, splitting out the scalars and
156   /// operating on each element individually.
157   SDOperand UnrollVectorOp(SDOperand O);
158   
159   /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
160   /// insertion index for the INSERT_VECTOR_ELT instruction.  In this case, it
161   /// is necessary to spill the vector being inserted into to memory, perform
162   /// the insert there, and then read the result back.
163   SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val,
164                                            SDOperand Idx);
165
166   /// PromoteOp - Given an operation that produces a value in an invalid type,
167   /// promote it to compute the value into a larger type.  The produced value
168   /// will have the correct bits for the low portion of the register, but no
169   /// guarantee is made about the top bits: it may be zero, sign-extended, or
170   /// garbage.
171   SDOperand PromoteOp(SDOperand O);
172
173   /// ExpandOp - Expand the specified SDOperand into its two component pieces
174   /// Lo&Hi.  Note that the Op MUST be an expanded type.  As a result of this,
175   /// the LegalizeNodes map is filled in for any results that are not expanded,
176   /// the ExpandedNodes map is filled in for any results that are expanded, and
177   /// the Lo/Hi values are returned.   This applies to integer types and Vector
178   /// types.
179   void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
180
181   /// SplitVectorOp - Given an operand of vector type, break it down into
182   /// two smaller values.
183   void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
184   
185   /// ScalarizeVectorOp - Given an operand of single-element vector type
186   /// (e.g. v1f32), convert it into the equivalent operation that returns a
187   /// scalar (e.g. f32) value.
188   SDOperand ScalarizeVectorOp(SDOperand O);
189   
190   /// isShuffleLegal - Return true if a vector shuffle is legal with the
191   /// specified mask and type.  Targets can specify exactly which masks they
192   /// support and the code generator is tasked with not creating illegal masks.
193   ///
194   /// Note that this will also return true for shuffles that are promoted to a
195   /// different type.
196   ///
197   /// If this is a legal shuffle, this method returns the (possibly promoted)
198   /// build_vector Mask.  If it's not a legal shuffle, it returns null.
199   SDNode *isShuffleLegal(MVT VT, SDOperand Mask) const;
200   
201   bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
202                                     SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
203
204   void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
205     
206   SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
207                           SDOperand &Hi);
208   SDOperand ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source);
209
210   SDOperand EmitStackConvert(SDOperand SrcOp, MVT SlotVT, MVT DestVT);
211   SDOperand ExpandBUILD_VECTOR(SDNode *Node);
212   SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
213   SDOperand ExpandLegalINT_TO_FP(bool isSigned, SDOperand LegalOp, MVT DestVT);
214   SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT DestVT, bool isSigned);
215   SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT DestVT, bool isSigned);
216
217   SDOperand ExpandBSWAP(SDOperand Op);
218   SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
219   bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
220                    SDOperand &Lo, SDOperand &Hi);
221   void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
222                         SDOperand &Lo, SDOperand &Hi);
223
224   SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
225   SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
226 };
227 }
228
229 /// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
230 /// specified mask and type.  Targets can specify exactly which masks they
231 /// support and the code generator is tasked with not creating illegal masks.
232 ///
233 /// Note that this will also return true for shuffles that are promoted to a
234 /// different type.
235 SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const {
236   switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
237   default: return 0;
238   case TargetLowering::Legal:
239   case TargetLowering::Custom:
240     break;
241   case TargetLowering::Promote: {
242     // If this is promoted to a different type, convert the shuffle mask and
243     // ask if it is legal in the promoted type!
244     MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
245
246     // If we changed # elements, change the shuffle mask.
247     unsigned NumEltsGrowth =
248       NVT.getVectorNumElements() / VT.getVectorNumElements();
249     assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
250     if (NumEltsGrowth > 1) {
251       // Renumber the elements.
252       SmallVector<SDOperand, 8> Ops;
253       for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
254         SDOperand InOp = Mask.getOperand(i);
255         for (unsigned j = 0; j != NumEltsGrowth; ++j) {
256           if (InOp.getOpcode() == ISD::UNDEF)
257             Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
258           else {
259             unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
260             Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
261           }
262         }
263       }
264       Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
265     }
266     VT = NVT;
267     break;
268   }
269   }
270   return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
271 }
272
273 SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
274   : TLI(dag.getTargetLoweringInfo()), DAG(dag),
275     ValueTypeActions(TLI.getValueTypeActions()) {
276   assert(MVT::LAST_VALUETYPE <= 32 &&
277          "Too many value types for ValueTypeActions to hold!");
278 }
279
280 /// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
281 /// contains all of a nodes operands before it contains the node.
282 static void ComputeTopDownOrdering(SelectionDAG &DAG,
283                                    SmallVector<SDNode*, 64> &Order) {
284
285   DenseMap<SDNode*, unsigned> Visited;
286   std::vector<SDNode*> Worklist;
287   Worklist.reserve(128);
288   
289   // Compute ordering from all of the leaves in the graphs, those (like the
290   // entry node) that have no operands.
291   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
292        E = DAG.allnodes_end(); I != E; ++I) {
293     if (I->getNumOperands() == 0) {
294       Visited[I] = 0 - 1U;
295       Worklist.push_back(I);
296     }
297   }
298   
299   while (!Worklist.empty()) {
300     SDNode *N = Worklist.back();
301     Worklist.pop_back();
302     
303     if (++Visited[N] != N->getNumOperands())
304       continue;  // Haven't visited all operands yet
305     
306     Order.push_back(N);
307
308     // Now that we have N in, add anything that uses it if all of their operands
309     // are now done.
310     for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
311          UI != E; ++UI)
312       Worklist.push_back(UI->getUser());
313   }
314
315   assert(Order.size() == Visited.size() &&
316          Order.size() == DAG.allnodes_size() &&
317          "Error: DAG is cyclic!");
318 }
319
320
321 void SelectionDAGLegalize::LegalizeDAG() {
322   LastCALLSEQ_END = DAG.getEntryNode();
323   IsLegalizingCall = false;
324   
325   // The legalize process is inherently a bottom-up recursive process (users
326   // legalize their uses before themselves).  Given infinite stack space, we
327   // could just start legalizing on the root and traverse the whole graph.  In
328   // practice however, this causes us to run out of stack space on large basic
329   // blocks.  To avoid this problem, compute an ordering of the nodes where each
330   // node is only legalized after all of its operands are legalized.
331   SmallVector<SDNode*, 64> Order;
332   ComputeTopDownOrdering(DAG, Order);
333   
334   for (unsigned i = 0, e = Order.size(); i != e; ++i)
335     HandleOp(SDOperand(Order[i], 0));
336
337   // Finally, it's possible the root changed.  Get the new root.
338   SDOperand OldRoot = DAG.getRoot();
339   assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
340   DAG.setRoot(LegalizedNodes[OldRoot]);
341
342   ExpandedNodes.clear();
343   LegalizedNodes.clear();
344   PromotedNodes.clear();
345   SplitNodes.clear();
346   ScalarizedNodes.clear();
347
348   // Remove dead nodes now.
349   DAG.RemoveDeadNodes();
350 }
351
352
353 /// FindCallEndFromCallStart - Given a chained node that is part of a call
354 /// sequence, find the CALLSEQ_END node that terminates the call sequence.
355 static SDNode *FindCallEndFromCallStart(SDNode *Node) {
356   if (Node->getOpcode() == ISD::CALLSEQ_END)
357     return Node;
358   if (Node->use_empty())
359     return 0;   // No CallSeqEnd
360   
361   // The chain is usually at the end.
362   SDOperand TheChain(Node, Node->getNumValues()-1);
363   if (TheChain.getValueType() != MVT::Other) {
364     // Sometimes it's at the beginning.
365     TheChain = SDOperand(Node, 0);
366     if (TheChain.getValueType() != MVT::Other) {
367       // Otherwise, hunt for it.
368       for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
369         if (Node->getValueType(i) == MVT::Other) {
370           TheChain = SDOperand(Node, i);
371           break;
372         }
373           
374       // Otherwise, we walked into a node without a chain.  
375       if (TheChain.getValueType() != MVT::Other)
376         return 0;
377     }
378   }
379   
380   for (SDNode::use_iterator UI = Node->use_begin(),
381        E = Node->use_end(); UI != E; ++UI) {
382     
383     // Make sure to only follow users of our token chain.
384     SDNode *User = UI->getUser();
385     for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
386       if (User->getOperand(i) == TheChain)
387         if (SDNode *Result = FindCallEndFromCallStart(User))
388           return Result;
389   }
390   return 0;
391 }
392
393 /// FindCallStartFromCallEnd - Given a chained node that is part of a call 
394 /// sequence, find the CALLSEQ_START node that initiates the call sequence.
395 static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
396   assert(Node && "Didn't find callseq_start for a call??");
397   if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
398   
399   assert(Node->getOperand(0).getValueType() == MVT::Other &&
400          "Node doesn't have a token chain argument!");
401   return FindCallStartFromCallEnd(Node->getOperand(0).Val);
402 }
403
404 /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
405 /// see if any uses can reach Dest.  If no dest operands can get to dest, 
406 /// legalize them, legalize ourself, and return false, otherwise, return true.
407 ///
408 /// Keep track of the nodes we fine that actually do lead to Dest in
409 /// NodesLeadingTo.  This avoids retraversing them exponential number of times.
410 ///
411 bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
412                                      SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
413   if (N == Dest) return true;  // N certainly leads to Dest :)
414   
415   // If we've already processed this node and it does lead to Dest, there is no
416   // need to reprocess it.
417   if (NodesLeadingTo.count(N)) return true;
418   
419   // If the first result of this node has been already legalized, then it cannot
420   // reach N.
421   switch (getTypeAction(N->getValueType(0))) {
422   case Legal: 
423     if (LegalizedNodes.count(SDOperand(N, 0))) return false;
424     break;
425   case Promote:
426     if (PromotedNodes.count(SDOperand(N, 0))) return false;
427     break;
428   case Expand:
429     if (ExpandedNodes.count(SDOperand(N, 0))) return false;
430     break;
431   }
432   
433   // Okay, this node has not already been legalized.  Check and legalize all
434   // operands.  If none lead to Dest, then we can legalize this node.
435   bool OperandsLeadToDest = false;
436   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
437     OperandsLeadToDest |=     // If an operand leads to Dest, so do we.
438       LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
439
440   if (OperandsLeadToDest) {
441     NodesLeadingTo.insert(N);
442     return true;
443   }
444
445   // Okay, this node looks safe, legalize it and return false.
446   HandleOp(SDOperand(N, 0));
447   return false;
448 }
449
450 /// HandleOp - Legalize, Promote, or Expand the specified operand as
451 /// appropriate for its type.
452 void SelectionDAGLegalize::HandleOp(SDOperand Op) {
453   MVT VT = Op.getValueType();
454   switch (getTypeAction(VT)) {
455   default: assert(0 && "Bad type action!");
456   case Legal:   (void)LegalizeOp(Op); break;
457   case Promote: (void)PromoteOp(Op); break;
458   case Expand:
459     if (!VT.isVector()) {
460       // If this is an illegal scalar, expand it into its two component
461       // pieces.
462       SDOperand X, Y;
463       if (Op.getOpcode() == ISD::TargetConstant)
464         break;  // Allow illegal target nodes.
465       ExpandOp(Op, X, Y);
466     } else if (VT.getVectorNumElements() == 1) {
467       // If this is an illegal single element vector, convert it to a
468       // scalar operation.
469       (void)ScalarizeVectorOp(Op);
470     } else {
471       // Otherwise, this is an illegal multiple element vector.
472       // Split it in half and legalize both parts.
473       SDOperand X, Y;
474       SplitVectorOp(Op, X, Y);
475     }
476     break;
477   }
478 }
479
480 /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
481 /// a load from the constant pool.
482 static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
483                                   SelectionDAG &DAG, TargetLowering &TLI) {
484   bool Extend = false;
485
486   // If a FP immediate is precise when represented as a float and if the
487   // target can do an extending load from float to double, we put it into
488   // the constant pool as a float, even if it's is statically typed as a
489   // double.  This shrinks FP constants and canonicalizes them for targets where
490   // an FP extending load is the same cost as a normal load (such as on the x87
491   // fp stack or PPC FP unit).
492   MVT VT = CFP->getValueType(0);
493   ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
494   if (!UseCP) {
495     if (VT!=MVT::f64 && VT!=MVT::f32)
496       assert(0 && "Invalid type expansion");
497     return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
498                            (VT == MVT::f64) ? MVT::i64 : MVT::i32);
499   }
500
501   MVT OrigVT = VT;
502   MVT SVT = VT;
503   while (SVT != MVT::f32) {
504     SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
505     if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
506         // Only do this if the target has a native EXTLOAD instruction from
507         // smaller type.
508         TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
509         TLI.ShouldShrinkFPConstant(OrigVT)) {
510       const Type *SType = SVT.getTypeForMVT();
511       LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
512       VT = SVT;
513       Extend = true;
514     }
515   }
516
517   SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
518   if (Extend)
519     return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
520                           CPIdx, PseudoSourceValue::getConstantPool(),
521                           0, VT);
522   return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
523                      PseudoSourceValue::getConstantPool(), 0);
524 }
525
526
527 /// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
528 /// operations.
529 static
530 SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
531                                       SelectionDAG &DAG, TargetLowering &TLI) {
532   MVT VT = Node->getValueType(0);
533   MVT SrcVT = Node->getOperand(1).getValueType();
534   assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
535          "fcopysign expansion only supported for f32 and f64");
536   MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
537
538   // First get the sign bit of second operand.
539   SDOperand Mask1 = (SrcVT == MVT::f64)
540     ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
541     : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
542   Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
543   SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
544   SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
545   // Shift right or sign-extend it if the two operands have different types.
546   int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
547   if (SizeDiff > 0) {
548     SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
549                           DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
550     SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
551   } else if (SizeDiff < 0)
552     SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
553
554   // Clear the sign bit of first operand.
555   SDOperand Mask2 = (VT == MVT::f64)
556     ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
557     : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
558   Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
559   SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
560   Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
561
562   // Or the value with the sign bit.
563   Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
564   return Result;
565 }
566
567 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
568 static
569 SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
570                                TargetLowering &TLI) {
571   SDOperand Chain = ST->getChain();
572   SDOperand Ptr = ST->getBasePtr();
573   SDOperand Val = ST->getValue();
574   MVT VT = Val.getValueType();
575   int Alignment = ST->getAlignment();
576   int SVOffset = ST->getSrcValueOffset();
577   if (ST->getMemoryVT().isFloatingPoint() ||
578       ST->getMemoryVT().isVector()) {
579     // Expand to a bitconvert of the value to the integer type of the 
580     // same size, then a (misaligned) int store.
581     MVT intVT;
582     if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
583       intVT = MVT::i128;
584     else if (VT.is64BitVector() || VT==MVT::f64)
585       intVT = MVT::i64;
586     else if (VT==MVT::f32)
587       intVT = MVT::i32;
588     else
589       assert(0 && "Unaligned store of unsupported type");
590
591     SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
592     return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
593                         SVOffset, ST->isVolatile(), Alignment);
594   }
595   assert(ST->getMemoryVT().isInteger() &&
596          !ST->getMemoryVT().isVector() &&
597          "Unaligned store of unknown type.");
598   // Get the half-size VT
599   MVT NewStoredVT =
600     (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
601   int NumBits = NewStoredVT.getSizeInBits();
602   int IncrementSize = NumBits / 8;
603
604   // Divide the stored value in two parts.
605   SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
606   SDOperand Lo = Val;
607   SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
608
609   // Store the two parts
610   SDOperand Store1, Store2;
611   Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
612                              ST->getSrcValue(), SVOffset, NewStoredVT,
613                              ST->isVolatile(), Alignment);
614   Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
615                     DAG.getConstant(IncrementSize, TLI.getPointerTy()));
616   Alignment = MinAlign(Alignment, IncrementSize);
617   Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
618                              ST->getSrcValue(), SVOffset + IncrementSize,
619                              NewStoredVT, ST->isVolatile(), Alignment);
620
621   return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
622 }
623
624 /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
625 static
626 SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
627                               TargetLowering &TLI) {
628   int SVOffset = LD->getSrcValueOffset();
629   SDOperand Chain = LD->getChain();
630   SDOperand Ptr = LD->getBasePtr();
631   MVT VT = LD->getValueType(0);
632   MVT LoadedVT = LD->getMemoryVT();
633   if (VT.isFloatingPoint() || VT.isVector()) {
634     // Expand to a (misaligned) integer load of the same size,
635     // then bitconvert to floating point or vector.
636     MVT intVT;
637     if (LoadedVT.is128BitVector() ||
638          LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
639       intVT = MVT::i128;
640     else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
641       intVT = MVT::i64;
642     else if (LoadedVT == MVT::f32)
643       intVT = MVT::i32;
644     else
645       assert(0 && "Unaligned load of unsupported type");
646
647     SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
648                                     SVOffset, LD->isVolatile(), 
649                                     LD->getAlignment());
650     SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
651     if (VT.isFloatingPoint() && LoadedVT != VT)
652       Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
653
654     SDOperand Ops[] = { Result, Chain };
655     return DAG.getMergeValues(DAG.getVTList(VT, MVT::Other), Ops, 2);
656   }
657   assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
658          "Unaligned load of unsupported type.");
659
660   // Compute the new VT that is half the size of the old one.  This is an
661   // integer MVT.
662   unsigned NumBits = LoadedVT.getSizeInBits();
663   MVT NewLoadedVT;
664   NewLoadedVT = MVT::getIntegerVT(NumBits/2);
665   NumBits >>= 1;
666   
667   unsigned Alignment = LD->getAlignment();
668   unsigned IncrementSize = NumBits / 8;
669   ISD::LoadExtType HiExtType = LD->getExtensionType();
670
671   // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
672   if (HiExtType == ISD::NON_EXTLOAD)
673     HiExtType = ISD::ZEXTLOAD;
674
675   // Load the value in two parts
676   SDOperand Lo, Hi;
677   if (TLI.isLittleEndian()) {
678     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
679                         SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
680     Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
681                       DAG.getConstant(IncrementSize, TLI.getPointerTy()));
682     Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
683                         SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
684                         MinAlign(Alignment, IncrementSize));
685   } else {
686     Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
687                         NewLoadedVT,LD->isVolatile(), Alignment);
688     Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
689                       DAG.getConstant(IncrementSize, TLI.getPointerTy()));
690     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
691                         SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
692                         MinAlign(Alignment, IncrementSize));
693   }
694
695   // aggregate the two parts
696   SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
697   SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
698   Result = DAG.getNode(ISD::OR, VT, Result, Lo);
699
700   SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
701                              Hi.getValue(1));
702
703   SDOperand Ops[] = { Result, TF };
704   return DAG.getMergeValues(DAG.getVTList(VT, MVT::Other), Ops, 2);
705 }
706
707 /// UnrollVectorOp - We know that the given vector has a legal type, however
708 /// the operation it performs is not legal and is an operation that we have
709 /// no way of lowering.  "Unroll" the vector, splitting out the scalars and
710 /// operating on each element individually.
711 SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
712   MVT VT = Op.getValueType();
713   assert(isTypeLegal(VT) &&
714          "Caller should expand or promote operands that are not legal!");
715   assert(Op.Val->getNumValues() == 1 &&
716          "Can't unroll a vector with multiple results!");
717   unsigned NE = VT.getVectorNumElements();
718   MVT EltVT = VT.getVectorElementType();
719
720   SmallVector<SDOperand, 8> Scalars;
721   SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
722   for (unsigned i = 0; i != NE; ++i) {
723     for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
724       SDOperand Operand = Op.getOperand(j);
725       MVT OperandVT = Operand.getValueType();
726       if (OperandVT.isVector()) {
727         // A vector operand; extract a single element.
728         MVT OperandEltVT = OperandVT.getVectorElementType();
729         Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
730                                   OperandEltVT,
731                                   Operand,
732                                   DAG.getConstant(i, MVT::i32));
733       } else {
734         // A scalar operand; just use it as is.
735         Operands[j] = Operand;
736       }
737     }
738     Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
739                                   &Operands[0], Operands.size()));
740   }
741
742   return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
743 }
744
745 /// GetFPLibCall - Return the right libcall for the given floating point type.
746 static RTLIB::Libcall GetFPLibCall(MVT VT,
747                                    RTLIB::Libcall Call_F32,
748                                    RTLIB::Libcall Call_F64,
749                                    RTLIB::Libcall Call_F80,
750                                    RTLIB::Libcall Call_PPCF128) {
751   return
752     VT == MVT::f32 ? Call_F32 :
753     VT == MVT::f64 ? Call_F64 :
754     VT == MVT::f80 ? Call_F80 :
755     VT == MVT::ppcf128 ? Call_PPCF128 :
756     RTLIB::UNKNOWN_LIBCALL;
757 }
758
759 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
760 /// insertion index for the INSERT_VECTOR_ELT instruction.  In this case, it
761 /// is necessary to spill the vector being inserted into to memory, perform
762 /// the insert there, and then read the result back.
763 SDOperand SelectionDAGLegalize::
764 PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
765   SDOperand Tmp1 = Vec;
766   SDOperand Tmp2 = Val;
767   SDOperand Tmp3 = Idx;
768   
769   // If the target doesn't support this, we have to spill the input vector
770   // to a temporary stack slot, update the element, then reload it.  This is
771   // badness.  We could also load the value into a vector register (either
772   // with a "move to register" or "extload into register" instruction, then
773   // permute it into place, if the idx is a constant and if the idx is
774   // supported by the target.
775   MVT VT    = Tmp1.getValueType();
776   MVT EltVT = VT.getVectorElementType();
777   MVT IdxVT = Tmp3.getValueType();
778   MVT PtrVT = TLI.getPointerTy();
779   SDOperand StackPtr = DAG.CreateStackTemporary(VT);
780
781   FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
782   int SPFI = StackPtrFI->getIndex();
783
784   // Store the vector.
785   SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
786                               PseudoSourceValue::getFixedStack(),
787                               SPFI);
788
789   // Truncate or zero extend offset to target pointer type.
790   unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
791   Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
792   // Add the offset to the index.
793   unsigned EltSize = EltVT.getSizeInBits()/8;
794   Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
795   SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
796   // Store the scalar value.
797   Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
798                          PseudoSourceValue::getFixedStack(), SPFI, EltVT);
799   // Load the updated vector.
800   return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI);
801 }
802
803 /// LegalizeOp - We know that the specified value has a legal type, and
804 /// that its operands are legal.  Now ensure that the operation itself
805 /// is legal, recursively ensuring that the operands' operations remain
806 /// legal.
807 SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
808   if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
809     return Op;
810   
811   assert(isTypeLegal(Op.getValueType()) &&
812          "Caller should expand or promote operands that are not legal!");
813   SDNode *Node = Op.Val;
814
815   // If this operation defines any values that cannot be represented in a
816   // register on this target, make sure to expand or promote them.
817   if (Node->getNumValues() > 1) {
818     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
819       if (getTypeAction(Node->getValueType(i)) != Legal) {
820         HandleOp(Op.getValue(i));
821         assert(LegalizedNodes.count(Op) &&
822                "Handling didn't add legal operands!");
823         return LegalizedNodes[Op];
824       }
825   }
826
827   // Note that LegalizeOp may be reentered even from single-use nodes, which
828   // means that we always must cache transformed nodes.
829   DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
830   if (I != LegalizedNodes.end()) return I->second;
831
832   SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
833   SDOperand Result = Op;
834   bool isCustom = false;
835   
836   switch (Node->getOpcode()) {
837   case ISD::FrameIndex:
838   case ISD::EntryToken:
839   case ISD::Register:
840   case ISD::BasicBlock:
841   case ISD::TargetFrameIndex:
842   case ISD::TargetJumpTable:
843   case ISD::TargetConstant:
844   case ISD::TargetConstantFP:
845   case ISD::TargetConstantPool:
846   case ISD::TargetGlobalAddress:
847   case ISD::TargetGlobalTLSAddress:
848   case ISD::TargetExternalSymbol:
849   case ISD::VALUETYPE:
850   case ISD::SRCVALUE:
851   case ISD::MEMOPERAND:
852   case ISD::CONDCODE:
853   case ISD::ARG_FLAGS:
854     // Primitives must all be legal.
855     assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
856            "This must be legal!");
857     break;
858   default:
859     if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
860       // If this is a target node, legalize it by legalizing the operands then
861       // passing it through.
862       SmallVector<SDOperand, 8> Ops;
863       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
864         Ops.push_back(LegalizeOp(Node->getOperand(i)));
865
866       Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
867
868       for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
869         AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
870       return Result.getValue(Op.ResNo);
871     }
872     // Otherwise this is an unhandled builtin node.  splat.
873 #ifndef NDEBUG
874     cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
875 #endif
876     assert(0 && "Do not know how to legalize this operator!");
877     abort();
878   case ISD::GLOBAL_OFFSET_TABLE:
879   case ISD::GlobalAddress:
880   case ISD::GlobalTLSAddress:
881   case ISD::ExternalSymbol:
882   case ISD::ConstantPool:
883   case ISD::JumpTable: // Nothing to do.
884     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
885     default: assert(0 && "This action is not supported yet!");
886     case TargetLowering::Custom:
887       Tmp1 = TLI.LowerOperation(Op, DAG);
888       if (Tmp1.Val) Result = Tmp1;
889       // FALLTHROUGH if the target doesn't want to lower this op after all.
890     case TargetLowering::Legal:
891       break;
892     }
893     break;
894   case ISD::FRAMEADDR:
895   case ISD::RETURNADDR:
896     // The only option for these nodes is to custom lower them.  If the target
897     // does not custom lower them, then return zero.
898     Tmp1 = TLI.LowerOperation(Op, DAG);
899     if (Tmp1.Val) 
900       Result = Tmp1;
901     else
902       Result = DAG.getConstant(0, TLI.getPointerTy());
903     break;
904   case ISD::FRAME_TO_ARGS_OFFSET: {
905     MVT VT = Node->getValueType(0);
906     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
907     default: assert(0 && "This action is not supported yet!");
908     case TargetLowering::Custom:
909       Result = TLI.LowerOperation(Op, DAG);
910       if (Result.Val) break;
911       // Fall Thru
912     case TargetLowering::Legal:
913       Result = DAG.getConstant(0, VT);
914       break;
915     }
916     }
917     break;
918   case ISD::EXCEPTIONADDR: {
919     Tmp1 = LegalizeOp(Node->getOperand(0));
920     MVT VT = Node->getValueType(0);
921     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
922     default: assert(0 && "This action is not supported yet!");
923     case TargetLowering::Expand: {
924         unsigned Reg = TLI.getExceptionAddressRegister();
925         Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
926       }
927       break;
928     case TargetLowering::Custom:
929       Result = TLI.LowerOperation(Op, DAG);
930       if (Result.Val) break;
931       // Fall Thru
932     case TargetLowering::Legal: {
933       SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
934       Result = DAG.getMergeValues(DAG.getVTList(VT, MVT::Other), Ops, 2);
935       break;
936     }
937     }
938     }
939     if (Result.Val->getNumValues() == 1) break;
940
941     assert(Result.Val->getNumValues() == 2 &&
942            "Cannot return more than two values!");
943
944     // Since we produced two values, make sure to remember that we
945     // legalized both of them.
946     Tmp1 = LegalizeOp(Result);
947     Tmp2 = LegalizeOp(Result.getValue(1));
948     AddLegalizedOperand(Op.getValue(0), Tmp1);
949     AddLegalizedOperand(Op.getValue(1), Tmp2);
950     return Op.ResNo ? Tmp2 : Tmp1;
951   case ISD::EHSELECTION: {
952     Tmp1 = LegalizeOp(Node->getOperand(0));
953     Tmp2 = LegalizeOp(Node->getOperand(1));
954     MVT VT = Node->getValueType(0);
955     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
956     default: assert(0 && "This action is not supported yet!");
957     case TargetLowering::Expand: {
958         unsigned Reg = TLI.getExceptionSelectorRegister();
959         Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
960       }
961       break;
962     case TargetLowering::Custom:
963       Result = TLI.LowerOperation(Op, DAG);
964       if (Result.Val) break;
965       // Fall Thru
966     case TargetLowering::Legal: {
967       SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
968       Result = DAG.getMergeValues(DAG.getVTList(VT, MVT::Other), Ops, 2);
969       break;
970     }
971     }
972     }
973     if (Result.Val->getNumValues() == 1) break;
974
975     assert(Result.Val->getNumValues() == 2 &&
976            "Cannot return more than two values!");
977
978     // Since we produced two values, make sure to remember that we
979     // legalized both of them.
980     Tmp1 = LegalizeOp(Result);
981     Tmp2 = LegalizeOp(Result.getValue(1));
982     AddLegalizedOperand(Op.getValue(0), Tmp1);
983     AddLegalizedOperand(Op.getValue(1), Tmp2);
984     return Op.ResNo ? Tmp2 : Tmp1;
985   case ISD::EH_RETURN: {
986     MVT VT = Node->getValueType(0);
987     // The only "good" option for this node is to custom lower it.
988     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
989     default: assert(0 && "This action is not supported at all!");
990     case TargetLowering::Custom:
991       Result = TLI.LowerOperation(Op, DAG);
992       if (Result.Val) break;
993       // Fall Thru
994     case TargetLowering::Legal:
995       // Target does not know, how to lower this, lower to noop
996       Result = LegalizeOp(Node->getOperand(0));
997       break;
998     }
999     }
1000     break;
1001   case ISD::AssertSext:
1002   case ISD::AssertZext:
1003     Tmp1 = LegalizeOp(Node->getOperand(0));
1004     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1005     break;
1006   case ISD::MERGE_VALUES:
1007     // Legalize eliminates MERGE_VALUES nodes.
1008     Result = Node->getOperand(Op.ResNo);
1009     break;
1010   case ISD::CopyFromReg:
1011     Tmp1 = LegalizeOp(Node->getOperand(0));
1012     Result = Op.getValue(0);
1013     if (Node->getNumValues() == 2) {
1014       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1015     } else {
1016       assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
1017       if (Node->getNumOperands() == 3) {
1018         Tmp2 = LegalizeOp(Node->getOperand(2));
1019         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1020       } else {
1021         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1022       }
1023       AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1024     }
1025     // Since CopyFromReg produces two values, make sure to remember that we
1026     // legalized both of them.
1027     AddLegalizedOperand(Op.getValue(0), Result);
1028     AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1029     return Result.getValue(Op.ResNo);
1030   case ISD::UNDEF: {
1031     MVT VT = Op.getValueType();
1032     switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
1033     default: assert(0 && "This action is not supported yet!");
1034     case TargetLowering::Expand:
1035       if (VT.isInteger())
1036         Result = DAG.getConstant(0, VT);
1037       else if (VT.isFloatingPoint())
1038         Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
1039                                    VT);
1040       else
1041         assert(0 && "Unknown value type!");
1042       break;
1043     case TargetLowering::Legal:
1044       break;
1045     }
1046     break;
1047   }
1048     
1049   case ISD::INTRINSIC_W_CHAIN:
1050   case ISD::INTRINSIC_WO_CHAIN:
1051   case ISD::INTRINSIC_VOID: {
1052     SmallVector<SDOperand, 8> Ops;
1053     for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1054       Ops.push_back(LegalizeOp(Node->getOperand(i)));
1055     Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1056     
1057     // Allow the target to custom lower its intrinsics if it wants to.
1058     if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) == 
1059         TargetLowering::Custom) {
1060       Tmp3 = TLI.LowerOperation(Result, DAG);
1061       if (Tmp3.Val) Result = Tmp3;
1062     }
1063
1064     if (Result.Val->getNumValues() == 1) break;
1065
1066     // Must have return value and chain result.
1067     assert(Result.Val->getNumValues() == 2 &&
1068            "Cannot return more than two values!");
1069
1070     // Since loads produce two values, make sure to remember that we 
1071     // legalized both of them.
1072     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1073     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1074     return Result.getValue(Op.ResNo);
1075   }    
1076
1077   case ISD::DBG_STOPPOINT:
1078     assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
1079     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the input chain.
1080     
1081     switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
1082     case TargetLowering::Promote:
1083     default: assert(0 && "This action is not supported yet!");
1084     case TargetLowering::Expand: {
1085       MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
1086       bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
1087       bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
1088       
1089       const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1090       if (MMI && (useDEBUG_LOC || useLABEL)) {
1091         const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1092         unsigned SrcFile = MMI->RecordSource(CompileUnit);
1093
1094         SmallVector<SDOperand, 8> Ops;
1095         Ops.push_back(Tmp1);  // chain
1096         unsigned Line = DSP->getLine();
1097         unsigned Col = DSP->getColumn();
1098         
1099         if (useDEBUG_LOC) {
1100           Ops.push_back(DAG.getConstant(Line, MVT::i32));  // line #
1101           Ops.push_back(DAG.getConstant(Col, MVT::i32));   // col #
1102           Ops.push_back(DAG.getConstant(SrcFile, MVT::i32));  // source file id
1103           Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
1104         } else {
1105           unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
1106           Ops.push_back(DAG.getConstant(ID, MVT::i32));
1107           Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1108           Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
1109         }
1110       } else {
1111         Result = Tmp1;  // chain
1112       }
1113       break;
1114     }
1115     case TargetLowering::Legal:
1116       if (Tmp1 != Node->getOperand(0) ||
1117           getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
1118         SmallVector<SDOperand, 8> Ops;
1119         Ops.push_back(Tmp1);
1120         if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1121           Ops.push_back(Node->getOperand(1));  // line # must be legal.
1122           Ops.push_back(Node->getOperand(2));  // col # must be legal.
1123         } else {
1124           // Otherwise promote them.
1125           Ops.push_back(PromoteOp(Node->getOperand(1)));
1126           Ops.push_back(PromoteOp(Node->getOperand(2)));
1127         }
1128         Ops.push_back(Node->getOperand(3));  // filename must be legal.
1129         Ops.push_back(Node->getOperand(4));  // working dir # must be legal.
1130         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1131       }
1132       break;
1133     }
1134     break;
1135
1136   case ISD::DECLARE:
1137     assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1138     switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1139     default: assert(0 && "This action is not supported yet!");
1140     case TargetLowering::Legal:
1141       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1142       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the address.
1143       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the variable.
1144       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1145       break;
1146     case TargetLowering::Expand:
1147       Result = LegalizeOp(Node->getOperand(0));
1148       break;
1149     }
1150     break;    
1151     
1152   case ISD::DEBUG_LOC:
1153     assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1154     switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1155     default: assert(0 && "This action is not supported yet!");
1156     case TargetLowering::Legal:
1157       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1158       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the line #.
1159       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the col #.
1160       Tmp4 = LegalizeOp(Node->getOperand(3));  // Legalize the source file id.
1161       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1162       break;
1163     }
1164     break;    
1165
1166   case ISD::LABEL:
1167     assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
1168     switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
1169     default: assert(0 && "This action is not supported yet!");
1170     case TargetLowering::Legal:
1171       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1172       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the label id.
1173       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the "flavor" operand.
1174       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1175       break;
1176     case TargetLowering::Expand:
1177       Result = LegalizeOp(Node->getOperand(0));
1178       break;
1179     }
1180     break;
1181
1182   case ISD::PREFETCH:
1183     assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1184     switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1185     default: assert(0 && "This action is not supported yet!");
1186     case TargetLowering::Legal:
1187       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1188       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the address.
1189       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the rw specifier.
1190       Tmp4 = LegalizeOp(Node->getOperand(3));  // Legalize locality specifier.
1191       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1192       break;
1193     case TargetLowering::Expand:
1194       // It's a noop.
1195       Result = LegalizeOp(Node->getOperand(0));
1196       break;
1197     }
1198     break;
1199
1200   case ISD::MEMBARRIER: {
1201     assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
1202     switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1203     default: assert(0 && "This action is not supported yet!");
1204     case TargetLowering::Legal: {
1205       SDOperand Ops[6];
1206       Ops[0] = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1207       for (int x = 1; x < 6; ++x) {
1208         Ops[x] = Node->getOperand(x);
1209         if (!isTypeLegal(Ops[x].getValueType()))
1210           Ops[x] = PromoteOp(Ops[x]);
1211       }
1212       Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1213       break;
1214     }
1215     case TargetLowering::Expand:
1216       //There is no libgcc call for this op
1217       Result = Node->getOperand(0);  // Noop
1218     break;
1219     }
1220     break;
1221   }
1222
1223   case ISD::ATOMIC_CMP_SWAP: {
1224     unsigned int num_operands = 4;
1225     assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1226     SDOperand Ops[4];
1227     for (unsigned int x = 0; x < num_operands; ++x)
1228       Ops[x] = LegalizeOp(Node->getOperand(x));
1229     Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1230     
1231     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1232       default: assert(0 && "This action is not supported yet!");
1233       case TargetLowering::Custom:
1234         Result = TLI.LowerOperation(Result, DAG);
1235         break;
1236       case TargetLowering::Legal:
1237         break;
1238     }
1239     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1240     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1241     return Result.getValue(Op.ResNo);
1242   }      
1243   case ISD::ATOMIC_LOAD_ADD:
1244   case ISD::ATOMIC_LOAD_SUB:
1245   case ISD::ATOMIC_LOAD_AND:
1246   case ISD::ATOMIC_LOAD_OR:
1247   case ISD::ATOMIC_LOAD_XOR:
1248   case ISD::ATOMIC_LOAD_NAND:
1249   case ISD::ATOMIC_LOAD_MIN:
1250   case ISD::ATOMIC_LOAD_MAX:
1251   case ISD::ATOMIC_LOAD_UMIN:
1252   case ISD::ATOMIC_LOAD_UMAX:
1253   case ISD::ATOMIC_SWAP: {
1254     unsigned int num_operands = 3;
1255     assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1256     SDOperand Ops[3];
1257     for (unsigned int x = 0; x < num_operands; ++x)
1258       Ops[x] = LegalizeOp(Node->getOperand(x));
1259     Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1260     
1261     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1262     default: assert(0 && "This action is not supported yet!");
1263     case TargetLowering::Custom:
1264       Result = TLI.LowerOperation(Result, DAG);
1265       break;
1266     case TargetLowering::Expand:
1267       Result = SDOperand(TLI.ExpandOperationResult(Op.Val, DAG),0);
1268       break;
1269     case TargetLowering::Legal:
1270       break;
1271     }
1272     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1273     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1274     return Result.getValue(Op.ResNo);
1275   }      
1276   case ISD::Constant: {
1277     ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1278     unsigned opAction =
1279       TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1280
1281     // We know we don't need to expand constants here, constants only have one
1282     // value and we check that it is fine above.
1283
1284     if (opAction == TargetLowering::Custom) {
1285       Tmp1 = TLI.LowerOperation(Result, DAG);
1286       if (Tmp1.Val)
1287         Result = Tmp1;
1288     }
1289     break;
1290   }
1291   case ISD::ConstantFP: {
1292     // Spill FP immediates to the constant pool if the target cannot directly
1293     // codegen them.  Targets often have some immediate values that can be
1294     // efficiently generated into an FP register without a load.  We explicitly
1295     // leave these constants as ConstantFP nodes for the target to deal with.
1296     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1297
1298     switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1299     default: assert(0 && "This action is not supported yet!");
1300     case TargetLowering::Legal:
1301       break;
1302     case TargetLowering::Custom:
1303       Tmp3 = TLI.LowerOperation(Result, DAG);
1304       if (Tmp3.Val) {
1305         Result = Tmp3;
1306         break;
1307       }
1308       // FALLTHROUGH
1309     case TargetLowering::Expand: {
1310       // Check to see if this FP immediate is already legal.
1311       bool isLegal = false;
1312       for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1313              E = TLI.legal_fpimm_end(); I != E; ++I) {
1314         if (CFP->isExactlyValue(*I)) {
1315           isLegal = true;
1316           break;
1317         }
1318       }
1319       // If this is a legal constant, turn it into a TargetConstantFP node.
1320       if (isLegal)
1321         break;
1322       Result = ExpandConstantFP(CFP, true, DAG, TLI);
1323     }
1324     }
1325     break;
1326   }
1327   case ISD::TokenFactor:
1328     if (Node->getNumOperands() == 2) {
1329       Tmp1 = LegalizeOp(Node->getOperand(0));
1330       Tmp2 = LegalizeOp(Node->getOperand(1));
1331       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1332     } else if (Node->getNumOperands() == 3) {
1333       Tmp1 = LegalizeOp(Node->getOperand(0));
1334       Tmp2 = LegalizeOp(Node->getOperand(1));
1335       Tmp3 = LegalizeOp(Node->getOperand(2));
1336       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1337     } else {
1338       SmallVector<SDOperand, 8> Ops;
1339       // Legalize the operands.
1340       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1341         Ops.push_back(LegalizeOp(Node->getOperand(i)));
1342       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1343     }
1344     break;
1345     
1346   case ISD::FORMAL_ARGUMENTS:
1347   case ISD::CALL:
1348     // The only option for this is to custom lower it.
1349     Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1350     assert(Tmp3.Val && "Target didn't custom lower this node!");
1351     // A call within a calling sequence must be legalized to something
1352     // other than the normal CALLSEQ_END.  Violating this gets Legalize
1353     // into an infinite loop.
1354     assert ((!IsLegalizingCall ||
1355              Node->getOpcode() != ISD::CALL ||
1356              Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1357             "Nested CALLSEQ_START..CALLSEQ_END not supported.");
1358
1359     // The number of incoming and outgoing values should match; unless the final
1360     // outgoing value is a flag.
1361     assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1362             (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1363              Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1364                MVT::Flag)) &&
1365            "Lowering call/formal_arguments produced unexpected # results!");
1366     
1367     // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1368     // remember that we legalized all of them, so it doesn't get relegalized.
1369     for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
1370       if (Tmp3.Val->getValueType(i) == MVT::Flag)
1371         continue;
1372       Tmp1 = LegalizeOp(Tmp3.getValue(i));
1373       if (Op.ResNo == i)
1374         Tmp2 = Tmp1;
1375       AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1376     }
1377     return Tmp2;
1378    case ISD::EXTRACT_SUBREG: {
1379       Tmp1 = LegalizeOp(Node->getOperand(0));
1380       ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1381       assert(idx && "Operand must be a constant");
1382       Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1383       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1384     }
1385     break;
1386   case ISD::INSERT_SUBREG: {
1387       Tmp1 = LegalizeOp(Node->getOperand(0));
1388       Tmp2 = LegalizeOp(Node->getOperand(1));      
1389       ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1390       assert(idx && "Operand must be a constant");
1391       Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1392       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1393     }
1394     break;      
1395   case ISD::BUILD_VECTOR:
1396     switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1397     default: assert(0 && "This action is not supported yet!");
1398     case TargetLowering::Custom:
1399       Tmp3 = TLI.LowerOperation(Result, DAG);
1400       if (Tmp3.Val) {
1401         Result = Tmp3;
1402         break;
1403       }
1404       // FALLTHROUGH
1405     case TargetLowering::Expand:
1406       Result = ExpandBUILD_VECTOR(Result.Val);
1407       break;
1408     }
1409     break;
1410   case ISD::INSERT_VECTOR_ELT:
1411     Tmp1 = LegalizeOp(Node->getOperand(0));  // InVec
1412     Tmp3 = LegalizeOp(Node->getOperand(2));  // InEltNo
1413
1414     // The type of the value to insert may not be legal, even though the vector
1415     // type is legal.  Legalize/Promote accordingly.  We do not handle Expand
1416     // here.
1417     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1418     default: assert(0 && "Cannot expand insert element operand");
1419     case Legal:   Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1420     case Promote: Tmp2 = PromoteOp(Node->getOperand(1));  break;
1421     }
1422     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1423     
1424     switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1425                                    Node->getValueType(0))) {
1426     default: assert(0 && "This action is not supported yet!");
1427     case TargetLowering::Legal:
1428       break;
1429     case TargetLowering::Custom:
1430       Tmp4 = TLI.LowerOperation(Result, DAG);
1431       if (Tmp4.Val) {
1432         Result = Tmp4;
1433         break;
1434       }
1435       // FALLTHROUGH
1436     case TargetLowering::Expand: {
1437       // If the insert index is a constant, codegen this as a scalar_to_vector,
1438       // then a shuffle that inserts it into the right position in the vector.
1439       if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1440         // SCALAR_TO_VECTOR requires that the type of the value being inserted
1441         // match the element type of the vector being created.
1442         if (Tmp2.getValueType() == 
1443             Op.getValueType().getVectorElementType()) {
1444           SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, 
1445                                         Tmp1.getValueType(), Tmp2);
1446           
1447           unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1448           MVT ShufMaskVT =
1449             MVT::getIntVectorWithNumElements(NumElts);
1450           MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
1451           
1452           // We generate a shuffle of InVec and ScVec, so the shuffle mask
1453           // should be 0,1,2,3,4,5... with the appropriate element replaced with
1454           // elt 0 of the RHS.
1455           SmallVector<SDOperand, 8> ShufOps;
1456           for (unsigned i = 0; i != NumElts; ++i) {
1457             if (i != InsertPos->getValue())
1458               ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1459             else
1460               ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1461           }
1462           SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1463                                            &ShufOps[0], ShufOps.size());
1464           
1465           Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1466                                Tmp1, ScVec, ShufMask);
1467           Result = LegalizeOp(Result);
1468           break;
1469         }
1470       }
1471       Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
1472       break;
1473     }
1474     }
1475     break;
1476   case ISD::SCALAR_TO_VECTOR:
1477     if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1478       Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1479       break;
1480     }
1481     
1482     Tmp1 = LegalizeOp(Node->getOperand(0));  // InVal
1483     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1484     switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1485                                    Node->getValueType(0))) {
1486     default: assert(0 && "This action is not supported yet!");
1487     case TargetLowering::Legal:
1488       break;
1489     case TargetLowering::Custom:
1490       Tmp3 = TLI.LowerOperation(Result, DAG);
1491       if (Tmp3.Val) {
1492         Result = Tmp3;
1493         break;
1494       }
1495       // FALLTHROUGH
1496     case TargetLowering::Expand:
1497       Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1498       break;
1499     }
1500     break;
1501   case ISD::VECTOR_SHUFFLE:
1502     Tmp1 = LegalizeOp(Node->getOperand(0));   // Legalize the input vectors,
1503     Tmp2 = LegalizeOp(Node->getOperand(1));   // but not the shuffle mask.
1504     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1505
1506     // Allow targets to custom lower the SHUFFLEs they support.
1507     switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1508     default: assert(0 && "Unknown operation action!");
1509     case TargetLowering::Legal:
1510       assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1511              "vector shuffle should not be created if not legal!");
1512       break;
1513     case TargetLowering::Custom:
1514       Tmp3 = TLI.LowerOperation(Result, DAG);
1515       if (Tmp3.Val) {
1516         Result = Tmp3;
1517         break;
1518       }
1519       // FALLTHROUGH
1520     case TargetLowering::Expand: {
1521       MVT VT = Node->getValueType(0);
1522       MVT EltVT = VT.getVectorElementType();
1523       MVT PtrVT = TLI.getPointerTy();
1524       SDOperand Mask = Node->getOperand(2);
1525       unsigned NumElems = Mask.getNumOperands();
1526       SmallVector<SDOperand,8> Ops;
1527       for (unsigned i = 0; i != NumElems; ++i) {
1528         SDOperand Arg = Mask.getOperand(i);
1529         if (Arg.getOpcode() == ISD::UNDEF) {
1530           Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1531         } else {
1532           assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1533           unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1534           if (Idx < NumElems)
1535             Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1536                                       DAG.getConstant(Idx, PtrVT)));
1537           else
1538             Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1539                                       DAG.getConstant(Idx - NumElems, PtrVT)));
1540         }
1541       }
1542       Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1543       break;
1544     }
1545     case TargetLowering::Promote: {
1546       // Change base type to a different vector type.
1547       MVT OVT = Node->getValueType(0);
1548       MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1549
1550       // Cast the two input vectors.
1551       Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1552       Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1553       
1554       // Convert the shuffle mask to the right # elements.
1555       Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1556       assert(Tmp3.Val && "Shuffle not legal?");
1557       Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1558       Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1559       break;
1560     }
1561     }
1562     break;
1563   
1564   case ISD::EXTRACT_VECTOR_ELT:
1565     Tmp1 = Node->getOperand(0);
1566     Tmp2 = LegalizeOp(Node->getOperand(1));
1567     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1568     Result = ExpandEXTRACT_VECTOR_ELT(Result);
1569     break;
1570
1571   case ISD::EXTRACT_SUBVECTOR: 
1572     Tmp1 = Node->getOperand(0);
1573     Tmp2 = LegalizeOp(Node->getOperand(1));
1574     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1575     Result = ExpandEXTRACT_SUBVECTOR(Result);
1576     break;
1577     
1578   case ISD::CALLSEQ_START: {
1579     SDNode *CallEnd = FindCallEndFromCallStart(Node);
1580     
1581     // Recursively Legalize all of the inputs of the call end that do not lead
1582     // to this call start.  This ensures that any libcalls that need be inserted
1583     // are inserted *before* the CALLSEQ_START.
1584     {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1585     for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
1586       LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1587                                    NodesLeadingTo);
1588     }
1589
1590     // Now that we legalized all of the inputs (which may have inserted
1591     // libcalls) create the new CALLSEQ_START node.
1592     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1593
1594     // Merge in the last call, to ensure that this call start after the last
1595     // call ended.
1596     if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
1597       Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1598       Tmp1 = LegalizeOp(Tmp1);
1599     }
1600       
1601     // Do not try to legalize the target-specific arguments (#1+).
1602     if (Tmp1 != Node->getOperand(0)) {
1603       SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1604       Ops[0] = Tmp1;
1605       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1606     }
1607     
1608     // Remember that the CALLSEQ_START is legalized.
1609     AddLegalizedOperand(Op.getValue(0), Result);
1610     if (Node->getNumValues() == 2)    // If this has a flag result, remember it.
1611       AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1612     
1613     // Now that the callseq_start and all of the non-call nodes above this call
1614     // sequence have been legalized, legalize the call itself.  During this 
1615     // process, no libcalls can/will be inserted, guaranteeing that no calls
1616     // can overlap.
1617     assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1618     // Note that we are selecting this call!
1619     LastCALLSEQ_END = SDOperand(CallEnd, 0);
1620     IsLegalizingCall = true;
1621     
1622     // Legalize the call, starting from the CALLSEQ_END.
1623     LegalizeOp(LastCALLSEQ_END);
1624     assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1625     return Result;
1626   }
1627   case ISD::CALLSEQ_END:
1628     // If the CALLSEQ_START node hasn't been legalized first, legalize it.  This
1629     // will cause this node to be legalized as well as handling libcalls right.
1630     if (LastCALLSEQ_END.Val != Node) {
1631       LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1632       DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1633       assert(I != LegalizedNodes.end() &&
1634              "Legalizing the call start should have legalized this node!");
1635       return I->second;
1636     }
1637     
1638     // Otherwise, the call start has been legalized and everything is going 
1639     // according to plan.  Just legalize ourselves normally here.
1640     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1641     // Do not try to legalize the target-specific arguments (#1+), except for
1642     // an optional flag input.
1643     if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1644       if (Tmp1 != Node->getOperand(0)) {
1645         SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1646         Ops[0] = Tmp1;
1647         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1648       }
1649     } else {
1650       Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1651       if (Tmp1 != Node->getOperand(0) ||
1652           Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
1653         SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1654         Ops[0] = Tmp1;
1655         Ops.back() = Tmp2;
1656         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1657       }
1658     }
1659     assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1660     // This finishes up call legalization.
1661     IsLegalizingCall = false;
1662     
1663     // If the CALLSEQ_END node has a flag, remember that we legalized it.
1664     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1665     if (Node->getNumValues() == 2)
1666       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1667     return Result.getValue(Op.ResNo);
1668   case ISD::DYNAMIC_STACKALLOC: {
1669     MVT VT = Node->getValueType(0);
1670     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1671     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the size.
1672     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the alignment.
1673     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1674
1675     Tmp1 = Result.getValue(0);
1676     Tmp2 = Result.getValue(1);
1677     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1678     default: assert(0 && "This action is not supported yet!");
1679     case TargetLowering::Expand: {
1680       unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1681       assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1682              " not tell us which reg is the stack pointer!");
1683       SDOperand Chain = Tmp1.getOperand(0);
1684
1685       // Chain the dynamic stack allocation so that it doesn't modify the stack
1686       // pointer when other instructions are using the stack.
1687       Chain = DAG.getCALLSEQ_START(Chain,
1688                                    DAG.getConstant(0, TLI.getPointerTy()));
1689
1690       SDOperand Size  = Tmp2.getOperand(1);
1691       SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1692       Chain = SP.getValue(1);
1693       unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1694       unsigned StackAlign =
1695         TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1696       if (Align > StackAlign)
1697         SP = DAG.getNode(ISD::AND, VT, SP,
1698                          DAG.getConstant(-(uint64_t)Align, VT));
1699       Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size);       // Value
1700       Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1);     // Output chain
1701
1702       Tmp2 =
1703         DAG.getCALLSEQ_END(Chain,
1704                            DAG.getConstant(0, TLI.getPointerTy()),
1705                            DAG.getConstant(0, TLI.getPointerTy()),
1706                            SDOperand());
1707
1708       Tmp1 = LegalizeOp(Tmp1);
1709       Tmp2 = LegalizeOp(Tmp2);
1710       break;
1711     }
1712     case TargetLowering::Custom:
1713       Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1714       if (Tmp3.Val) {
1715         Tmp1 = LegalizeOp(Tmp3);
1716         Tmp2 = LegalizeOp(Tmp3.getValue(1));
1717       }
1718       break;
1719     case TargetLowering::Legal:
1720       break;
1721     }
1722     // Since this op produce two values, make sure to remember that we
1723     // legalized both of them.
1724     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1725     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1726     return Op.ResNo ? Tmp2 : Tmp1;
1727   }
1728   case ISD::INLINEASM: {
1729     SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1730     bool Changed = false;
1731     // Legalize all of the operands of the inline asm, in case they are nodes
1732     // that need to be expanded or something.  Note we skip the asm string and
1733     // all of the TargetConstant flags.
1734     SDOperand Op = LegalizeOp(Ops[0]);
1735     Changed = Op != Ops[0];
1736     Ops[0] = Op;
1737
1738     bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1739     for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1740       unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1741       for (++i; NumVals; ++i, --NumVals) {
1742         SDOperand Op = LegalizeOp(Ops[i]);
1743         if (Op != Ops[i]) {
1744           Changed = true;
1745           Ops[i] = Op;
1746         }
1747       }
1748     }
1749
1750     if (HasInFlag) {
1751       Op = LegalizeOp(Ops.back());
1752       Changed |= Op != Ops.back();
1753       Ops.back() = Op;
1754     }
1755     
1756     if (Changed)
1757       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1758       
1759     // INLINE asm returns a chain and flag, make sure to add both to the map.
1760     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1761     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1762     return Result.getValue(Op.ResNo);
1763   }
1764   case ISD::BR:
1765     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1766     // Ensure that libcalls are emitted before a branch.
1767     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1768     Tmp1 = LegalizeOp(Tmp1);
1769     LastCALLSEQ_END = DAG.getEntryNode();
1770     
1771     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1772     break;
1773   case ISD::BRIND:
1774     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1775     // Ensure that libcalls are emitted before a branch.
1776     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1777     Tmp1 = LegalizeOp(Tmp1);
1778     LastCALLSEQ_END = DAG.getEntryNode();
1779     
1780     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1781     default: assert(0 && "Indirect target must be legal type (pointer)!");
1782     case Legal:
1783       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1784       break;
1785     }
1786     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1787     break;
1788   case ISD::BR_JT:
1789     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1790     // Ensure that libcalls are emitted before a branch.
1791     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1792     Tmp1 = LegalizeOp(Tmp1);
1793     LastCALLSEQ_END = DAG.getEntryNode();
1794
1795     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the jumptable node.
1796     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1797
1798     switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {  
1799     default: assert(0 && "This action is not supported yet!");
1800     case TargetLowering::Legal: break;
1801     case TargetLowering::Custom:
1802       Tmp1 = TLI.LowerOperation(Result, DAG);
1803       if (Tmp1.Val) Result = Tmp1;
1804       break;
1805     case TargetLowering::Expand: {
1806       SDOperand Chain = Result.getOperand(0);
1807       SDOperand Table = Result.getOperand(1);
1808       SDOperand Index = Result.getOperand(2);
1809
1810       MVT PTy = TLI.getPointerTy();
1811       MachineFunction &MF = DAG.getMachineFunction();
1812       unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
1813       Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1814       SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1815       
1816       SDOperand LD;
1817       switch (EntrySize) {
1818       default: assert(0 && "Size of jump table not supported yet."); break;
1819       case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
1820                                PseudoSourceValue::getJumpTable(), 0); break;
1821       case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
1822                                PseudoSourceValue::getJumpTable(), 0); break;
1823       }
1824
1825       Addr = LD;
1826       if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1827         // For PIC, the sequence is:
1828         // BRIND(load(Jumptable + index) + RelocBase)
1829         // RelocBase can be JumpTable, GOT or some sort of global base.
1830         if (PTy != MVT::i32)
1831           Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1832         Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1833                            TLI.getPICJumpTableRelocBase(Table, DAG));
1834       }
1835       Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1836     }
1837     }
1838     break;
1839   case ISD::BRCOND:
1840     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1841     // Ensure that libcalls are emitted before a return.
1842     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1843     Tmp1 = LegalizeOp(Tmp1);
1844     LastCALLSEQ_END = DAG.getEntryNode();
1845
1846     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1847     case Expand: assert(0 && "It's impossible to expand bools");
1848     case Legal:
1849       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1850       break;
1851     case Promote: {
1852       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the condition.
1853       
1854       // The top bits of the promoted condition are not necessarily zero, ensure
1855       // that the value is properly zero extended.
1856       unsigned BitWidth = Tmp2.getValueSizeInBits();
1857       if (!DAG.MaskedValueIsZero(Tmp2, 
1858                                  APInt::getHighBitsSet(BitWidth, BitWidth-1)))
1859         Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
1860       break;
1861     }
1862     }
1863
1864     // Basic block destination (Op#2) is always legal.
1865     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1866       
1867     switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {  
1868     default: assert(0 && "This action is not supported yet!");
1869     case TargetLowering::Legal: break;
1870     case TargetLowering::Custom:
1871       Tmp1 = TLI.LowerOperation(Result, DAG);
1872       if (Tmp1.Val) Result = Tmp1;
1873       break;
1874     case TargetLowering::Expand:
1875       // Expand brcond's setcc into its constituent parts and create a BR_CC
1876       // Node.
1877       if (Tmp2.getOpcode() == ISD::SETCC) {
1878         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1879                              Tmp2.getOperand(0), Tmp2.getOperand(1),
1880                              Node->getOperand(2));
1881       } else {
1882         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, 
1883                              DAG.getCondCode(ISD::SETNE), Tmp2,
1884                              DAG.getConstant(0, Tmp2.getValueType()),
1885                              Node->getOperand(2));
1886       }
1887       break;
1888     }
1889     break;
1890   case ISD::BR_CC:
1891     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1892     // Ensure that libcalls are emitted before a branch.
1893     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1894     Tmp1 = LegalizeOp(Tmp1);
1895     Tmp2 = Node->getOperand(2);              // LHS 
1896     Tmp3 = Node->getOperand(3);              // RHS
1897     Tmp4 = Node->getOperand(1);              // CC
1898
1899     LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1900     LastCALLSEQ_END = DAG.getEntryNode();
1901
1902     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1903     // the LHS is a legal SETCC itself.  In this case, we need to compare
1904     // the result against zero to select between true and false values.
1905     if (Tmp3.Val == 0) {
1906       Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1907       Tmp4 = DAG.getCondCode(ISD::SETNE);
1908     }
1909     
1910     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, 
1911                                     Node->getOperand(4));
1912       
1913     switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1914     default: assert(0 && "Unexpected action for BR_CC!");
1915     case TargetLowering::Legal: break;
1916     case TargetLowering::Custom:
1917       Tmp4 = TLI.LowerOperation(Result, DAG);
1918       if (Tmp4.Val) Result = Tmp4;
1919       break;
1920     }
1921     break;
1922   case ISD::LOAD: {
1923     LoadSDNode *LD = cast<LoadSDNode>(Node);
1924     Tmp1 = LegalizeOp(LD->getChain());   // Legalize the chain.
1925     Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
1926
1927     ISD::LoadExtType ExtType = LD->getExtensionType();
1928     if (ExtType == ISD::NON_EXTLOAD) {
1929       MVT VT = Node->getValueType(0);
1930       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1931       Tmp3 = Result.getValue(0);
1932       Tmp4 = Result.getValue(1);
1933     
1934       switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1935       default: assert(0 && "This action is not supported yet!");
1936       case TargetLowering::Legal:
1937         // If this is an unaligned load and the target doesn't support it,
1938         // expand it.
1939         if (!TLI.allowsUnalignedMemoryAccesses()) {
1940           unsigned ABIAlignment = TLI.getTargetData()->
1941             getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
1942           if (LD->getAlignment() < ABIAlignment){
1943             Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1944                                          TLI);
1945             Tmp3 = Result.getOperand(0);
1946             Tmp4 = Result.getOperand(1);
1947             Tmp3 = LegalizeOp(Tmp3);
1948             Tmp4 = LegalizeOp(Tmp4);
1949           }
1950         }
1951         break;
1952       case TargetLowering::Custom:
1953         Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1954         if (Tmp1.Val) {
1955           Tmp3 = LegalizeOp(Tmp1);
1956           Tmp4 = LegalizeOp(Tmp1.getValue(1));
1957         }
1958         break;
1959       case TargetLowering::Promote: {
1960         // Only promote a load of vector type to another.
1961         assert(VT.isVector() && "Cannot promote this load!");
1962         // Change base type to a different vector type.
1963         MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1964
1965         Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1966                            LD->getSrcValueOffset(),
1967                            LD->isVolatile(), LD->getAlignment());
1968         Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1969         Tmp4 = LegalizeOp(Tmp1.getValue(1));
1970         break;
1971       }
1972       }
1973       // Since loads produce two values, make sure to remember that we 
1974       // legalized both of them.
1975       AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1976       AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1977       return Op.ResNo ? Tmp4 : Tmp3;
1978     } else {
1979       MVT SrcVT = LD->getMemoryVT();
1980       unsigned SrcWidth = SrcVT.getSizeInBits();
1981       int SVOffset = LD->getSrcValueOffset();
1982       unsigned Alignment = LD->getAlignment();
1983       bool isVolatile = LD->isVolatile();
1984
1985       if (SrcWidth != SrcVT.getStoreSizeInBits() &&
1986           // Some targets pretend to have an i1 loading operation, and actually
1987           // load an i8.  This trick is correct for ZEXTLOAD because the top 7
1988           // bits are guaranteed to be zero; it helps the optimizers understand
1989           // that these bits are zero.  It is also useful for EXTLOAD, since it
1990           // tells the optimizers that those bits are undefined.  It would be
1991           // nice to have an effective generic way of getting these benefits...
1992           // Until such a way is found, don't insist on promoting i1 here.
1993           (SrcVT != MVT::i1 ||
1994            TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1995         // Promote to a byte-sized load if not loading an integral number of
1996         // bytes.  For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
1997         unsigned NewWidth = SrcVT.getStoreSizeInBits();
1998         MVT NVT = MVT::getIntegerVT(NewWidth);
1999         SDOperand Ch;
2000
2001         // The extra bits are guaranteed to be zero, since we stored them that
2002         // way.  A zext load from NVT thus automatically gives zext from SrcVT.
2003
2004         ISD::LoadExtType NewExtType =
2005           ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2006
2007         Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2008                                 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2009                                 NVT, isVolatile, Alignment);
2010
2011         Ch = Result.getValue(1); // The chain.
2012
2013         if (ExtType == ISD::SEXTLOAD)
2014           // Having the top bits zero doesn't help when sign extending.
2015           Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2016                                Result, DAG.getValueType(SrcVT));
2017         else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2018           // All the top bits are guaranteed to be zero - inform the optimizers.
2019           Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2020                                DAG.getValueType(SrcVT));
2021
2022         Tmp1 = LegalizeOp(Result);
2023         Tmp2 = LegalizeOp(Ch);
2024       } else if (SrcWidth & (SrcWidth - 1)) {
2025         // If not loading a power-of-2 number of bits, expand as two loads.
2026         assert(SrcVT.isExtended() && !SrcVT.isVector() &&
2027                "Unsupported extload!");
2028         unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2029         assert(RoundWidth < SrcWidth);
2030         unsigned ExtraWidth = SrcWidth - RoundWidth;
2031         assert(ExtraWidth < RoundWidth);
2032         assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2033                "Load size not an integral number of bytes!");
2034         MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2035         MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
2036         SDOperand Lo, Hi, Ch;
2037         unsigned IncrementSize;
2038
2039         if (TLI.isLittleEndian()) {
2040           // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2041           // Load the bottom RoundWidth bits.
2042           Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2043                               LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2044                               Alignment);
2045
2046           // Load the remaining ExtraWidth bits.
2047           IncrementSize = RoundWidth / 8;
2048           Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2049                              DAG.getIntPtrConstant(IncrementSize));
2050           Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2051                               LD->getSrcValue(), SVOffset + IncrementSize,
2052                               ExtraVT, isVolatile,
2053                               MinAlign(Alignment, IncrementSize));
2054
2055           // Build a factor node to remember that this load is independent of the
2056           // other one.
2057           Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2058                            Hi.getValue(1));
2059
2060           // Move the top bits to the right place.
2061           Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2062                            DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2063
2064           // Join the hi and lo parts.
2065           Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2066         } else {
2067           // Big endian - avoid unaligned loads.
2068           // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2069           // Load the top RoundWidth bits.
2070           Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2071                               LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2072                               Alignment);
2073
2074           // Load the remaining ExtraWidth bits.
2075           IncrementSize = RoundWidth / 8;
2076           Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2077                              DAG.getIntPtrConstant(IncrementSize));
2078           Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2079                               LD->getSrcValue(), SVOffset + IncrementSize,
2080                               ExtraVT, isVolatile,
2081                               MinAlign(Alignment, IncrementSize));
2082
2083           // Build a factor node to remember that this load is independent of the
2084           // other one.
2085           Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2086                            Hi.getValue(1));
2087
2088           // Move the top bits to the right place.
2089           Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2090                            DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2091
2092           // Join the hi and lo parts.
2093           Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2094         }
2095
2096         Tmp1 = LegalizeOp(Result);
2097         Tmp2 = LegalizeOp(Ch);
2098       } else {
2099         switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2100         default: assert(0 && "This action is not supported yet!");
2101         case TargetLowering::Custom:
2102           isCustom = true;
2103           // FALLTHROUGH
2104         case TargetLowering::Legal:
2105           Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2106           Tmp1 = Result.getValue(0);
2107           Tmp2 = Result.getValue(1);
2108
2109           if (isCustom) {
2110             Tmp3 = TLI.LowerOperation(Result, DAG);
2111             if (Tmp3.Val) {
2112               Tmp1 = LegalizeOp(Tmp3);
2113               Tmp2 = LegalizeOp(Tmp3.getValue(1));
2114             }
2115           } else {
2116             // If this is an unaligned load and the target doesn't support it,
2117             // expand it.
2118             if (!TLI.allowsUnalignedMemoryAccesses()) {
2119               unsigned ABIAlignment = TLI.getTargetData()->
2120                 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
2121               if (LD->getAlignment() < ABIAlignment){
2122                 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2123                                              TLI);
2124                 Tmp1 = Result.getOperand(0);
2125                 Tmp2 = Result.getOperand(1);
2126                 Tmp1 = LegalizeOp(Tmp1);
2127                 Tmp2 = LegalizeOp(Tmp2);
2128               }
2129             }
2130           }
2131           break;
2132         case TargetLowering::Expand:
2133           // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2134           if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2135             SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2136                                          LD->getSrcValueOffset(),
2137                                          LD->isVolatile(), LD->getAlignment());
2138             Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2139             Tmp1 = LegalizeOp(Result);  // Relegalize new nodes.
2140             Tmp2 = LegalizeOp(Load.getValue(1));
2141             break;
2142           }
2143           assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2144           // Turn the unsupported load into an EXTLOAD followed by an explicit
2145           // zero/sign extend inreg.
2146           Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2147                                   Tmp1, Tmp2, LD->getSrcValue(),
2148                                   LD->getSrcValueOffset(), SrcVT,
2149                                   LD->isVolatile(), LD->getAlignment());
2150           SDOperand ValRes;
2151           if (ExtType == ISD::SEXTLOAD)
2152             ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2153                                  Result, DAG.getValueType(SrcVT));
2154           else
2155             ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2156           Tmp1 = LegalizeOp(ValRes);  // Relegalize new nodes.
2157           Tmp2 = LegalizeOp(Result.getValue(1));  // Relegalize new nodes.
2158           break;
2159         }
2160       }
2161
2162       // Since loads produce two values, make sure to remember that we legalized
2163       // both of them.
2164       AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2165       AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2166       return Op.ResNo ? Tmp2 : Tmp1;
2167     }
2168   }
2169   case ISD::EXTRACT_ELEMENT: {
2170     MVT OpTy = Node->getOperand(0).getValueType();
2171     switch (getTypeAction(OpTy)) {
2172     default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2173     case Legal:
2174       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2175         // 1 -> Hi
2176         Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2177                              DAG.getConstant(OpTy.getSizeInBits()/2,
2178                                              TLI.getShiftAmountTy()));
2179         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2180       } else {
2181         // 0 -> Lo
2182         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), 
2183                              Node->getOperand(0));
2184       }
2185       break;
2186     case Expand:
2187       // Get both the low and high parts.
2188       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2189       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2190         Result = Tmp2;  // 1 -> Hi
2191       else
2192         Result = Tmp1;  // 0 -> Lo
2193       break;
2194     }
2195     break;
2196   }
2197
2198   case ISD::CopyToReg:
2199     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2200
2201     assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2202            "Register type must be legal!");
2203     // Legalize the incoming value (must be a legal type).
2204     Tmp2 = LegalizeOp(Node->getOperand(2));
2205     if (Node->getNumValues() == 1) {
2206       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2207     } else {
2208       assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2209       if (Node->getNumOperands() == 4) {
2210         Tmp3 = LegalizeOp(Node->getOperand(3));
2211         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2212                                         Tmp3);
2213       } else {
2214         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2215       }
2216       
2217       // Since this produces two values, make sure to remember that we legalized
2218       // both of them.
2219       AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2220       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2221       return Result;
2222     }
2223     break;
2224
2225   case ISD::RET:
2226     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2227
2228     // Ensure that libcalls are emitted before a return.
2229     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2230     Tmp1 = LegalizeOp(Tmp1);
2231     LastCALLSEQ_END = DAG.getEntryNode();
2232       
2233     switch (Node->getNumOperands()) {
2234     case 3:  // ret val
2235       Tmp2 = Node->getOperand(1);
2236       Tmp3 = Node->getOperand(2);  // Signness
2237       switch (getTypeAction(Tmp2.getValueType())) {
2238       case Legal:
2239         Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2240         break;
2241       case Expand:
2242         if (!Tmp2.getValueType().isVector()) {
2243           SDOperand Lo, Hi;
2244           ExpandOp(Tmp2, Lo, Hi);
2245
2246           // Big endian systems want the hi reg first.
2247           if (TLI.isBigEndian())
2248             std::swap(Lo, Hi);
2249           
2250           if (Hi.Val)
2251             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2252           else
2253             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
2254           Result = LegalizeOp(Result);
2255         } else {
2256           SDNode *InVal = Tmp2.Val;
2257           int InIx = Tmp2.ResNo;
2258           unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2259           MVT EVT = InVal->getValueType(InIx).getVectorElementType();
2260           
2261           // Figure out if there is a simple type corresponding to this Vector
2262           // type.  If so, convert to the vector type.
2263           MVT TVT = MVT::getVectorVT(EVT, NumElems);
2264           if (TLI.isTypeLegal(TVT)) {
2265             // Turn this into a return of the vector type.
2266             Tmp2 = LegalizeOp(Tmp2);
2267             Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2268           } else if (NumElems == 1) {
2269             // Turn this into a return of the scalar type.
2270             Tmp2 = ScalarizeVectorOp(Tmp2);
2271             Tmp2 = LegalizeOp(Tmp2);
2272             Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2273             
2274             // FIXME: Returns of gcc generic vectors smaller than a legal type
2275             // should be returned in integer registers!
2276             
2277             // The scalarized value type may not be legal, e.g. it might require
2278             // promotion or expansion.  Relegalize the return.
2279             Result = LegalizeOp(Result);
2280           } else {
2281             // FIXME: Returns of gcc generic vectors larger than a legal vector
2282             // type should be returned by reference!
2283             SDOperand Lo, Hi;
2284             SplitVectorOp(Tmp2, Lo, Hi);
2285             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2286             Result = LegalizeOp(Result);
2287           }
2288         }
2289         break;
2290       case Promote:
2291         Tmp2 = PromoteOp(Node->getOperand(1));
2292         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2293         Result = LegalizeOp(Result);
2294         break;
2295       }
2296       break;
2297     case 1:  // ret void
2298       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2299       break;
2300     default: { // ret <values>
2301       SmallVector<SDOperand, 8> NewValues;
2302       NewValues.push_back(Tmp1);
2303       for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2304         switch (getTypeAction(Node->getOperand(i).getValueType())) {
2305         case Legal:
2306           NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2307           NewValues.push_back(Node->getOperand(i+1));
2308           break;
2309         case Expand: {
2310           SDOperand Lo, Hi;
2311           assert(!Node->getOperand(i).getValueType().isExtended() &&
2312                  "FIXME: TODO: implement returning non-legal vector types!");
2313           ExpandOp(Node->getOperand(i), Lo, Hi);
2314           NewValues.push_back(Lo);
2315           NewValues.push_back(Node->getOperand(i+1));
2316           if (Hi.Val) {
2317             NewValues.push_back(Hi);
2318             NewValues.push_back(Node->getOperand(i+1));
2319           }
2320           break;
2321         }
2322         case Promote:
2323           assert(0 && "Can't promote multiple return value yet!");
2324         }
2325           
2326       if (NewValues.size() == Node->getNumOperands())
2327         Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2328       else
2329         Result = DAG.getNode(ISD::RET, MVT::Other,
2330                              &NewValues[0], NewValues.size());
2331       break;
2332     }
2333     }
2334
2335     if (Result.getOpcode() == ISD::RET) {
2336       switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2337       default: assert(0 && "This action is not supported yet!");
2338       case TargetLowering::Legal: break;
2339       case TargetLowering::Custom:
2340         Tmp1 = TLI.LowerOperation(Result, DAG);
2341         if (Tmp1.Val) Result = Tmp1;
2342         break;
2343       }
2344     }
2345     break;
2346   case ISD::STORE: {
2347     StoreSDNode *ST = cast<StoreSDNode>(Node);
2348     Tmp1 = LegalizeOp(ST->getChain());    // Legalize the chain.
2349     Tmp2 = LegalizeOp(ST->getBasePtr());  // Legalize the pointer.
2350     int SVOffset = ST->getSrcValueOffset();
2351     unsigned Alignment = ST->getAlignment();
2352     bool isVolatile = ST->isVolatile();
2353
2354     if (!ST->isTruncatingStore()) {
2355       // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2356       // FIXME: We shouldn't do this for TargetConstantFP's.
2357       // FIXME: move this to the DAG Combiner!  Note that we can't regress due
2358       // to phase ordering between legalized code and the dag combiner.  This
2359       // probably means that we need to integrate dag combiner and legalizer
2360       // together.
2361       // We generally can't do this one for long doubles.
2362       if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
2363         if (CFP->getValueType(0) == MVT::f32 && 
2364             getTypeAction(MVT::i32) == Legal) {
2365           Tmp3 = DAG.getConstant(CFP->getValueAPF().
2366                                           convertToAPInt().zextOrTrunc(32),
2367                                   MVT::i32);
2368           Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2369                                 SVOffset, isVolatile, Alignment);
2370           break;
2371         } else if (CFP->getValueType(0) == MVT::f64) {
2372           // If this target supports 64-bit registers, do a single 64-bit store.
2373           if (getTypeAction(MVT::i64) == Legal) {
2374             Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
2375                                      zextOrTrunc(64), MVT::i64);
2376             Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2377                                   SVOffset, isVolatile, Alignment);
2378             break;
2379           } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
2380             // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2381             // stores.  If the target supports neither 32- nor 64-bits, this
2382             // xform is certainly not worth it.
2383             const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2384             SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2385             SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
2386             if (TLI.isBigEndian()) std::swap(Lo, Hi);
2387
2388             Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2389                               SVOffset, isVolatile, Alignment);
2390             Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2391                                DAG.getIntPtrConstant(4));
2392             Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
2393                               isVolatile, MinAlign(Alignment, 4U));
2394
2395             Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2396             break;
2397           }
2398         }
2399       }
2400       
2401       switch (getTypeAction(ST->getMemoryVT())) {
2402       case Legal: {
2403         Tmp3 = LegalizeOp(ST->getValue());
2404         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, 
2405                                         ST->getOffset());
2406
2407         MVT VT = Tmp3.getValueType();
2408         switch (TLI.getOperationAction(ISD::STORE, VT)) {
2409         default: assert(0 && "This action is not supported yet!");
2410         case TargetLowering::Legal:
2411           // If this is an unaligned store and the target doesn't support it,
2412           // expand it.
2413           if (!TLI.allowsUnalignedMemoryAccesses()) {
2414             unsigned ABIAlignment = TLI.getTargetData()->
2415               getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
2416             if (ST->getAlignment() < ABIAlignment)
2417               Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2418                                             TLI);
2419           }
2420           break;
2421         case TargetLowering::Custom:
2422           Tmp1 = TLI.LowerOperation(Result, DAG);
2423           if (Tmp1.Val) Result = Tmp1;
2424           break;
2425         case TargetLowering::Promote:
2426           assert(VT.isVector() && "Unknown legal promote case!");
2427           Tmp3 = DAG.getNode(ISD::BIT_CONVERT, 
2428                              TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2429           Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
2430                                 ST->getSrcValue(), SVOffset, isVolatile,
2431                                 Alignment);
2432           break;
2433         }
2434         break;
2435       }
2436       case Promote:
2437         // Truncate the value and store the result.
2438         Tmp3 = PromoteOp(ST->getValue());
2439         Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2440                                    SVOffset, ST->getMemoryVT(),
2441                                    isVolatile, Alignment);
2442         break;
2443
2444       case Expand:
2445         unsigned IncrementSize = 0;
2446         SDOperand Lo, Hi;
2447       
2448         // If this is a vector type, then we have to calculate the increment as
2449         // the product of the element size in bytes, and the number of elements
2450         // in the high half of the vector.
2451         if (ST->getValue().getValueType().isVector()) {
2452           SDNode *InVal = ST->getValue().Val;
2453           int InIx = ST->getValue().ResNo;
2454           MVT InVT = InVal->getValueType(InIx);
2455           unsigned NumElems = InVT.getVectorNumElements();
2456           MVT EVT = InVT.getVectorElementType();
2457
2458           // Figure out if there is a simple type corresponding to this Vector
2459           // type.  If so, convert to the vector type.
2460           MVT TVT = MVT::getVectorVT(EVT, NumElems);
2461           if (TLI.isTypeLegal(TVT)) {
2462             // Turn this into a normal store of the vector type.
2463             Tmp3 = LegalizeOp(ST->getValue());
2464             Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2465                                   SVOffset, isVolatile, Alignment);
2466             Result = LegalizeOp(Result);
2467             break;
2468           } else if (NumElems == 1) {
2469             // Turn this into a normal store of the scalar type.
2470             Tmp3 = ScalarizeVectorOp(ST->getValue());
2471             Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2472                                   SVOffset, isVolatile, Alignment);
2473             // The scalarized value type may not be legal, e.g. it might require
2474             // promotion or expansion.  Relegalize the scalar store.
2475             Result = LegalizeOp(Result);
2476             break;
2477           } else {
2478             SplitVectorOp(ST->getValue(), Lo, Hi);
2479             IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2480                             EVT.getSizeInBits()/8;
2481           }
2482         } else {
2483           ExpandOp(ST->getValue(), Lo, Hi);
2484           IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
2485
2486           if (TLI.isBigEndian())
2487             std::swap(Lo, Hi);
2488         }
2489
2490         Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2491                           SVOffset, isVolatile, Alignment);
2492
2493         if (Hi.Val == NULL) {
2494           // Must be int <-> float one-to-one expansion.
2495           Result = Lo;
2496           break;
2497         }
2498
2499         Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2500                            DAG.getIntPtrConstant(IncrementSize));
2501         assert(isTypeLegal(Tmp2.getValueType()) &&
2502                "Pointers must be legal!");
2503         SVOffset += IncrementSize;
2504         Alignment = MinAlign(Alignment, IncrementSize);
2505         Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2506                           SVOffset, isVolatile, Alignment);
2507         Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2508         break;
2509       }
2510     } else {
2511       switch (getTypeAction(ST->getValue().getValueType())) {
2512       case Legal:
2513         Tmp3 = LegalizeOp(ST->getValue());
2514         break;
2515       case Promote:
2516         // We can promote the value, the truncstore will still take care of it.
2517         Tmp3 = PromoteOp(ST->getValue());
2518         break;
2519       case Expand:
2520         // Just store the low part.  This may become a non-trunc store, so make
2521         // sure to use getTruncStore, not UpdateNodeOperands below.
2522         ExpandOp(ST->getValue(), Tmp3, Tmp4);
2523         return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2524                                  SVOffset, MVT::i8, isVolatile, Alignment);
2525       }
2526
2527       MVT StVT = ST->getMemoryVT();
2528       unsigned StWidth = StVT.getSizeInBits();
2529
2530       if (StWidth != StVT.getStoreSizeInBits()) {
2531         // Promote to a byte-sized store with upper bits zero if not
2532         // storing an integral number of bytes.  For example, promote
2533         // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2534         MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
2535         Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2536         Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2537                                    SVOffset, NVT, isVolatile, Alignment);
2538       } else if (StWidth & (StWidth - 1)) {
2539         // If not storing a power-of-2 number of bits, expand as two stores.
2540         assert(StVT.isExtended() && !StVT.isVector() &&
2541                "Unsupported truncstore!");
2542         unsigned RoundWidth = 1 << Log2_32(StWidth);
2543         assert(RoundWidth < StWidth);
2544         unsigned ExtraWidth = StWidth - RoundWidth;
2545         assert(ExtraWidth < RoundWidth);
2546         assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2547                "Store size not an integral number of bytes!");
2548         MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2549         MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
2550         SDOperand Lo, Hi;
2551         unsigned IncrementSize;
2552
2553         if (TLI.isLittleEndian()) {
2554           // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2555           // Store the bottom RoundWidth bits.
2556           Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2557                                  SVOffset, RoundVT,
2558                                  isVolatile, Alignment);
2559
2560           // Store the remaining ExtraWidth bits.
2561           IncrementSize = RoundWidth / 8;
2562           Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2563                              DAG.getIntPtrConstant(IncrementSize));
2564           Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2565                            DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2566           Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2567                                  SVOffset + IncrementSize, ExtraVT, isVolatile,
2568                                  MinAlign(Alignment, IncrementSize));
2569         } else {
2570           // Big endian - avoid unaligned stores.
2571           // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2572           // Store the top RoundWidth bits.
2573           Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2574                            DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2575           Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2576                                  RoundVT, isVolatile, Alignment);
2577
2578           // Store the remaining ExtraWidth bits.
2579           IncrementSize = RoundWidth / 8;
2580           Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2581                              DAG.getIntPtrConstant(IncrementSize));
2582           Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2583                                  SVOffset + IncrementSize, ExtraVT, isVolatile,
2584                                  MinAlign(Alignment, IncrementSize));
2585         }
2586
2587         // The order of the stores doesn't matter.
2588         Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2589       } else {
2590         if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2591             Tmp2 != ST->getBasePtr())
2592           Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2593                                           ST->getOffset());
2594
2595         switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2596         default: assert(0 && "This action is not supported yet!");
2597         case TargetLowering::Legal:
2598           // If this is an unaligned store and the target doesn't support it,
2599           // expand it.
2600           if (!TLI.allowsUnalignedMemoryAccesses()) {
2601             unsigned ABIAlignment = TLI.getTargetData()->
2602               getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
2603             if (ST->getAlignment() < ABIAlignment)
2604               Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2605                                             TLI);
2606           }
2607           break;
2608         case TargetLowering::Custom:
2609           Result = TLI.LowerOperation(Result, DAG);
2610           break;
2611         case Expand:
2612           // TRUNCSTORE:i16 i32 -> STORE i16
2613           assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2614           Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2615           Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2616                                 isVolatile, Alignment);
2617           break;
2618         }
2619       }
2620     }
2621     break;
2622   }
2623   case ISD::PCMARKER:
2624     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2625     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2626     break;
2627   case ISD::STACKSAVE:
2628     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2629     Result = DAG.UpdateNodeOperands(Result, Tmp1);
2630     Tmp1 = Result.getValue(0);
2631     Tmp2 = Result.getValue(1);
2632     
2633     switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2634     default: assert(0 && "This action is not supported yet!");
2635     case TargetLowering::Legal: break;
2636     case TargetLowering::Custom:
2637       Tmp3 = TLI.LowerOperation(Result, DAG);
2638       if (Tmp3.Val) {
2639         Tmp1 = LegalizeOp(Tmp3);
2640         Tmp2 = LegalizeOp(Tmp3.getValue(1));
2641       }
2642       break;
2643     case TargetLowering::Expand:
2644       // Expand to CopyFromReg if the target set 
2645       // StackPointerRegisterToSaveRestore.
2646       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2647         Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
2648                                   Node->getValueType(0));
2649         Tmp2 = Tmp1.getValue(1);
2650       } else {
2651         Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2652         Tmp2 = Node->getOperand(0);
2653       }
2654       break;
2655     }
2656
2657     // Since stacksave produce two values, make sure to remember that we
2658     // legalized both of them.
2659     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2660     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2661     return Op.ResNo ? Tmp2 : Tmp1;
2662
2663   case ISD::STACKRESTORE:
2664     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2665     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2666     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2667       
2668     switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2669     default: assert(0 && "This action is not supported yet!");
2670     case TargetLowering::Legal: break;
2671     case TargetLowering::Custom:
2672       Tmp1 = TLI.LowerOperation(Result, DAG);
2673       if (Tmp1.Val) Result = Tmp1;
2674       break;
2675     case TargetLowering::Expand:
2676       // Expand to CopyToReg if the target set 
2677       // StackPointerRegisterToSaveRestore.
2678       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2679         Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2680       } else {
2681         Result = Tmp1;
2682       }
2683       break;
2684     }
2685     break;
2686
2687   case ISD::READCYCLECOUNTER:
2688     Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2689     Result = DAG.UpdateNodeOperands(Result, Tmp1);
2690     switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2691                                    Node->getValueType(0))) {
2692     default: assert(0 && "This action is not supported yet!");
2693     case TargetLowering::Legal:
2694       Tmp1 = Result.getValue(0);
2695       Tmp2 = Result.getValue(1);
2696       break;
2697     case TargetLowering::Custom:
2698       Result = TLI.LowerOperation(Result, DAG);
2699       Tmp1 = LegalizeOp(Result.getValue(0));
2700       Tmp2 = LegalizeOp(Result.getValue(1));
2701       break;
2702     }
2703
2704     // Since rdcc produce two values, make sure to remember that we legalized
2705     // both of them.
2706     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2707     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2708     return Result;
2709
2710   case ISD::SELECT:
2711     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2712     case Expand: assert(0 && "It's impossible to expand bools");
2713     case Legal:
2714       Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2715       break;
2716     case Promote: {
2717       Tmp1 = PromoteOp(Node->getOperand(0));  // Promote the condition.
2718       // Make sure the condition is either zero or one.
2719       unsigned BitWidth = Tmp1.getValueSizeInBits();
2720       if (!DAG.MaskedValueIsZero(Tmp1,
2721                                  APInt::getHighBitsSet(BitWidth, BitWidth-1)))
2722         Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
2723       break;
2724     }
2725     }
2726     Tmp2 = LegalizeOp(Node->getOperand(1));   // TrueVal
2727     Tmp3 = LegalizeOp(Node->getOperand(2));   // FalseVal
2728
2729     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2730       
2731     switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2732     default: assert(0 && "This action is not supported yet!");
2733     case TargetLowering::Legal: break;
2734     case TargetLowering::Custom: {
2735       Tmp1 = TLI.LowerOperation(Result, DAG);
2736       if (Tmp1.Val) Result = Tmp1;
2737       break;
2738     }
2739     case TargetLowering::Expand:
2740       if (Tmp1.getOpcode() == ISD::SETCC) {
2741         Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), 
2742                               Tmp2, Tmp3,
2743                               cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2744       } else {
2745         Result = DAG.getSelectCC(Tmp1, 
2746                                  DAG.getConstant(0, Tmp1.getValueType()),
2747                                  Tmp2, Tmp3, ISD::SETNE);
2748       }
2749       break;
2750     case TargetLowering::Promote: {
2751       MVT NVT =
2752         TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2753       unsigned ExtOp, TruncOp;
2754       if (Tmp2.getValueType().isVector()) {
2755         ExtOp   = ISD::BIT_CONVERT;
2756         TruncOp = ISD::BIT_CONVERT;
2757       } else if (Tmp2.getValueType().isInteger()) {
2758         ExtOp   = ISD::ANY_EXTEND;
2759         TruncOp = ISD::TRUNCATE;
2760       } else {
2761         ExtOp   = ISD::FP_EXTEND;
2762         TruncOp = ISD::FP_ROUND;
2763       }
2764       // Promote each of the values to the new type.
2765       Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2766       Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2767       // Perform the larger operation, then round down.
2768       Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2769       if (TruncOp != ISD::FP_ROUND)
2770         Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2771       else
2772         Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2773                              DAG.getIntPtrConstant(0));
2774       break;
2775     }
2776     }
2777     break;
2778   case ISD::SELECT_CC: {
2779     Tmp1 = Node->getOperand(0);               // LHS
2780     Tmp2 = Node->getOperand(1);               // RHS
2781     Tmp3 = LegalizeOp(Node->getOperand(2));   // True
2782     Tmp4 = LegalizeOp(Node->getOperand(3));   // False
2783     SDOperand CC = Node->getOperand(4);
2784     
2785     LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2786     
2787     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2788     // the LHS is a legal SETCC itself.  In this case, we need to compare
2789     // the result against zero to select between true and false values.
2790     if (Tmp2.Val == 0) {
2791       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2792       CC = DAG.getCondCode(ISD::SETNE);
2793     }
2794     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2795
2796     // Everything is legal, see if we should expand this op or something.
2797     switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2798     default: assert(0 && "This action is not supported yet!");
2799     case TargetLowering::Legal: break;
2800     case TargetLowering::Custom:
2801       Tmp1 = TLI.LowerOperation(Result, DAG);
2802       if (Tmp1.Val) Result = Tmp1;
2803       break;
2804     }
2805     break;
2806   }
2807   case ISD::SETCC:
2808     Tmp1 = Node->getOperand(0);
2809     Tmp2 = Node->getOperand(1);
2810     Tmp3 = Node->getOperand(2);
2811     LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2812     
2813     // If we had to Expand the SetCC operands into a SELECT node, then it may 
2814     // not always be possible to return a true LHS & RHS.  In this case, just 
2815     // return the value we legalized, returned in the LHS
2816     if (Tmp2.Val == 0) {
2817       Result = Tmp1;
2818       break;
2819     }
2820
2821     switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
2822     default: assert(0 && "Cannot handle this action for SETCC yet!");
2823     case TargetLowering::Custom:
2824       isCustom = true;
2825       // FALLTHROUGH.
2826     case TargetLowering::Legal:
2827       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2828       if (isCustom) {
2829         Tmp4 = TLI.LowerOperation(Result, DAG);
2830         if (Tmp4.Val) Result = Tmp4;
2831       }
2832       break;
2833     case TargetLowering::Promote: {
2834       // First step, figure out the appropriate operation to use.
2835       // Allow SETCC to not be supported for all legal data types
2836       // Mostly this targets FP
2837       MVT NewInTy = Node->getOperand(0).getValueType();
2838       MVT OldVT = NewInTy; OldVT = OldVT;
2839
2840       // Scan for the appropriate larger type to use.
2841       while (1) {
2842         NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
2843
2844         assert(NewInTy.isInteger() == OldVT.isInteger() &&
2845                "Fell off of the edge of the integer world");
2846         assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
2847                "Fell off of the edge of the floating point world");
2848           
2849         // If the target supports SETCC of this type, use it.
2850         if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
2851           break;
2852       }
2853       if (NewInTy.isInteger())
2854         assert(0 && "Cannot promote Legal Integer SETCC yet");
2855       else {
2856         Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2857         Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2858       }
2859       Tmp1 = LegalizeOp(Tmp1);
2860       Tmp2 = LegalizeOp(Tmp2);
2861       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2862       Result = LegalizeOp(Result);
2863       break;
2864     }
2865     case TargetLowering::Expand:
2866       // Expand a setcc node into a select_cc of the same condition, lhs, and
2867       // rhs that selects between const 1 (true) and const 0 (false).
2868       MVT VT = Node->getValueType(0);
2869       Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, 
2870                            DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2871                            Tmp3);
2872       break;
2873     }
2874     break;
2875   case ISD::VSETCC: {
2876     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2877     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
2878     SDOperand CC = Node->getOperand(2);
2879     
2880     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2881
2882     // Everything is legal, see if we should expand this op or something.
2883     switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2884     default: assert(0 && "This action is not supported yet!");
2885     case TargetLowering::Legal: break;
2886     case TargetLowering::Custom:
2887       Tmp1 = TLI.LowerOperation(Result, DAG);
2888       if (Tmp1.Val) Result = Tmp1;
2889       break;
2890     }
2891     break;
2892   }
2893
2894   case ISD::SHL_PARTS:
2895   case ISD::SRA_PARTS:
2896   case ISD::SRL_PARTS: {
2897     SmallVector<SDOperand, 8> Ops;
2898     bool Changed = false;
2899     for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2900       Ops.push_back(LegalizeOp(Node->getOperand(i)));
2901       Changed |= Ops.back() != Node->getOperand(i);
2902     }
2903     if (Changed)
2904       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
2905
2906     switch (TLI.getOperationAction(Node->getOpcode(),
2907                                    Node->getValueType(0))) {
2908     default: assert(0 && "This action is not supported yet!");
2909     case TargetLowering::Legal: break;
2910     case TargetLowering::Custom:
2911       Tmp1 = TLI.LowerOperation(Result, DAG);
2912       if (Tmp1.Val) {
2913         SDOperand Tmp2, RetVal(0, 0);
2914         for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
2915           Tmp2 = LegalizeOp(Tmp1.getValue(i));
2916           AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2917           if (i == Op.ResNo)
2918             RetVal = Tmp2;
2919         }
2920         assert(RetVal.Val && "Illegal result number");
2921         return RetVal;
2922       }
2923       break;
2924     }
2925
2926     // Since these produce multiple values, make sure to remember that we
2927     // legalized all of them.
2928     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2929       AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2930     return Result.getValue(Op.ResNo);
2931   }
2932
2933     // Binary operators
2934   case ISD::ADD:
2935   case ISD::SUB:
2936   case ISD::MUL:
2937   case ISD::MULHS:
2938   case ISD::MULHU:
2939   case ISD::UDIV:
2940   case ISD::SDIV:
2941   case ISD::AND:
2942   case ISD::OR:
2943   case ISD::XOR:
2944   case ISD::SHL:
2945   case ISD::SRL:
2946   case ISD::SRA:
2947   case ISD::FADD:
2948   case ISD::FSUB:
2949   case ISD::FMUL:
2950   case ISD::FDIV:
2951   case ISD::FPOW:
2952     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2953     switch (getTypeAction(Node->getOperand(1).getValueType())) {
2954     case Expand: assert(0 && "Not possible");
2955     case Legal:
2956       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2957       break;
2958     case Promote:
2959       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
2960       break;
2961     }
2962     
2963     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2964       
2965     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2966     default: assert(0 && "BinOp legalize operation not supported");
2967     case TargetLowering::Legal: break;
2968     case TargetLowering::Custom:
2969       Tmp1 = TLI.LowerOperation(Result, DAG);
2970       if (Tmp1.Val) Result = Tmp1;
2971       break;
2972     case TargetLowering::Expand: {
2973       MVT VT = Op.getValueType();
2974  
2975       // See if multiply or divide can be lowered using two-result operations.
2976       SDVTList VTs = DAG.getVTList(VT, VT);
2977       if (Node->getOpcode() == ISD::MUL) {
2978         // We just need the low half of the multiply; try both the signed
2979         // and unsigned forms. If the target supports both SMUL_LOHI and
2980         // UMUL_LOHI, form a preference by checking which forms of plain
2981         // MULH it supports.
2982         bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2983         bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2984         bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2985         bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2986         unsigned OpToUse = 0;
2987         if (HasSMUL_LOHI && !HasMULHS) {
2988           OpToUse = ISD::SMUL_LOHI;
2989         } else if (HasUMUL_LOHI && !HasMULHU) {
2990           OpToUse = ISD::UMUL_LOHI;
2991         } else if (HasSMUL_LOHI) {
2992           OpToUse = ISD::SMUL_LOHI;
2993         } else if (HasUMUL_LOHI) {
2994           OpToUse = ISD::UMUL_LOHI;
2995         }
2996         if (OpToUse) {
2997           Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2998           break;
2999         }
3000       }
3001       if (Node->getOpcode() == ISD::MULHS &&
3002           TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3003         Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3004         break;
3005       }
3006       if (Node->getOpcode() == ISD::MULHU && 
3007           TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3008         Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3009         break;
3010       }
3011       if (Node->getOpcode() == ISD::SDIV &&
3012           TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3013         Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3014         break;
3015       }
3016       if (Node->getOpcode() == ISD::UDIV &&
3017           TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3018         Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3019         break;
3020       }
3021
3022       // Check to see if we have a libcall for this operator.
3023       RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3024       bool isSigned = false;
3025       switch (Node->getOpcode()) {
3026       case ISD::UDIV:
3027       case ISD::SDIV:
3028         if (VT == MVT::i32) {
3029           LC = Node->getOpcode() == ISD::UDIV
3030             ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
3031           isSigned = Node->getOpcode() == ISD::SDIV;
3032         }
3033         break;
3034       case ISD::FPOW:
3035         LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3036                           RTLIB::POW_PPCF128);
3037         break;
3038       default: break;
3039       }
3040       if (LC != RTLIB::UNKNOWN_LIBCALL) {
3041         SDOperand Dummy;
3042         Result = ExpandLibCall(LC, Node, isSigned, Dummy);
3043         break;
3044       }
3045
3046       assert(Node->getValueType(0).isVector() &&
3047              "Cannot expand this binary operator!");
3048       // Expand the operation into a bunch of nasty scalar code.
3049       Result = LegalizeOp(UnrollVectorOp(Op));
3050       break;
3051     }
3052     case TargetLowering::Promote: {
3053       switch (Node->getOpcode()) {
3054       default:  assert(0 && "Do not know how to promote this BinOp!");
3055       case ISD::AND:
3056       case ISD::OR:
3057       case ISD::XOR: {
3058         MVT OVT = Node->getValueType(0);
3059         MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3060         assert(OVT.isVector() && "Cannot promote this BinOp!");
3061         // Bit convert each of the values to the new type.
3062         Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3063         Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3064         Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3065         // Bit convert the result back the original type.
3066         Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3067         break;
3068       }
3069       }
3070     }
3071     }
3072     break;
3073     
3074   case ISD::SMUL_LOHI:
3075   case ISD::UMUL_LOHI:
3076   case ISD::SDIVREM:
3077   case ISD::UDIVREM:
3078     // These nodes will only be produced by target-specific lowering, so
3079     // they shouldn't be here if they aren't legal.
3080     assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
3081            "This must be legal!");
3082
3083     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
3084     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
3085     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3086     break;
3087
3088   case ISD::FCOPYSIGN:  // FCOPYSIGN does not require LHS/RHS to match type!
3089     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
3090     switch (getTypeAction(Node->getOperand(1).getValueType())) {
3091       case Expand: assert(0 && "Not possible");
3092       case Legal:
3093         Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3094         break;
3095       case Promote:
3096         Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
3097         break;
3098     }
3099       
3100     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3101     
3102     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3103     default: assert(0 && "Operation not supported");
3104     case TargetLowering::Custom:
3105       Tmp1 = TLI.LowerOperation(Result, DAG);
3106       if (Tmp1.Val) Result = Tmp1;
3107       break;
3108     case TargetLowering::Legal: break;
3109     case TargetLowering::Expand: {
3110       // If this target supports fabs/fneg natively and select is cheap,
3111       // do this efficiently.
3112       if (!TLI.isSelectExpensive() &&
3113           TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3114           TargetLowering::Legal &&
3115           TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3116           TargetLowering::Legal) {
3117         // Get the sign bit of the RHS.
3118         MVT IVT =
3119           Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3120         SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
3121         SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
3122                                SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3123         // Get the absolute value of the result.
3124         SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3125         // Select between the nabs and abs value based on the sign bit of
3126         // the input.
3127         Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3128                              DAG.getNode(ISD::FNEG, AbsVal.getValueType(), 
3129                                          AbsVal),
3130                              AbsVal);
3131         Result = LegalizeOp(Result);
3132         break;
3133       }
3134       
3135       // Otherwise, do bitwise ops!
3136       MVT NVT =
3137         Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3138       Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3139       Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3140       Result = LegalizeOp(Result);
3141       break;
3142     }
3143     }
3144     break;
3145     
3146   case ISD::ADDC:
3147   case ISD::SUBC:
3148     Tmp1 = LegalizeOp(Node->getOperand(0));
3149     Tmp2 = LegalizeOp(Node->getOperand(1));
3150     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3151     // Since this produces two values, make sure to remember that we legalized
3152     // both of them.
3153     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3154     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3155     return Result;
3156
3157   case ISD::ADDE:
3158   case ISD::SUBE:
3159     Tmp1 = LegalizeOp(Node->getOperand(0));
3160     Tmp2 = LegalizeOp(Node->getOperand(1));
3161     Tmp3 = LegalizeOp(Node->getOperand(2));
3162     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3163     // Since this produces two values, make sure to remember that we legalized
3164     // both of them.
3165     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3166     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3167     return Result;
3168     
3169   case ISD::BUILD_PAIR: {
3170     MVT PairTy = Node->getValueType(0);
3171     // TODO: handle the case where the Lo and Hi operands are not of legal type
3172     Tmp1 = LegalizeOp(Node->getOperand(0));   // Lo
3173     Tmp2 = LegalizeOp(Node->getOperand(1));   // Hi
3174     switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3175     case TargetLowering::Promote:
3176     case TargetLowering::Custom:
3177       assert(0 && "Cannot promote/custom this yet!");
3178     case TargetLowering::Legal:
3179       if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3180         Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3181       break;
3182     case TargetLowering::Expand:
3183       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3184       Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3185       Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3186                          DAG.getConstant(PairTy.getSizeInBits()/2,
3187                                          TLI.getShiftAmountTy()));
3188       Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
3189       break;
3190     }
3191     break;
3192   }
3193
3194   case ISD::UREM:
3195   case ISD::SREM:
3196   case ISD::FREM:
3197     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
3198     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
3199
3200     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3201     case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3202     case TargetLowering::Custom:
3203       isCustom = true;
3204       // FALLTHROUGH
3205     case TargetLowering::Legal:
3206       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3207       if (isCustom) {
3208         Tmp1 = TLI.LowerOperation(Result, DAG);
3209         if (Tmp1.Val) Result = Tmp1;
3210       }
3211       break;
3212     case TargetLowering::Expand: {
3213       unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3214       bool isSigned = DivOpc == ISD::SDIV;
3215       MVT VT = Node->getValueType(0);
3216  
3217       // See if remainder can be lowered using two-result operations.
3218       SDVTList VTs = DAG.getVTList(VT, VT);
3219       if (Node->getOpcode() == ISD::SREM &&
3220           TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3221         Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3222         break;
3223       }
3224       if (Node->getOpcode() == ISD::UREM &&
3225           TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3226         Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3227         break;
3228       }
3229
3230       if (VT.isInteger()) {
3231         if (TLI.getOperationAction(DivOpc, VT) ==
3232             TargetLowering::Legal) {
3233           // X % Y -> X-X/Y*Y
3234           Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
3235           Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3236           Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
3237         } else if (VT.isVector()) {
3238           Result = LegalizeOp(UnrollVectorOp(Op));
3239         } else {
3240           assert(VT == MVT::i32 &&
3241                  "Cannot expand this binary operator!");
3242           RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3243             ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
3244           SDOperand Dummy;
3245           Result = ExpandLibCall(LC, Node, isSigned, Dummy);
3246         }
3247       } else {
3248         assert(VT.isFloatingPoint() &&
3249                "remainder op must have integer or floating-point type");
3250         if (VT.isVector()) {
3251           Result = LegalizeOp(UnrollVectorOp(Op));
3252         } else {
3253           // Floating point mod -> fmod libcall.
3254           RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3255                                            RTLIB::REM_F80, RTLIB::REM_PPCF128);
3256           SDOperand Dummy;
3257           Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
3258         }
3259       }
3260       break;
3261     }
3262     }
3263     break;
3264   case ISD::VAARG: {
3265     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
3266     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
3267
3268     MVT VT = Node->getValueType(0);
3269     switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3270     default: assert(0 && "This action is not supported yet!");
3271     case TargetLowering::Custom:
3272       isCustom = true;
3273       // FALLTHROUGH
3274     case TargetLowering::Legal:
3275       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3276       Result = Result.getValue(0);
3277       Tmp1 = Result.getValue(1);
3278
3279       if (isCustom) {
3280         Tmp2 = TLI.LowerOperation(Result, DAG);
3281         if (Tmp2.Val) {
3282           Result = LegalizeOp(Tmp2);
3283           Tmp1 = LegalizeOp(Tmp2.getValue(1));
3284         }
3285       }
3286       break;
3287     case TargetLowering::Expand: {
3288       const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3289       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
3290       // Increment the pointer, VAList, to the next vaarg
3291       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
3292                          DAG.getConstant(VT.getSizeInBits()/8,
3293                                          TLI.getPointerTy()));
3294       // Store the incremented VAList to the legalized pointer
3295       Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
3296       // Load the actual argument out of the pointer VAList
3297       Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
3298       Tmp1 = LegalizeOp(Result.getValue(1));
3299       Result = LegalizeOp(Result);
3300       break;
3301     }
3302     }
3303     // Since VAARG produces two values, make sure to remember that we 
3304     // legalized both of them.
3305     AddLegalizedOperand(SDOperand(Node, 0), Result);
3306     AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3307     return Op.ResNo ? Tmp1 : Result;
3308   }
3309     
3310   case ISD::VACOPY: 
3311     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
3312     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the dest pointer.
3313     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the source pointer.
3314
3315     switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3316     default: assert(0 && "This action is not supported yet!");
3317     case TargetLowering::Custom:
3318       isCustom = true;
3319       // FALLTHROUGH
3320     case TargetLowering::Legal:
3321       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3322                                       Node->getOperand(3), Node->getOperand(4));
3323       if (isCustom) {
3324         Tmp1 = TLI.LowerOperation(Result, DAG);
3325         if (Tmp1.Val) Result = Tmp1;
3326       }
3327       break;
3328     case TargetLowering::Expand:
3329       // This defaults to loading a pointer from the input and storing it to the
3330       // output, returning the chain.
3331       const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3332       const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3333       Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3334       Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
3335       break;
3336     }
3337     break;
3338
3339   case ISD::VAEND: 
3340     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
3341     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
3342
3343     switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3344     default: assert(0 && "This action is not supported yet!");
3345     case TargetLowering::Custom:
3346       isCustom = true;
3347       // FALLTHROUGH
3348     case TargetLowering::Legal:
3349       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3350       if (isCustom) {
3351         Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3352         if (Tmp1.Val) Result = Tmp1;
3353       }
3354       break;
3355     case TargetLowering::Expand:
3356       Result = Tmp1; // Default to a no-op, return the chain
3357       break;
3358     }
3359     break;
3360     
3361   case ISD::VASTART: 
3362     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
3363     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
3364
3365     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3366     
3367     switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3368     default: assert(0 && "This action is not supported yet!");
3369     case TargetLowering::Legal: break;
3370     case TargetLowering::Custom:
3371       Tmp1 = TLI.LowerOperation(Result, DAG);
3372       if (Tmp1.Val) Result = Tmp1;
3373       break;
3374     }
3375     break;
3376     
3377   case ISD::ROTL:
3378   case ISD::ROTR:
3379     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
3380     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
3381     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3382     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3383     default:
3384       assert(0 && "ROTL/ROTR legalize operation not supported");
3385       break;
3386     case TargetLowering::Legal:
3387       break;
3388     case TargetLowering::Custom:
3389       Tmp1 = TLI.LowerOperation(Result, DAG);
3390       if (Tmp1.Val) Result = Tmp1;
3391       break;
3392     case TargetLowering::Promote:
3393       assert(0 && "Do not know how to promote ROTL/ROTR");
3394       break;
3395     case TargetLowering::Expand:
3396       assert(0 && "Do not know how to expand ROTL/ROTR");
3397       break;
3398     }
3399     break;
3400     
3401   case ISD::BSWAP:
3402     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
3403     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3404     case TargetLowering::Custom:
3405       assert(0 && "Cannot custom legalize this yet!");
3406     case TargetLowering::Legal:
3407       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3408       break;
3409     case TargetLowering::Promote: {
3410       MVT OVT = Tmp1.getValueType();
3411       MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3412       unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
3413
3414       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3415       Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3416       Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3417                            DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3418       break;
3419     }
3420     case TargetLowering::Expand:
3421       Result = ExpandBSWAP(Tmp1);
3422       break;
3423     }
3424     break;
3425     
3426   case ISD::CTPOP:
3427   case ISD::CTTZ:
3428   case ISD::CTLZ:
3429     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
3430     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3431     case TargetLowering::Custom:
3432     case TargetLowering::Legal:
3433       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3434       if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3435           TargetLowering::Custom) {
3436         Tmp1 = TLI.LowerOperation(Result, DAG);
3437         if (Tmp1.Val) {
3438           Result = Tmp1;
3439         }
3440       }
3441       break;
3442     case TargetLowering::Promote: {
3443       MVT OVT = Tmp1.getValueType();
3444       MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3445
3446       // Zero extend the argument.
3447       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3448       // Perform the larger operation, then subtract if needed.
3449       Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
3450       switch (Node->getOpcode()) {
3451       case ISD::CTPOP:
3452         Result = Tmp1;
3453         break;
3454       case ISD::CTTZ:
3455         //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
3456         Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
3457                             DAG.getConstant(NVT.getSizeInBits(), NVT),
3458                             ISD::SETEQ);
3459         Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
3460                              DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
3461         break;
3462       case ISD::CTLZ:
3463         // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3464         Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3465                              DAG.getConstant(NVT.getSizeInBits() -
3466                                              OVT.getSizeInBits(), NVT));
3467         break;
3468       }
3469       break;
3470     }
3471     case TargetLowering::Expand:
3472       Result = ExpandBitCount(Node->getOpcode(), Tmp1);
3473       break;
3474     }
3475     break;
3476
3477     // Unary operators
3478   case ISD::FABS:
3479   case ISD::FNEG:
3480   case ISD::FSQRT:
3481   case ISD::FSIN:
3482   case ISD::FCOS:
3483     Tmp1 = LegalizeOp(Node->getOperand(0));
3484     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3485     case TargetLowering::Promote:
3486     case TargetLowering::Custom:
3487      isCustom = true;
3488      // FALLTHROUGH
3489     case TargetLowering::Legal:
3490       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3491       if (isCustom) {
3492         Tmp1 = TLI.LowerOperation(Result, DAG);
3493         if (Tmp1.Val) Result = Tmp1;
3494       }
3495       break;
3496     case TargetLowering::Expand:
3497       switch (Node->getOpcode()) {
3498       default: assert(0 && "Unreachable!");
3499       case ISD::FNEG:
3500         // Expand Y = FNEG(X) ->  Y = SUB -0.0, X
3501         Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3502         Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
3503         break;
3504       case ISD::FABS: {
3505         // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3506         MVT VT = Node->getValueType(0);
3507         Tmp2 = DAG.getConstantFP(0.0, VT);
3508         Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
3509                             ISD::SETUGT);
3510         Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3511         Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
3512         break;
3513       }
3514       case ISD::FSQRT:
3515       case ISD::FSIN:
3516       case ISD::FCOS: {
3517         MVT VT = Node->getValueType(0);
3518
3519         // Expand unsupported unary vector operators by unrolling them.
3520         if (VT.isVector()) {
3521           Result = LegalizeOp(UnrollVectorOp(Op));
3522           break;
3523         }
3524
3525         RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3526         switch(Node->getOpcode()) {
3527         case ISD::FSQRT:
3528           LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3529                             RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
3530           break;
3531         case ISD::FSIN:
3532           LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3533                             RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
3534           break;
3535         case ISD::FCOS:
3536           LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3537                             RTLIB::COS_F80, RTLIB::COS_PPCF128);
3538           break;
3539         default: assert(0 && "Unreachable!");
3540         }
3541         SDOperand Dummy;
3542         Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
3543         break;
3544       }
3545       }
3546       break;
3547     }
3548     break;
3549   case ISD::FPOWI: {
3550     MVT VT = Node->getValueType(0);
3551
3552     // Expand unsupported unary vector operators by unrolling them.
3553     if (VT.isVector()) {
3554       Result = LegalizeOp(UnrollVectorOp(Op));
3555       break;
3556     }
3557
3558     // We always lower FPOWI into a libcall.  No target support for it yet.
3559     RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3560                                      RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
3561     SDOperand Dummy;
3562     Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
3563     break;
3564   }
3565   case ISD::BIT_CONVERT:
3566     if (!isTypeLegal(Node->getOperand(0).getValueType())) {
3567       Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3568                                 Node->getValueType(0));
3569     } else if (Op.getOperand(0).getValueType().isVector()) {
3570       // The input has to be a vector type, we have to either scalarize it, pack
3571       // it, or convert it based on whether the input vector type is legal.
3572       SDNode *InVal = Node->getOperand(0).Val;
3573       int InIx = Node->getOperand(0).ResNo;
3574       unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3575       MVT EVT = InVal->getValueType(InIx).getVectorElementType();
3576     
3577       // Figure out if there is a simple type corresponding to this Vector
3578       // type.  If so, convert to the vector type.
3579       MVT TVT = MVT::getVectorVT(EVT, NumElems);
3580       if (TLI.isTypeLegal(TVT)) {
3581         // Turn this into a bit convert of the vector input.
3582         Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), 
3583                              LegalizeOp(Node->getOperand(0)));
3584         break;
3585       } else if (NumElems == 1) {
3586         // Turn this into a bit convert of the scalar input.
3587         Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), 
3588                              ScalarizeVectorOp(Node->getOperand(0)));
3589         break;
3590       } else {
3591         // FIXME: UNIMP!  Store then reload
3592         assert(0 && "Cast from unsupported vector type not implemented yet!");
3593       }
3594     } else {
3595       switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3596                                      Node->getOperand(0).getValueType())) {
3597       default: assert(0 && "Unknown operation action!");
3598       case TargetLowering::Expand:
3599         Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3600                                   Node->getValueType(0));
3601         break;
3602       case TargetLowering::Legal:
3603         Tmp1 = LegalizeOp(Node->getOperand(0));
3604         Result = DAG.UpdateNodeOperands(Result, Tmp1);
3605         break;
3606       }
3607     }
3608     break;
3609       
3610     // Conversion operators.  The source and destination have different types.
3611   case ISD::SINT_TO_FP:
3612   case ISD::UINT_TO_FP: {
3613     bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
3614     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3615     case Legal:
3616       switch (TLI.getOperationAction(Node->getOpcode(),
3617                                      Node->getOperand(0).getValueType())) {
3618       default: assert(0 && "Unknown operation action!");
3619       case TargetLowering::Custom:
3620         isCustom = true;
3621         // FALLTHROUGH
3622       case TargetLowering::Legal:
3623         Tmp1 = LegalizeOp(Node->getOperand(0));
3624         Result = DAG.UpdateNodeOperands(Result, Tmp1);
3625         if (isCustom) {
3626           Tmp1 = TLI.LowerOperation(Result, DAG);
3627           if (Tmp1.Val) Result = Tmp1;
3628         }
3629         break;
3630       case TargetLowering::Expand:
3631         Result = ExpandLegalINT_TO_FP(isSigned,
3632                                       LegalizeOp(Node->getOperand(0)),
3633                                       Node->getValueType(0));
3634         break;
3635       case TargetLowering::Promote:
3636         Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3637                                        Node->getValueType(0),
3638                                        isSigned);
3639         break;
3640       }
3641       break;
3642     case Expand:
3643       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3644                              Node->getValueType(0), Node->getOperand(0));
3645       break;
3646     case Promote:
3647       Tmp1 = PromoteOp(Node->getOperand(0));
3648       if (isSigned) {
3649         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3650                  Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
3651       } else {
3652         Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3653                                       Node->getOperand(0).getValueType());
3654       }
3655       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3656       Result = LegalizeOp(Result);  // The 'op' is not necessarily legal!
3657       break;
3658     }
3659     break;
3660   }
3661   case ISD::TRUNCATE:
3662     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3663     case Legal:
3664       Tmp1 = LegalizeOp(Node->getOperand(0));
3665       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3666       break;
3667     case Expand:
3668       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3669
3670       // Since the result is legal, we should just be able to truncate the low
3671       // part of the source.
3672       Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3673       break;
3674     case Promote:
3675       Result = PromoteOp(Node->getOperand(0));
3676       Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3677       break;
3678     }
3679     break;
3680
3681   case ISD::FP_TO_SINT:
3682   case ISD::FP_TO_UINT:
3683     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3684     case Legal:
3685       Tmp1 = LegalizeOp(Node->getOperand(0));
3686
3687       switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3688       default: assert(0 && "Unknown operation action!");
3689       case TargetLowering::Custom:
3690         isCustom = true;
3691         // FALLTHROUGH
3692       case TargetLowering::Legal:
3693         Result = DAG.UpdateNodeOperands(Result, Tmp1);
3694         if (isCustom) {
3695           Tmp1 = TLI.LowerOperation(Result, DAG);
3696           if (Tmp1.Val) Result = Tmp1;
3697         }
3698         break;
3699       case TargetLowering::Promote:
3700         Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3701                                        Node->getOpcode() == ISD::FP_TO_SINT);
3702         break;
3703       case TargetLowering::Expand:
3704         if (Node->getOpcode() == ISD::FP_TO_UINT) {
3705           SDOperand True, False;
3706           MVT VT =  Node->getOperand(0).getValueType();
3707           MVT NVT = Node->getValueType(0);
3708           const uint64_t zero[] = {0, 0};
3709           APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3710           APInt x = APInt::getSignBit(NVT.getSizeInBits());
3711           (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3712           Tmp2 = DAG.getConstantFP(apf, VT);
3713           Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
3714                             Node->getOperand(0), Tmp2, ISD::SETLT);
3715           True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3716           False = DAG.getNode(ISD::FP_TO_SINT, NVT,
3717                               DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
3718                                           Tmp2));
3719           False = DAG.getNode(ISD::XOR, NVT, False, 
3720                               DAG.getConstant(x, NVT));
3721           Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3722           break;
3723         } else {
3724           assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3725         }
3726         break;
3727       }
3728       break;
3729     case Expand: {
3730       MVT VT = Op.getValueType();
3731       MVT OVT = Node->getOperand(0).getValueType();
3732       // Convert ppcf128 to i32
3733       if (OVT == MVT::ppcf128 && VT == MVT::i32) {
3734         if (Node->getOpcode() == ISD::FP_TO_SINT) {
3735           Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128, 
3736                                Node->getOperand(0), DAG.getValueType(MVT::f64));
3737           Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result, 
3738                                DAG.getIntPtrConstant(1));
3739           Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3740         } else {
3741           const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3742           APFloat apf = APFloat(APInt(128, 2, TwoE31));
3743           Tmp2 = DAG.getConstantFP(apf, OVT);
3744           //  X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3745           // FIXME: generated code sucks.
3746           Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3747                                DAG.getNode(ISD::ADD, MVT::i32,
3748                                  DAG.getNode(ISD::FP_TO_SINT, VT,
3749                                    DAG.getNode(ISD::FSUB, OVT,
3750                                                  Node->getOperand(0), Tmp2)),
3751                                  DAG.getConstant(0x80000000, MVT::i32)),
3752                                DAG.getNode(ISD::FP_TO_SINT, VT, 
3753                                            Node->getOperand(0)),
3754                                DAG.getCondCode(ISD::SETGE));
3755         }
3756         break;
3757       }
3758       // Convert f32 / f64 to i32 / i64 / i128.
3759       RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3760       switch (Node->getOpcode()) {
3761       case ISD::FP_TO_SINT: {
3762         if (VT == MVT::i32) {
3763           if (OVT == MVT::f32)
3764             LC = RTLIB::FPTOSINT_F32_I32;
3765           else if (OVT == MVT::f64)
3766             LC = RTLIB::FPTOSINT_F64_I32;
3767           else
3768             assert(0 && "Unexpected i32-to-fp conversion!");
3769         } else if (VT == MVT::i64) {
3770           if (OVT == MVT::f32)
3771             LC = RTLIB::FPTOSINT_F32_I64;
3772           else if (OVT == MVT::f64)
3773             LC = RTLIB::FPTOSINT_F64_I64;
3774           else if (OVT == MVT::f80)
3775             LC = RTLIB::FPTOSINT_F80_I64;
3776           else if (OVT == MVT::ppcf128)
3777             LC = RTLIB::FPTOSINT_PPCF128_I64;
3778           else
3779             assert(0 && "Unexpected i64-to-fp conversion!");
3780         } else if (VT == MVT::i128) {
3781           if (OVT == MVT::f32)
3782             LC = RTLIB::FPTOSINT_F32_I128;
3783           else if (OVT == MVT::f64)
3784             LC = RTLIB::FPTOSINT_F64_I128;
3785           else if (OVT == MVT::f80)
3786             LC = RTLIB::FPTOSINT_F80_I128;
3787           else if (OVT == MVT::ppcf128)
3788             LC = RTLIB::FPTOSINT_PPCF128_I128;
3789           else
3790             assert(0 && "Unexpected i128-to-fp conversion!");
3791         } else {
3792           assert(0 && "Unexpectd int-to-fp conversion!");
3793         }
3794         break;
3795       }
3796       case ISD::FP_TO_UINT: {
3797         if (VT == MVT::i32) {
3798           if (OVT == MVT::f32)
3799             LC = RTLIB::FPTOUINT_F32_I32;
3800           else if (OVT == MVT::f64)
3801             LC = RTLIB::FPTOUINT_F64_I32;
3802           else if (OVT == MVT::f80)
3803             LC = RTLIB::FPTOUINT_F80_I32;
3804           else
3805             assert(0 && "Unexpected i32-to-fp conversion!");
3806         } else if (VT == MVT::i64) {
3807           if (OVT == MVT::f32)
3808             LC = RTLIB::FPTOUINT_F32_I64;
3809           else if (OVT == MVT::f64)
3810             LC = RTLIB::FPTOUINT_F64_I64;
3811           else if (OVT == MVT::f80)
3812             LC = RTLIB::FPTOUINT_F80_I64;
3813           else if (OVT == MVT::ppcf128)
3814             LC = RTLIB::FPTOUINT_PPCF128_I64;
3815           else
3816             assert(0 && "Unexpected i64-to-fp conversion!");
3817         } else if (VT == MVT::i128) {
3818           if (OVT == MVT::f32)
3819             LC = RTLIB::FPTOUINT_F32_I128;
3820           else if (OVT == MVT::f64)
3821             LC = RTLIB::FPTOUINT_F64_I128;
3822           else if (OVT == MVT::f80)
3823             LC = RTLIB::FPTOUINT_F80_I128;
3824           else if (OVT == MVT::ppcf128)
3825             LC = RTLIB::FPTOUINT_PPCF128_I128;
3826           else
3827             assert(0 && "Unexpected i128-to-fp conversion!");
3828         } else {
3829           assert(0 && "Unexpectd int-to-fp conversion!");
3830         }
3831         break;
3832       }
3833       default: assert(0 && "Unreachable!");
3834       }
3835       SDOperand Dummy;
3836       Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
3837       break;
3838     }
3839     case Promote:
3840       Tmp1 = PromoteOp(Node->getOperand(0));
3841       Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3842       Result = LegalizeOp(Result);
3843       break;
3844     }
3845     break;
3846
3847   case ISD::FP_EXTEND: {
3848     MVT DstVT = Op.getValueType();
3849     MVT SrcVT = Op.getOperand(0).getValueType();
3850     if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3851       // The only other way we can lower this is to turn it into a STORE,
3852       // LOAD pair, targetting a temporary location (a stack slot).
3853       Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3854       break;
3855     }
3856     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3857     case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3858     case Legal:
3859       Tmp1 = LegalizeOp(Node->getOperand(0));
3860       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3861       break;
3862     case Promote:
3863       Tmp1 = PromoteOp(Node->getOperand(0));
3864       Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3865       break;
3866     }
3867     break;
3868   }
3869   case ISD::FP_ROUND: {
3870     MVT DstVT = Op.getValueType();
3871     MVT SrcVT = Op.getOperand(0).getValueType();
3872     if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3873       if (SrcVT == MVT::ppcf128) {
3874         SDOperand Lo;
3875         ExpandOp(Node->getOperand(0), Lo, Result);
3876         // Round it the rest of the way (e.g. to f32) if needed.
3877         if (DstVT!=MVT::f64)
3878           Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
3879         break;
3880       }
3881       // The only other way we can lower this is to turn it into a STORE,
3882       // LOAD pair, targetting a temporary location (a stack slot).
3883       Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3884       break;
3885     }
3886     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3887     case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3888     case Legal:
3889       Tmp1 = LegalizeOp(Node->getOperand(0));
3890       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3891       break;
3892     case Promote:
3893       Tmp1 = PromoteOp(Node->getOperand(0));
3894       Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3895                            Node->getOperand(1));
3896       break;
3897     }
3898     break;
3899   }
3900   case ISD::ANY_EXTEND:
3901   case ISD::ZERO_EXTEND:
3902   case ISD::SIGN_EXTEND:
3903     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3904     case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3905     case Legal:
3906       Tmp1 = LegalizeOp(Node->getOperand(0));
3907       Result = DAG.UpdateNodeOperands(Result, Tmp1);
3908       if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3909           TargetLowering::Custom) {
3910         Tmp1 = TLI.LowerOperation(Result, DAG);
3911         if (Tmp1.Val) Result = Tmp1;
3912       }
3913       break;
3914     case Promote:
3915       switch (Node->getOpcode()) {
3916       case ISD::ANY_EXTEND:
3917         Tmp1 = PromoteOp(Node->getOperand(0));
3918         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
3919         break;
3920       case ISD::ZERO_EXTEND:
3921         Result = PromoteOp(Node->getOperand(0));
3922         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3923         Result = DAG.getZeroExtendInReg(Result,
3924                                         Node->getOperand(0).getValueType());
3925         break;
3926       case ISD::SIGN_EXTEND:
3927         Result = PromoteOp(Node->getOperand(0));
3928         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3929         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
3930                              Result,
3931                           DAG.getValueType(Node->getOperand(0).getValueType()));
3932         break;
3933       }
3934     }
3935     break;
3936   case ISD::FP_ROUND_INREG:
3937   case ISD::SIGN_EXTEND_INREG: {
3938     Tmp1 = LegalizeOp(Node->getOperand(0));
3939     MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3940
3941     // If this operation is not supported, convert it to a shl/shr or load/store
3942     // pair.
3943     switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3944     default: assert(0 && "This action not supported for this op yet!");
3945     case TargetLowering::Legal:
3946       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3947       break;
3948     case TargetLowering::Expand:
3949       // If this is an integer extend and shifts are supported, do that.
3950       if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
3951         // NOTE: we could fall back on load/store here too for targets without
3952         // SAR.  However, it is doubtful that any exist.
3953         unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3954                             ExtraVT.getSizeInBits();
3955         SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
3956         Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3957                              Node->getOperand(0), ShiftCst);
3958         Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3959                              Result, ShiftCst);
3960       } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
3961         // The only way we can lower this is to turn it into a TRUNCSTORE,
3962         // EXTLOAD pair, targetting a temporary location (a stack slot).
3963
3964         // NOTE: there is a choice here between constantly creating new stack
3965         // slots and always reusing the same one.  We currently always create
3966         // new ones, as reuse may inhibit scheduling.
3967         Result = EmitStackConvert(Node->getOperand(0), ExtraVT, 
3968                                   Node->getValueType(0));
3969       } else {
3970         assert(0 && "Unknown op");
3971       }
3972       break;
3973     }
3974     break;
3975   }
3976   case ISD::TRAMPOLINE: {
3977     SDOperand Ops[6];
3978     for (unsigned i = 0; i != 6; ++i)
3979       Ops[i] = LegalizeOp(Node->getOperand(i));
3980     Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3981     // The only option for this node is to custom lower it.
3982     Result = TLI.LowerOperation(Result, DAG);
3983     assert(Result.Val && "Should always custom lower!");
3984
3985     // Since trampoline produces two values, make sure to remember that we
3986     // legalized both of them.
3987     Tmp1 = LegalizeOp(Result.getValue(1));
3988     Result = LegalizeOp(Result);
3989     AddLegalizedOperand(SDOperand(Node, 0), Result);
3990     AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3991     return Op.ResNo ? Tmp1 : Result;
3992   }
3993   case ISD::FLT_ROUNDS_: {
3994     MVT VT = Node->getValueType(0);
3995     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3996     default: assert(0 && "This action not supported for this op yet!");
3997     case TargetLowering::Custom:
3998       Result = TLI.LowerOperation(Op, DAG);
3999       if (Result.Val) break;
4000       // Fall Thru
4001     case TargetLowering::Legal:
4002       // If this operation is not supported, lower it to constant 1
4003       Result = DAG.getConstant(1, VT);
4004       break;
4005     }
4006     break;
4007   }
4008   case ISD::TRAP: {
4009     MVT VT = Node->getValueType(0);
4010     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4011     default: assert(0 && "This action not supported for this op yet!");
4012     case TargetLowering::Legal:
4013       Tmp1 = LegalizeOp(Node->getOperand(0));
4014       Result = DAG.UpdateNodeOperands(Result, Tmp1);
4015       break;
4016     case TargetLowering::Custom:
4017       Result = TLI.LowerOperation(Op, DAG);
4018       if (Result.Val) break;
4019       // Fall Thru
4020     case TargetLowering::Expand:
4021       // If this operation is not supported, lower it to 'abort()' call
4022       Tmp1 = LegalizeOp(Node->getOperand(0));
4023       TargetLowering::ArgListTy Args;
4024       std::pair<SDOperand,SDOperand> CallResult =
4025         TLI.LowerCallTo(Tmp1, Type::VoidTy,
4026                         false, false, false, CallingConv::C, false,
4027                         DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4028                         Args, DAG);
4029       Result = CallResult.second;
4030       break;
4031     }
4032     break;
4033   }
4034   }
4035   
4036   assert(Result.getValueType() == Op.getValueType() &&
4037          "Bad legalization!");
4038   
4039   // Make sure that the generated code is itself legal.
4040   if (Result != Op)
4041     Result = LegalizeOp(Result);
4042
4043   // Note that LegalizeOp may be reentered even from single-use nodes, which
4044   // means that we always must cache transformed nodes.
4045   AddLegalizedOperand(Op, Result);
4046   return Result;
4047 }
4048
4049 /// PromoteOp - Given an operation that produces a value in an invalid type,
4050 /// promote it to compute the value into a larger type.  The produced value will
4051 /// have the correct bits for the low portion of the register, but no guarantee
4052 /// is made about the top bits: it may be zero, sign-extended, or garbage.
4053 SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
4054   MVT VT = Op.getValueType();
4055   MVT NVT = TLI.getTypeToTransformTo(VT);
4056   assert(getTypeAction(VT) == Promote &&
4057          "Caller should expand or legalize operands that are not promotable!");
4058   assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
4059          "Cannot promote to smaller type!");
4060
4061   SDOperand Tmp1, Tmp2, Tmp3;
4062   SDOperand Result;
4063   SDNode *Node = Op.Val;
4064
4065   DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
4066   if (I != PromotedNodes.end()) return I->second;
4067
4068   switch (Node->getOpcode()) {
4069   case ISD::CopyFromReg:
4070     assert(0 && "CopyFromReg must be legal!");
4071   default:
4072 #ifndef NDEBUG
4073     cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4074 #endif
4075     assert(0 && "Do not know how to promote this operator!");
4076     abort();
4077   case ISD::UNDEF:
4078     Result = DAG.getNode(ISD::UNDEF, NVT);
4079     break;
4080   case ISD::Constant:
4081     if (VT != MVT::i1)
4082       Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4083     else
4084       Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
4085     assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4086     break;
4087   case ISD::ConstantFP:
4088     Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4089     assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4090     break;
4091
4092   case ISD::SETCC:
4093     assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
4094            && "SetCC type is not legal??");
4095     Result = DAG.getNode(ISD::SETCC,
4096                          TLI.getSetCCResultType(Node->getOperand(0)),
4097                          Node->getOperand(0), Node->getOperand(1),
4098                          Node->getOperand(2));
4099     break;
4100     
4101   case ISD::TRUNCATE:
4102     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4103     case Legal:
4104       Result = LegalizeOp(Node->getOperand(0));
4105       assert(Result.getValueType().bitsGE(NVT) &&
4106              "This truncation doesn't make sense!");
4107       if (Result.getValueType().bitsGT(NVT))    // Truncate to NVT instead of VT
4108         Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4109       break;
4110     case Promote:
4111       // The truncation is not required, because we don't guarantee anything
4112       // about high bits anyway.
4113       Result = PromoteOp(Node->getOperand(0));
4114       break;
4115     case Expand:
4116       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4117       // Truncate the low part of the expanded value to the result type
4118       Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
4119     }
4120     break;
4121   case ISD::SIGN_EXTEND:
4122   case ISD::ZERO_EXTEND:
4123   case ISD::ANY_EXTEND:
4124     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4125     case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4126     case Legal:
4127       // Input is legal?  Just do extend all the way to the larger type.
4128       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4129       break;
4130     case Promote:
4131       // Promote the reg if it's smaller.
4132       Result = PromoteOp(Node->getOperand(0));
4133       // The high bits are not guaranteed to be anything.  Insert an extend.
4134       if (Node->getOpcode() == ISD::SIGN_EXTEND)
4135         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4136                          DAG.getValueType(Node->getOperand(0).getValueType()));
4137       else if (Node->getOpcode() == ISD::ZERO_EXTEND)
4138         Result = DAG.getZeroExtendInReg(Result,
4139                                         Node->getOperand(0).getValueType());
4140       break;
4141     }
4142     break;
4143   case ISD::BIT_CONVERT:
4144     Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4145                               Node->getValueType(0));
4146     Result = PromoteOp(Result);
4147     break;
4148     
4149   case ISD::FP_EXTEND:
4150     assert(0 && "Case not implemented.  Dynamically dead with 2 FP types!");
4151   case ISD::FP_ROUND:
4152     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4153     case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4154     case Promote:  assert(0 && "Unreachable with 2 FP types!");
4155     case Legal:
4156       if (Node->getConstantOperandVal(1) == 0) {
4157         // Input is legal?  Do an FP_ROUND_INREG.
4158         Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4159                              DAG.getValueType(VT));
4160       } else {
4161         // Just remove the truncate, it isn't affecting the value.
4162         Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0), 
4163                              Node->getOperand(1));
4164       }
4165       break;
4166     }
4167     break;
4168   case ISD::SINT_TO_FP:
4169   case ISD::UINT_TO_FP:
4170     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4171     case Legal:
4172       // No extra round required here.
4173       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4174       break;
4175
4176     case Promote:
4177       Result = PromoteOp(Node->getOperand(0));
4178       if (Node->getOpcode() == ISD::SINT_TO_FP)
4179         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
4180                              Result,
4181                          DAG.getValueType(Node->getOperand(0).getValueType()));
4182       else
4183         Result = DAG.getZeroExtendInReg(Result,
4184                                         Node->getOperand(0).getValueType());
4185       // No extra round required here.
4186       Result = DAG.getNode(Node->getOpcode(), NVT, Result);
4187       break;
4188     case Expand:
4189       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4190                              Node->getOperand(0));
4191       // Round if we cannot tolerate excess precision.
4192       if (NoExcessFPPrecision)
4193         Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4194                              DAG.getValueType(VT));
4195       break;
4196     }
4197     break;
4198
4199   case ISD::SIGN_EXTEND_INREG:
4200     Result = PromoteOp(Node->getOperand(0));
4201     Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, 
4202                          Node->getOperand(1));
4203     break;
4204   case ISD::FP_TO_SINT:
4205   case ISD::FP_TO_UINT:
4206     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4207     case Legal:
4208     case Expand:
4209       Tmp1 = Node->getOperand(0);
4210       break;
4211     case Promote:
4212       // The input result is prerounded, so we don't have to do anything
4213       // special.
4214       Tmp1 = PromoteOp(Node->getOperand(0));
4215       break;
4216     }
4217     // If we're promoting a UINT to a larger size, check to see if the new node
4218     // will be legal.  If it isn't, check to see if FP_TO_SINT is legal, since
4219     // we can use that instead.  This allows us to generate better code for
4220     // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4221     // legal, such as PowerPC.
4222     if (Node->getOpcode() == ISD::FP_TO_UINT && 
4223         !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
4224         (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4225          TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
4226       Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4227     } else {
4228       Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4229     }
4230     break;
4231
4232   case ISD::FABS:
4233   case ISD::FNEG:
4234     Tmp1 = PromoteOp(Node->getOperand(0));
4235     assert(Tmp1.getValueType() == NVT);
4236     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4237     // NOTE: we do not have to do any extra rounding here for
4238     // NoExcessFPPrecision, because we know the input will have the appropriate
4239     // precision, and these operations don't modify precision at all.
4240     break;
4241
4242   case ISD::FSQRT:
4243   case ISD::FSIN:
4244   case ISD::FCOS:
4245     Tmp1 = PromoteOp(Node->getOperand(0));
4246     assert(Tmp1.getValueType() == NVT);
4247     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4248     if (NoExcessFPPrecision)
4249       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4250                            DAG.getValueType(VT));
4251     break;
4252
4253   case ISD::FPOWI: {
4254     // Promote f32 powi to f64 powi.  Note that this could insert a libcall
4255     // directly as well, which may be better.
4256     Tmp1 = PromoteOp(Node->getOperand(0));
4257     assert(Tmp1.getValueType() == NVT);
4258     Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4259     if (NoExcessFPPrecision)
4260       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4261                            DAG.getValueType(VT));
4262     break;
4263   }
4264     
4265   case ISD::ATOMIC_CMP_SWAP: {
4266     AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
4267     Tmp2 = PromoteOp(Node->getOperand(2));
4268     Tmp3 = PromoteOp(Node->getOperand(3));
4269     Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(), 
4270                            AtomNode->getBasePtr(), Tmp2, Tmp3,
4271                            AtomNode->getSrcValue(),
4272                            AtomNode->getAlignment());
4273     // Remember that we legalized the chain.
4274     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4275     break;
4276   }
4277   case ISD::ATOMIC_LOAD_ADD:
4278   case ISD::ATOMIC_LOAD_SUB:
4279   case ISD::ATOMIC_LOAD_AND:
4280   case ISD::ATOMIC_LOAD_OR:
4281   case ISD::ATOMIC_LOAD_XOR:
4282   case ISD::ATOMIC_LOAD_NAND:
4283   case ISD::ATOMIC_LOAD_MIN:
4284   case ISD::ATOMIC_LOAD_MAX:
4285   case ISD::ATOMIC_LOAD_UMIN:
4286   case ISD::ATOMIC_LOAD_UMAX:
4287   case ISD::ATOMIC_SWAP: {
4288     AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
4289     Tmp2 = PromoteOp(Node->getOperand(2));
4290     Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(), 
4291                            AtomNode->getBasePtr(), Tmp2,
4292                            AtomNode->getSrcValue(),
4293                            AtomNode->getAlignment());
4294     // Remember that we legalized the chain.
4295     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4296     break;
4297   }
4298
4299   case ISD::AND:
4300   case ISD::OR:
4301   case ISD::XOR:
4302   case ISD::ADD:
4303   case ISD::SUB:
4304   case ISD::MUL:
4305     // The input may have strange things in the top bits of the registers, but
4306     // these operations don't care.  They may have weird bits going out, but
4307     // that too is okay if they are integer operations.
4308     Tmp1 = PromoteOp(Node->getOperand(0));
4309     Tmp2 = PromoteOp(Node->getOperand(1));
4310     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4311     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4312     break;
4313   case ISD::FADD:
4314   case ISD::FSUB:
4315   case ISD::FMUL:
4316     Tmp1 = PromoteOp(Node->getOperand(0));
4317     Tmp2 = PromoteOp(Node->getOperand(1));
4318     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4319     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4320     
4321     // Floating point operations will give excess precision that we may not be
4322     // able to tolerate.  If we DO allow excess precision, just leave it,
4323     // otherwise excise it.
4324     // FIXME: Why would we need to round FP ops more than integer ones?
4325     //     Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4326     if (NoExcessFPPrecision)
4327       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4328                            DAG.getValueType(VT));
4329     break;
4330
4331   case ISD::SDIV:
4332   case ISD::SREM:
4333     // These operators require that their input be sign extended.
4334     Tmp1 = PromoteOp(Node->getOperand(0));
4335     Tmp2 = PromoteOp(Node->getOperand(1));
4336     if (NVT.isInteger()) {
4337       Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4338                          DAG.getValueType(VT));
4339       Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4340                          DAG.getValueType(VT));
4341     }
4342     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4343
4344     // Perform FP_ROUND: this is probably overly pessimistic.
4345     if (NVT.isFloatingPoint() && NoExcessFPPrecision)
4346       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4347                            DAG.getValueType(VT));
4348     break;
4349   case ISD::FDIV:
4350   case ISD::FREM:
4351   case ISD::FCOPYSIGN:
4352     // These operators require that their input be fp extended.
4353     switch (getTypeAction(Node->getOperand(0).getValueType())) {
4354     case Expand: assert(0 && "not implemented");
4355     case Legal:   Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4356     case Promote: Tmp1 = PromoteOp(Node->getOperand(0));  break;
4357     }
4358     switch (getTypeAction(Node->getOperand(1).getValueType())) {
4359     case Expand: assert(0 && "not implemented");
4360     case Legal:   Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4361     case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
4362     }
4363     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4364     
4365     // Perform FP_ROUND: this is probably overly pessimistic.
4366     if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
4367       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4368                            DAG.getValueType(VT));
4369     break;
4370
4371   case ISD::UDIV:
4372   case ISD::UREM:
4373     // These operators require that their input be zero extended.
4374     Tmp1 = PromoteOp(Node->getOperand(0));
4375     Tmp2 = PromoteOp(Node->getOperand(1));
4376     assert(NVT.isInteger() && "Operators don't apply to FP!");
4377     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4378     Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4379     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4380     break;
4381
4382   case ISD::SHL:
4383     Tmp1 = PromoteOp(Node->getOperand(0));
4384     Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
4385     break;
4386   case ISD::SRA:
4387     // The input value must be properly sign extended.
4388     Tmp1 = PromoteOp(Node->getOperand(0));
4389     Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4390                        DAG.getValueType(VT));
4391     Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
4392     break;
4393   case ISD::SRL:
4394     // The input value must be properly zero extended.
4395     Tmp1 = PromoteOp(Node->getOperand(0));
4396     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4397     Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
4398     break;
4399
4400   case ISD::VAARG:
4401     Tmp1 = Node->getOperand(0);   // Get the chain.
4402     Tmp2 = Node->getOperand(1);   // Get the pointer.
4403     if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4404       Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4405       Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4406     } else {
4407       const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4408       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
4409       // Increment the pointer, VAList, to the next vaarg
4410       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
4411                          DAG.getConstant(VT.getSizeInBits()/8,
4412                                          TLI.getPointerTy()));
4413       // Store the incremented VAList to the legalized pointer
4414       Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
4415       // Load the actual argument out of the pointer VAList
4416       Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
4417     }
4418     // Remember that we legalized the chain.
4419     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4420     break;
4421
4422   case ISD::LOAD: {
4423     LoadSDNode *LD = cast<LoadSDNode>(Node);
4424     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4425       ? ISD::EXTLOAD : LD->getExtensionType();
4426     Result = DAG.getExtLoad(ExtType, NVT,
4427                             LD->getChain(), LD->getBasePtr(),
4428                             LD->getSrcValue(), LD->getSrcValueOffset(),
4429                             LD->getMemoryVT(),
4430                             LD->isVolatile(),
4431                             LD->getAlignment());
4432     // Remember that we legalized the chain.
4433     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4434     break;
4435   }
4436   case ISD::SELECT: {
4437     Tmp2 = PromoteOp(Node->getOperand(1));   // Legalize the op0
4438     Tmp3 = PromoteOp(Node->getOperand(2));   // Legalize the op1
4439
4440     MVT VT2 = Tmp2.getValueType();
4441     assert(VT2 == Tmp3.getValueType()
4442            && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4443     // Ensure that the resulting node is at least the same size as the operands'
4444     // value types, because we cannot assume that TLI.getSetCCValueType() is
4445     // constant.
4446     Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
4447     break;
4448   }
4449   case ISD::SELECT_CC:
4450     Tmp2 = PromoteOp(Node->getOperand(2));   // True
4451     Tmp3 = PromoteOp(Node->getOperand(3));   // False
4452     Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4453                          Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4454     break;
4455   case ISD::BSWAP:
4456     Tmp1 = Node->getOperand(0);
4457     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4458     Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4459     Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
4460                          DAG.getConstant(NVT.getSizeInBits() -
4461                                          VT.getSizeInBits(),
4462                                          TLI.getShiftAmountTy()));
4463     break;
4464   case ISD::CTPOP:
4465   case ISD::CTTZ:
4466   case ISD::CTLZ:
4467     // Zero extend the argument
4468     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
4469     // Perform the larger operation, then subtract if needed.
4470     Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4471     switch(Node->getOpcode()) {
4472     case ISD::CTPOP:
4473       Result = Tmp1;
4474       break;
4475     case ISD::CTTZ:
4476       // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
4477       Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
4478                           DAG.getConstant(NVT.getSizeInBits(), NVT),
4479                           ISD::SETEQ);
4480       Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
4481                            DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
4482       break;
4483     case ISD::CTLZ:
4484       //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4485       Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
4486                            DAG.getConstant(NVT.getSizeInBits() -
4487                                            VT.getSizeInBits(), NVT));
4488       break;
4489     }
4490     break;
4491   case ISD::EXTRACT_SUBVECTOR:
4492     Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4493     break;
4494   case ISD::EXTRACT_VECTOR_ELT:
4495     Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4496     break;
4497   }
4498
4499   assert(Result.Val && "Didn't set a result!");
4500
4501   // Make sure the result is itself legal.
4502   Result = LegalizeOp(Result);
4503   
4504   // Remember that we promoted this!
4505   AddPromotedOperand(Op, Result);
4506   return Result;
4507 }
4508
4509 /// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4510 /// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4511 /// based on the vector type. The return type of this matches the element type
4512 /// of the vector, which may not be legal for the target.
4513 SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
4514   // We know that operand #0 is the Vec vector.  If the index is a constant
4515   // or if the invec is a supported hardware type, we can use it.  Otherwise,
4516   // lower to a store then an indexed load.
4517   SDOperand Vec = Op.getOperand(0);
4518   SDOperand Idx = Op.getOperand(1);
4519   
4520   MVT TVT = Vec.getValueType();
4521   unsigned NumElems = TVT.getVectorNumElements();
4522   
4523   switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4524   default: assert(0 && "This action is not supported yet!");
4525   case TargetLowering::Custom: {
4526     Vec = LegalizeOp(Vec);
4527     Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4528     SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4529     if (Tmp3.Val)
4530       return Tmp3;
4531     break;
4532   }
4533   case TargetLowering::Legal:
4534     if (isTypeLegal(TVT)) {
4535       Vec = LegalizeOp(Vec);
4536       Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4537       return Op;
4538     }
4539     break;
4540   case TargetLowering::Expand:
4541     break;
4542   }
4543
4544   if (NumElems == 1) {
4545     // This must be an access of the only element.  Return it.
4546     Op = ScalarizeVectorOp(Vec);
4547   } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
4548     unsigned NumLoElts =  1 << Log2_32(NumElems-1);
4549     ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4550     SDOperand Lo, Hi;
4551     SplitVectorOp(Vec, Lo, Hi);
4552     if (CIdx->getValue() < NumLoElts) {
4553       Vec = Lo;
4554     } else {
4555       Vec = Hi;
4556       Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
4557                             Idx.getValueType());
4558     }
4559   
4560     // It's now an extract from the appropriate high or low part.  Recurse.
4561     Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4562     Op = ExpandEXTRACT_VECTOR_ELT(Op);
4563   } else {
4564     // Store the value to a temporary stack slot, then LOAD the scalar
4565     // element back out.
4566     SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4567     SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4568
4569     // Add the offset to the index.
4570     unsigned EltSize = Op.getValueType().getSizeInBits()/8;
4571     Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4572                       DAG.getConstant(EltSize, Idx.getValueType()));
4573
4574     if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
4575       Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
4576     else
4577       Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
4578
4579     StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4580
4581     Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
4582   }
4583   return Op;
4584 }
4585
4586 /// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation.  For now
4587 /// we assume the operation can be split if it is not already legal.
4588 SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
4589   // We know that operand #0 is the Vec vector.  For now we assume the index
4590   // is a constant and that the extracted result is a supported hardware type.
4591   SDOperand Vec = Op.getOperand(0);
4592   SDOperand Idx = LegalizeOp(Op.getOperand(1));
4593   
4594   unsigned NumElems = Vec.getValueType().getVectorNumElements();
4595   
4596   if (NumElems == Op.getValueType().getVectorNumElements()) {
4597     // This must be an access of the desired vector length.  Return it.
4598     return Vec;
4599   }
4600
4601   ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4602   SDOperand Lo, Hi;
4603   SplitVectorOp(Vec, Lo, Hi);
4604   if (CIdx->getValue() < NumElems/2) {
4605     Vec = Lo;
4606   } else {
4607     Vec = Hi;
4608     Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4609   }
4610   
4611   // It's now an extract from the appropriate high or low part.  Recurse.
4612   Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4613   return ExpandEXTRACT_SUBVECTOR(Op);
4614 }
4615
4616 /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4617 /// with condition CC on the current target.  This usually involves legalizing
4618 /// or promoting the arguments.  In the case where LHS and RHS must be expanded,
4619 /// there may be no choice but to create a new SetCC node to represent the
4620 /// legalized value of setcc lhs, rhs.  In this case, the value is returned in
4621 /// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4622 void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4623                                                  SDOperand &RHS,
4624                                                  SDOperand &CC) {
4625   SDOperand Tmp1, Tmp2, Tmp3, Result;    
4626   
4627   switch (getTypeAction(LHS.getValueType())) {
4628   case Legal:
4629     Tmp1 = LegalizeOp(LHS);   // LHS
4630     Tmp2 = LegalizeOp(RHS);   // RHS
4631     break;
4632   case Promote:
4633     Tmp1 = PromoteOp(LHS);   // LHS
4634     Tmp2 = PromoteOp(RHS);   // RHS
4635
4636     // If this is an FP compare, the operands have already been extended.
4637     if (LHS.getValueType().isInteger()) {
4638       MVT VT = LHS.getValueType();
4639       MVT NVT = TLI.getTypeToTransformTo(VT);
4640
4641       // Otherwise, we have to insert explicit sign or zero extends.  Note
4642       // that we could insert sign extends for ALL conditions, but zero extend
4643       // is cheaper on many machines (an AND instead of two shifts), so prefer
4644       // it.
4645       switch (cast<CondCodeSDNode>(CC)->get()) {
4646       default: assert(0 && "Unknown integer comparison!");
4647       case ISD::SETEQ:
4648       case ISD::SETNE:
4649       case ISD::SETUGE:
4650       case ISD::SETUGT:
4651       case ISD::SETULE:
4652       case ISD::SETULT:
4653         // ALL of these operations will work if we either sign or zero extend
4654         // the operands (including the unsigned comparisons!).  Zero extend is
4655         // usually a simpler/cheaper operation, so prefer it.
4656         Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4657         Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4658         break;
4659       case ISD::SETGE:
4660       case ISD::SETGT:
4661       case ISD::SETLT:
4662       case ISD::SETLE:
4663         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4664                            DAG.getValueType(VT));
4665         Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4666                            DAG.getValueType(VT));
4667         break;
4668       }
4669     }
4670     break;
4671   case Expand: {
4672     MVT VT = LHS.getValueType();
4673     if (VT == MVT::f32 || VT == MVT::f64) {
4674       // Expand into one or more soft-fp libcall(s).
4675       RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
4676       switch (cast<CondCodeSDNode>(CC)->get()) {
4677       case ISD::SETEQ:
4678       case ISD::SETOEQ:
4679         LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4680         break;
4681       case ISD::SETNE:
4682       case ISD::SETUNE:
4683         LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
4684         break;
4685       case ISD::SETGE:
4686       case ISD::SETOGE:
4687         LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4688         break;
4689       case ISD::SETLT:
4690       case ISD::SETOLT:
4691         LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4692         break;
4693       case ISD::SETLE:
4694       case ISD::SETOLE:
4695         LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4696         break;
4697       case ISD::SETGT:
4698       case ISD::SETOGT:
4699         LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4700         break;
4701       case ISD::SETUO:
4702         LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4703         break;
4704       case ISD::SETO:
4705         LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
4706         break;
4707       default:
4708         LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4709         switch (cast<CondCodeSDNode>(CC)->get()) {
4710         case ISD::SETONE:
4711           // SETONE = SETOLT | SETOGT
4712           LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4713           // Fallthrough
4714         case ISD::SETUGT:
4715           LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4716           break;
4717         case ISD::SETUGE:
4718           LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4719           break;
4720         case ISD::SETULT:
4721           LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4722           break;
4723         case ISD::SETULE:
4724           LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4725           break;
4726         case ISD::SETUEQ:
4727           LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4728           break;
4729         default: assert(0 && "Unsupported FP setcc!");
4730         }
4731       }
4732
4733       SDOperand Dummy;
4734       Tmp1 = ExpandLibCall(LC1,
4735                            DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
4736                            false /*sign irrelevant*/, Dummy);
4737       Tmp2 = DAG.getConstant(0, MVT::i32);
4738       CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
4739       if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
4740         Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
4741                            CC);
4742         LHS = ExpandLibCall(LC2,
4743                             DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
4744                             false /*sign irrelevant*/, Dummy);
4745         Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
4746                            DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
4747         Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4748         Tmp2 = SDOperand();
4749       }
4750       LHS = Tmp1;
4751       RHS = Tmp2;
4752       return;
4753     }
4754
4755     SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4756     ExpandOp(LHS, LHSLo, LHSHi);
4757     ExpandOp(RHS, RHSLo, RHSHi);
4758     ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4759
4760     if (VT==MVT::ppcf128) {
4761       // FIXME:  This generated code sucks.  We want to generate
4762       //         FCMP crN, hi1, hi2
4763       //         BNE crN, L:
4764       //         FCMP crN, lo1, lo2
4765       // The following can be improved, but not that much.
4766       Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4767       Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
4768       Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4769       Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4770       Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
4771       Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4772       Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4773       Tmp2 = SDOperand();
4774       break;
4775     }
4776
4777     switch (CCCode) {
4778     case ISD::SETEQ:
4779     case ISD::SETNE:
4780       if (RHSLo == RHSHi)
4781         if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4782           if (RHSCST->isAllOnesValue()) {
4783             // Comparison to -1.
4784             Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4785             Tmp2 = RHSLo;
4786             break;
4787           }
4788
4789       Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4790       Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4791       Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4792       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4793       break;
4794     default:
4795       // If this is a comparison of the sign bit, just look at the top part.
4796       // X > -1,  x < 0
4797       if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4798         if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && 
4799              CST->isNullValue()) ||               // X < 0
4800             (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4801              CST->isAllOnesValue())) {            // X > -1
4802           Tmp1 = LHSHi;
4803           Tmp2 = RHSHi;
4804           break;
4805         }
4806
4807       // FIXME: This generated code sucks.
4808       ISD::CondCode LowCC;
4809       switch (CCCode) {
4810       default: assert(0 && "Unknown integer setcc!");
4811       case ISD::SETLT:
4812       case ISD::SETULT: LowCC = ISD::SETULT; break;
4813       case ISD::SETGT:
4814       case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4815       case ISD::SETLE:
4816       case ISD::SETULE: LowCC = ISD::SETULE; break;
4817       case ISD::SETGE:
4818       case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4819       }
4820
4821       // Tmp1 = lo(op1) < lo(op2)   // Always unsigned comparison
4822       // Tmp2 = hi(op1) < hi(op2)   // Signedness depends on operands
4823       // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4824
4825       // NOTE: on targets without efficient SELECT of bools, we can always use
4826       // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
4827       TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4828       Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
4829                                LowCC, false, DagCombineInfo);
4830       if (!Tmp1.Val)
4831         Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4832       Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4833                                CCCode, false, DagCombineInfo);
4834       if (!Tmp2.Val)
4835         Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
4836                            RHSHi,CC);
4837       
4838       ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4839       ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4840       if ((Tmp1C && Tmp1C->isNullValue()) ||
4841           (Tmp2C && Tmp2C->isNullValue() &&
4842            (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4843             CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4844           (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
4845            (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4846             CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4847         // low part is known false, returns high part.
4848         // For LE / GE, if high part is known false, ignore the low part.
4849         // For LT / GT, if high part is known true, ignore the low part.
4850         Tmp1 = Tmp2;
4851         Tmp2 = SDOperand();
4852       } else {
4853         Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4854                                    ISD::SETEQ, false, DagCombineInfo);
4855         if (!Result.Val)
4856           Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4857                               ISD::SETEQ);
4858         Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4859                                         Result, Tmp1, Tmp2));
4860         Tmp1 = Result;
4861         Tmp2 = SDOperand();
4862       }
4863     }
4864   }
4865   }
4866   LHS = Tmp1;
4867   RHS = Tmp2;
4868 }
4869
4870 /// EmitStackConvert - Emit a store/load combination to the stack.  This stores
4871 /// SrcOp to a stack slot of type SlotVT, truncating it if needed.  It then does
4872 /// a load from the stack slot to DestVT, extending it if needed.
4873 /// The resultant code need not be legal.
4874 SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4875                                                  MVT SlotVT,
4876                                                  MVT DestVT) {
4877   // Create the stack frame object.
4878   SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4879
4880   FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
4881   int SPFI = StackPtrFI->getIndex();
4882
4883   unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4884   unsigned SlotSize = SlotVT.getSizeInBits();
4885   unsigned DestSize = DestVT.getSizeInBits();
4886   
4887   // Emit a store to the stack slot.  Use a truncstore if the input value is
4888   // later than DestVT.
4889   SDOperand Store;
4890   if (SrcSize > SlotSize)
4891     Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
4892                               PseudoSourceValue::getFixedStack(),
4893                               SPFI, SlotVT);
4894   else {
4895     assert(SrcSize == SlotSize && "Invalid store");
4896     Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
4897                          PseudoSourceValue::getFixedStack(),
4898                          SPFI);
4899   }
4900   
4901   // Result is a load from the stack slot.
4902   if (SlotSize == DestSize)
4903     return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4904   
4905   assert(SlotSize < DestSize && "Unknown extension!");
4906   return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
4907 }
4908
4909 SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4910   // Create a vector sized/aligned stack slot, store the value to element #0,
4911   // then load the whole vector back out.
4912   SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
4913
4914   FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
4915   int SPFI = StackPtrFI->getIndex();
4916
4917   SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
4918                               PseudoSourceValue::getFixedStack(), SPFI);
4919   return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
4920                      PseudoSourceValue::getFixedStack(), SPFI);
4921 }
4922
4923
4924 /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
4925 /// support the operation, but do support the resultant vector type.
4926 SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4927   
4928   // If the only non-undef value is the low element, turn this into a 
4929   // SCALAR_TO_VECTOR node.  If this is { X, X, X, X }, determine X.
4930   unsigned NumElems = Node->getNumOperands();
4931   bool isOnlyLowElement = true;
4932   SDOperand SplatValue = Node->getOperand(0);
4933   
4934   // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4935   // and use a bitmask instead of a list of elements.
4936   std::map<SDOperand, std::vector<unsigned> > Values;
4937   Values[SplatValue].push_back(0);
4938   bool isConstant = true;
4939   if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4940       SplatValue.getOpcode() != ISD::UNDEF)
4941     isConstant = false;
4942   
4943   for (unsigned i = 1; i < NumElems; ++i) {
4944     SDOperand V = Node->getOperand(i);
4945     Values[V].push_back(i);
4946     if (V.getOpcode() != ISD::UNDEF)
4947       isOnlyLowElement = false;
4948     if (SplatValue != V)
4949       SplatValue = SDOperand(0,0);
4950
4951     // If this isn't a constant element or an undef, we can't use a constant
4952     // pool load.
4953     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4954         V.getOpcode() != ISD::UNDEF)
4955       isConstant = false;
4956   }
4957   
4958   if (isOnlyLowElement) {
4959     // If the low element is an undef too, then this whole things is an undef.
4960     if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4961       return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4962     // Otherwise, turn this into a scalar_to_vector node.
4963     return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4964                        Node->getOperand(0));
4965   }
4966   
4967   // If all elements are constants, create a load from the constant pool.
4968   if (isConstant) {
4969     MVT VT = Node->getValueType(0);
4970     std::vector<Constant*> CV;
4971     for (unsigned i = 0, e = NumElems; i != e; ++i) {
4972       if (ConstantFPSDNode *V = 
4973           dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
4974         CV.push_back(ConstantFP::get(V->getValueAPF()));
4975       } else if (ConstantSDNode *V = 
4976                    dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4977         CV.push_back(ConstantInt::get(V->getAPIntValue()));
4978       } else {
4979         assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4980         const Type *OpNTy = 
4981           Node->getOperand(0).getValueType().getTypeForMVT();
4982         CV.push_back(UndefValue::get(OpNTy));
4983       }
4984     }
4985     Constant *CP = ConstantVector::get(CV);
4986     SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
4987     return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
4988                        PseudoSourceValue::getConstantPool(), 0);
4989   }
4990   
4991   if (SplatValue.Val) {   // Splat of one value?
4992     // Build the shuffle constant vector: <0, 0, 0, 0>
4993     MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4994     SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
4995     std::vector<SDOperand> ZeroVec(NumElems, Zero);
4996     SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4997                                       &ZeroVec[0], ZeroVec.size());
4998
4999     // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5000     if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5001       // Get the splatted value into the low element of a vector register.
5002       SDOperand LowValVec = 
5003         DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5004     
5005       // Return shuffle(LowValVec, undef, <0,0,0,0>)
5006       return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5007                          DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5008                          SplatMask);
5009     }
5010   }
5011   
5012   // If there are only two unique elements, we may be able to turn this into a
5013   // vector shuffle.
5014   if (Values.size() == 2) {
5015     // Get the two values in deterministic order.
5016     SDOperand Val1 = Node->getOperand(1);
5017     SDOperand Val2;
5018     std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5019     if (MI->first != Val1)
5020       Val2 = MI->first;
5021     else
5022       Val2 = (++MI)->first;
5023     
5024     // If Val1 is an undef, make sure end ends up as Val2, to ensure that our 
5025     // vector shuffle has the undef vector on the RHS.
5026     if (Val1.getOpcode() == ISD::UNDEF)
5027       std::swap(Val1, Val2);
5028     
5029     // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
5030     MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5031     MVT MaskEltVT = MaskVT.getVectorElementType();
5032     std::vector<SDOperand> MaskVec(NumElems);
5033
5034     // Set elements of the shuffle mask for Val1.
5035     std::vector<unsigned> &Val1Elts = Values[Val1];
5036     for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5037       MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5038
5039     // Set elements of the shuffle mask for Val2.
5040     std::vector<unsigned> &Val2Elts = Values[Val2];
5041     for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5042       if (Val2.getOpcode() != ISD::UNDEF)
5043         MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5044       else
5045         MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5046     
5047     SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5048                                         &MaskVec[0], MaskVec.size());
5049
5050     // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
5051     if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5052         isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
5053       Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5054       Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5055       SDOperand Ops[] = { Val1, Val2, ShuffleMask };
5056
5057       // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
5058       return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
5059     }
5060   }
5061   
5062   // Otherwise, we can't handle this case efficiently.  Allocate a sufficiently
5063   // aligned object on the stack, store each element into it, then load
5064   // the result as a vector.
5065   MVT VT = Node->getValueType(0);
5066   // Create the stack frame object.
5067   SDOperand FIPtr = DAG.CreateStackTemporary(VT);
5068   
5069   // Emit a store of each element to the stack slot.
5070   SmallVector<SDOperand, 8> Stores;
5071   unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
5072   // Store (in the right endianness) the elements to memory.
5073   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5074     // Ignore undef elements.
5075     if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5076     
5077     unsigned Offset = TypeByteSize*i;
5078     
5079     SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5080     Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5081     
5082     Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx, 
5083                                   NULL, 0));
5084   }
5085   
5086   SDOperand StoreChain;
5087   if (!Stores.empty())    // Not all undef elements?
5088     StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5089                              &Stores[0], Stores.size());
5090   else
5091     StoreChain = DAG.getEntryNode();
5092   
5093   // Result is a load from the stack slot.
5094   return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
5095 }
5096
5097 void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5098                                             SDOperand Op, SDOperand Amt,
5099                                             SDOperand &Lo, SDOperand &Hi) {
5100   // Expand the subcomponents.
5101   SDOperand LHSL, LHSH;
5102   ExpandOp(Op, LHSL, LHSH);
5103
5104   SDOperand Ops[] = { LHSL, LHSH, Amt };
5105   MVT VT = LHSL.getValueType();
5106   Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
5107   Hi = Lo.getValue(1);
5108 }
5109
5110
5111 /// ExpandShift - Try to find a clever way to expand this shift operation out to
5112 /// smaller elements.  If we can't find a way that is more efficient than a
5113 /// libcall on this target, return false.  Otherwise, return true with the
5114 /// low-parts expanded into Lo and Hi.
5115 bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5116                                        SDOperand &Lo, SDOperand &Hi) {
5117   assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5118          "This is not a shift!");
5119
5120   MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
5121   SDOperand ShAmt = LegalizeOp(Amt);
5122   MVT ShTy = ShAmt.getValueType();
5123   unsigned ShBits = ShTy.getSizeInBits();
5124   unsigned VTBits = Op.getValueType().getSizeInBits();
5125   unsigned NVTBits = NVT.getSizeInBits();
5126
5127   // Handle the case when Amt is an immediate.
5128   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5129     unsigned Cst = CN->getValue();
5130     // Expand the incoming operand to be shifted, so that we have its parts
5131     SDOperand InL, InH;
5132     ExpandOp(Op, InL, InH);
5133     switch(Opc) {
5134     case ISD::SHL:
5135       if (Cst > VTBits) {
5136         Lo = DAG.getConstant(0, NVT);
5137         Hi = DAG.getConstant(0, NVT);
5138       } else if (Cst > NVTBits) {
5139         Lo = DAG.getConstant(0, NVT);
5140         Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
5141       } else if (Cst == NVTBits) {
5142         Lo = DAG.getConstant(0, NVT);
5143         Hi = InL;
5144       } else {
5145         Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5146         Hi = DAG.getNode(ISD::OR, NVT,
5147            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5148            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5149       }
5150       return true;
5151     case ISD::SRL:
5152       if (Cst > VTBits) {
5153         Lo = DAG.getConstant(0, NVT);
5154         Hi = DAG.getConstant(0, NVT);
5155       } else if (Cst > NVTBits) {
5156         Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5157         Hi = DAG.getConstant(0, NVT);
5158       } else if (Cst == NVTBits) {
5159         Lo = InH;
5160         Hi = DAG.getConstant(0, NVT);
5161       } else {
5162         Lo = DAG.getNode(ISD::OR, NVT,
5163            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5164            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5165         Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5166       }
5167       return true;
5168     case ISD::SRA:
5169       if (Cst > VTBits) {
5170         Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
5171                               DAG.getConstant(NVTBits-1, ShTy));
5172       } else if (Cst > NVTBits) {
5173         Lo = DAG.getNode(ISD::SRA, NVT, InH,
5174                            DAG.getConstant(Cst-NVTBits, ShTy));
5175         Hi = DAG.getNode(ISD::SRA, NVT, InH,
5176                               DAG.getConstant(NVTBits-1, ShTy));
5177       } else if (Cst == NVTBits) {
5178         Lo = InH;
5179         Hi = DAG.getNode(ISD::SRA, NVT, InH,
5180                               DAG.getConstant(NVTBits-1, ShTy));
5181       } else {
5182         Lo = DAG.getNode(ISD::OR, NVT,
5183            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5184            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5185         Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5186       }
5187       return true;
5188     }
5189   }
5190   
5191   // Okay, the shift amount isn't constant.  However, if we can tell that it is
5192   // >= 32 or < 32, we can still simplify it, without knowing the actual value.
5193   APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5194   APInt KnownZero, KnownOne;
5195   DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
5196   
5197   // If we know that if any of the high bits of the shift amount are one, then
5198   // we can do this as a couple of simple shifts.
5199   if (KnownOne.intersects(Mask)) {
5200     // Mask out the high bit, which we know is set.
5201     Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
5202                       DAG.getConstant(~Mask, Amt.getValueType()));
5203     
5204     // Expand the incoming operand to be shifted, so that we have its parts
5205     SDOperand InL, InH;
5206     ExpandOp(Op, InL, InH);
5207     switch(Opc) {
5208     case ISD::SHL:
5209       Lo = DAG.getConstant(0, NVT);              // Low part is zero.
5210       Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5211       return true;
5212     case ISD::SRL:
5213       Hi = DAG.getConstant(0, NVT);              // Hi part is zero.
5214       Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5215       return true;
5216     case ISD::SRA:
5217       Hi = DAG.getNode(ISD::SRA, NVT, InH,       // Sign extend high part.
5218                        DAG.getConstant(NVTBits-1, Amt.getValueType()));
5219       Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5220       return true;
5221     }
5222   }
5223   
5224   // If we know that the high bits of the shift amount are all zero, then we can
5225   // do this as a couple of simple shifts.
5226   if ((KnownZero & Mask) == Mask) {
5227     // Compute 32-amt.
5228     SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5229                                  DAG.getConstant(NVTBits, Amt.getValueType()),
5230                                  Amt);
5231     
5232     // Expand the incoming operand to be shifted, so that we have its parts
5233     SDOperand InL, InH;
5234     ExpandOp(Op, InL, InH);
5235     switch(Opc) {
5236     case ISD::SHL:
5237       Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5238       Hi = DAG.getNode(ISD::OR, NVT,
5239                        DAG.getNode(ISD::SHL, NVT, InH, Amt),
5240                        DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5241       return true;
5242     case ISD::SRL:
5243       Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5244       Lo = DAG.getNode(ISD::OR, NVT,
5245                        DAG.getNode(ISD::SRL, NVT, InL, Amt),
5246                        DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5247       return true;
5248     case ISD::SRA:
5249       Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5250       Lo = DAG.getNode(ISD::OR, NVT,
5251                        DAG.getNode(ISD::SRL, NVT, InL, Amt),
5252                        DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5253       return true;
5254     }
5255   }
5256   
5257   return false;
5258 }
5259
5260
5261 // ExpandLibCall - Expand a node into a call to a libcall.  If the result value
5262 // does not fit into a register, return the lo part and set the hi part to the
5263 // by-reg argument.  If it does fit into a single register, return the result
5264 // and leave the Hi part unset.
5265 SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5266                                               bool isSigned, SDOperand &Hi) {
5267   assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5268   // The input chain to this libcall is the entry node of the function. 
5269   // Legalizing the call will automatically add the previous call to the
5270   // dependence.
5271   SDOperand InChain = DAG.getEntryNode();
5272   
5273   TargetLowering::ArgListTy Args;
5274   TargetLowering::ArgListEntry Entry;
5275   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5276     MVT ArgVT = Node->getOperand(i).getValueType();
5277     const Type *ArgTy = ArgVT.getTypeForMVT();
5278     Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy; 
5279     Entry.isSExt = isSigned;
5280     Entry.isZExt = !isSigned;
5281     Args.push_back(Entry);
5282   }
5283   SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5284                                            TLI.getPointerTy());
5285
5286   // Splice the libcall in wherever FindInputOutputChains tells us to.
5287   const Type *RetTy = Node->getValueType(0).getTypeForMVT();
5288   std::pair<SDOperand,SDOperand> CallInfo =
5289     TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5290                     false, Callee, Args, DAG);
5291
5292   // Legalize the call sequence, starting with the chain.  This will advance
5293   // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5294   // was added by LowerCallTo (guaranteeing proper serialization of calls).
5295   LegalizeOp(CallInfo.second);
5296   SDOperand Result;
5297   switch (getTypeAction(CallInfo.first.getValueType())) {
5298   default: assert(0 && "Unknown thing");
5299   case Legal:
5300     Result = CallInfo.first;
5301     break;
5302   case Expand:
5303     ExpandOp(CallInfo.first, Result, Hi);
5304     break;
5305   }
5306   return Result;
5307 }
5308
5309
5310 /// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5311 ///
5312 SDOperand SelectionDAGLegalize::
5313 ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5314   MVT SourceVT = Source.getValueType();
5315   bool ExpandSource = getTypeAction(SourceVT) == Expand;
5316
5317   // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5318   if (!isSigned && SourceVT != MVT::i32) {
5319     // The integer value loaded will be incorrectly if the 'sign bit' of the
5320     // incoming integer is set.  To handle this, we dynamically test to see if
5321     // it is set, and, if so, add a fudge factor.
5322     SDOperand Hi;
5323     if (ExpandSource) {
5324       SDOperand Lo;
5325       ExpandOp(Source, Lo, Hi);
5326       Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5327     } else {
5328       // The comparison for the sign bit will use the entire operand.
5329       Hi = Source;
5330     }
5331
5332     // If this is unsigned, and not supported, first perform the conversion to
5333     // signed, then adjust the result if the sign bit is set.
5334     SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
5335
5336     SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
5337                                      DAG.getConstant(0, Hi.getValueType()),
5338                                      ISD::SETLT);
5339     SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5340     SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5341                                       SignSet, Four, Zero);
5342     uint64_t FF = 0x5f800000ULL;
5343     if (TLI.isLittleEndian()) FF <<= 32;
5344     static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
5345
5346     SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5347     CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5348     SDOperand FudgeInReg;
5349     if (DestTy == MVT::f32)
5350       FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
5351                                PseudoSourceValue::getConstantPool(), 0);
5352     else if (DestTy.bitsGT(MVT::f32))
5353       // FIXME: Avoid the extend by construction the right constantpool?
5354       FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
5355                                   CPIdx,
5356                                   PseudoSourceValue::getConstantPool(), 0,
5357                                   MVT::f32);
5358     else 
5359       assert(0 && "Unexpected conversion");
5360
5361     MVT SCVT = SignedConv.getValueType();
5362     if (SCVT != DestTy) {
5363       // Destination type needs to be expanded as well. The FADD now we are
5364       // constructing will be expanded into a libcall.
5365       if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5366         assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
5367         SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
5368                                  SignedConv, SignedConv.getValue(1));
5369       }
5370       SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5371     }
5372     return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
5373   }
5374
5375   // Check to see if the target has a custom way to lower this.  If so, use it.
5376   switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
5377   default: assert(0 && "This action not implemented for this operation!");
5378   case TargetLowering::Legal:
5379   case TargetLowering::Expand:
5380     break;   // This case is handled below.
5381   case TargetLowering::Custom: {
5382     SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5383                                                   Source), DAG);
5384     if (NV.Val)
5385       return LegalizeOp(NV);
5386     break;   // The target decided this was legal after all
5387   }
5388   }
5389
5390   // Expand the source, then glue it back together for the call.  We must expand
5391   // the source in case it is shared (this pass of legalize must traverse it).
5392   if (ExpandSource) {
5393     SDOperand SrcLo, SrcHi;
5394     ExpandOp(Source, SrcLo, SrcHi);
5395     Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5396   }
5397
5398   RTLIB::Libcall LC;
5399   if (SourceVT == MVT::i32) {
5400     if (DestTy == MVT::f32)
5401       LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
5402     else {
5403       assert(DestTy == MVT::f64 && "Unknown fp value type!");
5404       LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5405     }
5406   } else if (SourceVT == MVT::i64) {
5407     if (DestTy == MVT::f32)
5408       LC = RTLIB::SINTTOFP_I64_F32;
5409     else if (DestTy == MVT::f64)
5410       LC = RTLIB::SINTTOFP_I64_F64;
5411     else if (DestTy == MVT::f80)
5412       LC = RTLIB::SINTTOFP_I64_F80;
5413     else {
5414       assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5415       LC = RTLIB::SINTTOFP_I64_PPCF128;
5416     }
5417   } else if (SourceVT == MVT::i128) {
5418     if (DestTy == MVT::f32)
5419       LC = RTLIB::SINTTOFP_I128_F32;
5420     else if (DestTy == MVT::f64)
5421       LC = RTLIB::SINTTOFP_I128_F64;
5422     else if (DestTy == MVT::f80)
5423       LC = RTLIB::SINTTOFP_I128_F80;
5424     else {
5425       assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5426       LC = RTLIB::SINTTOFP_I128_PPCF128;
5427     }
5428   } else {
5429     assert(0 && "Unknown int value type");
5430   }
5431   
5432   assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
5433   Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
5434   SDOperand HiPart;
5435   SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
5436   if (Result.getValueType() != DestTy && HiPart.Val)
5437     Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5438   return Result;
5439 }
5440
5441 /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5442 /// INT_TO_FP operation of the specified operand when the target requests that
5443 /// we expand it.  At this point, we know that the result and operand types are
5444 /// legal for the target.
5445 SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5446                                                      SDOperand Op0,
5447                                                      MVT DestVT) {
5448   if (Op0.getValueType() == MVT::i32) {
5449     // simple 32-bit [signed|unsigned] integer to float/double expansion
5450     
5451     // Get the stack frame index of a 8 byte buffer.
5452     SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5453     
5454     // word offset constant for Hi/Lo address computation
5455     SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5456     // set up Hi and Lo (into buffer) address based on endian
5457     SDOperand Hi = StackSlot;
5458     SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5459     if (TLI.isLittleEndian())
5460       std::swap(Hi, Lo);
5461     
5462     // if signed map to unsigned space
5463     SDOperand Op0Mapped;
5464     if (isSigned) {
5465       // constant used to invert sign bit (signed to unsigned mapping)
5466       SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5467       Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5468     } else {
5469       Op0Mapped = Op0;
5470     }
5471     // store the lo of the constructed double - based on integer input
5472     SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
5473                                     Op0Mapped, Lo, NULL, 0);
5474     // initial hi portion of constructed double
5475     SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5476     // store the hi of the constructed double - biased exponent
5477     SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
5478     // load the constructed double
5479     SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
5480     // FP constant to bias correct the final result
5481     SDOperand Bias = DAG.getConstantFP(isSigned ?
5482                                             BitsToDouble(0x4330000080000000ULL)
5483                                           : BitsToDouble(0x4330000000000000ULL),
5484                                      MVT::f64);
5485     // subtract the bias
5486     SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5487     // final result
5488     SDOperand Result;
5489     // handle final rounding
5490     if (DestVT == MVT::f64) {
5491       // do nothing
5492       Result = Sub;
5493     } else if (DestVT.bitsLT(MVT::f64)) {
5494       Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5495                            DAG.getIntPtrConstant(0));
5496     } else if (DestVT.bitsGT(MVT::f64)) {
5497       Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
5498     }
5499     return Result;
5500   }
5501   assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5502   SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5503
5504   SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
5505                                    DAG.getConstant(0, Op0.getValueType()),
5506                                    ISD::SETLT);
5507   SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5508   SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5509                                     SignSet, Four, Zero);
5510
5511   // If the sign bit of the integer is set, the large number will be treated
5512   // as a negative number.  To counteract this, the dynamic code adds an
5513   // offset depending on the data type.
5514   uint64_t FF;
5515   switch (Op0.getValueType().getSimpleVT()) {
5516   default: assert(0 && "Unsupported integer type!");
5517   case MVT::i8 : FF = 0x43800000ULL; break;  // 2^8  (as a float)
5518   case MVT::i16: FF = 0x47800000ULL; break;  // 2^16 (as a float)
5519   case MVT::i32: FF = 0x4F800000ULL; break;  // 2^32 (as a float)
5520   case MVT::i64: FF = 0x5F800000ULL; break;  // 2^64 (as a float)
5521   }
5522   if (TLI.isLittleEndian()) FF <<= 32;
5523   static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
5524
5525   SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5526   CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5527   SDOperand FudgeInReg;
5528   if (DestVT == MVT::f32)
5529     FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
5530                              PseudoSourceValue::getConstantPool(), 0);
5531   else {
5532     FudgeInReg =
5533       LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5534                                 DAG.getEntryNode(), CPIdx,
5535                                 PseudoSourceValue::getConstantPool(), 0,
5536                                 MVT::f32));
5537   }
5538
5539   return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5540 }
5541
5542 /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5543 /// *INT_TO_FP operation of the specified operand when the target requests that
5544 /// we promote it.  At this point, we know that the result and operand types are
5545 /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5546 /// operation that takes a larger input.
5547 SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5548                                                       MVT DestVT,
5549                                                       bool isSigned) {
5550   // First step, figure out the appropriate *INT_TO_FP operation to use.
5551   MVT NewInTy = LegalOp.getValueType();
5552
5553   unsigned OpToUse = 0;
5554
5555   // Scan for the appropriate larger type to use.
5556   while (1) {
5557     NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5558     assert(NewInTy.isInteger() && "Ran out of possibilities!");
5559
5560     // If the target supports SINT_TO_FP of this type, use it.
5561     switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5562       default: break;
5563       case TargetLowering::Legal:
5564         if (!TLI.isTypeLegal(NewInTy))
5565           break;  // Can't use this datatype.
5566         // FALL THROUGH.
5567       case TargetLowering::Custom:
5568         OpToUse = ISD::SINT_TO_FP;
5569         break;
5570     }
5571     if (OpToUse) break;
5572     if (isSigned) continue;
5573
5574     // If the target supports UINT_TO_FP of this type, use it.
5575     switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5576       default: break;
5577       case TargetLowering::Legal:
5578         if (!TLI.isTypeLegal(NewInTy))
5579           break;  // Can't use this datatype.
5580         // FALL THROUGH.
5581       case TargetLowering::Custom:
5582         OpToUse = ISD::UINT_TO_FP;
5583         break;
5584     }
5585     if (OpToUse) break;
5586
5587     // Otherwise, try a larger type.
5588   }
5589
5590   // Okay, we found the operation and type to use.  Zero extend our input to the
5591   // desired type then run the operation on it.
5592   return DAG.getNode(OpToUse, DestVT,
5593                      DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5594                                  NewInTy, LegalOp));
5595 }
5596
5597 /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5598 /// FP_TO_*INT operation of the specified operand when the target requests that
5599 /// we promote it.  At this point, we know that the result and operand types are
5600 /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5601 /// operation that returns a larger result.
5602 SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5603                                                       MVT DestVT,
5604                                                       bool isSigned) {
5605   // First step, figure out the appropriate FP_TO*INT operation to use.
5606   MVT NewOutTy = DestVT;
5607
5608   unsigned OpToUse = 0;
5609
5610   // Scan for the appropriate larger type to use.
5611   while (1) {
5612     NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5613     assert(NewOutTy.isInteger() && "Ran out of possibilities!");
5614
5615     // If the target supports FP_TO_SINT returning this type, use it.
5616     switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5617     default: break;
5618     case TargetLowering::Legal:
5619       if (!TLI.isTypeLegal(NewOutTy))
5620         break;  // Can't use this datatype.
5621       // FALL THROUGH.
5622     case TargetLowering::Custom:
5623       OpToUse = ISD::FP_TO_SINT;
5624       break;
5625     }
5626     if (OpToUse) break;
5627
5628     // If the target supports FP_TO_UINT of this type, use it.
5629     switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5630     default: break;
5631     case TargetLowering::Legal:
5632       if (!TLI.isTypeLegal(NewOutTy))
5633         break;  // Can't use this datatype.
5634       // FALL THROUGH.
5635     case TargetLowering::Custom:
5636       OpToUse = ISD::FP_TO_UINT;
5637       break;
5638     }
5639     if (OpToUse) break;
5640
5641     // Otherwise, try a larger type.
5642   }
5643
5644   
5645   // Okay, we found the operation and type to use.
5646   SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5647   
5648   // If the operation produces an invalid type, it must be custom lowered.  Use
5649   // the target lowering hooks to expand it.  Just keep the low part of the
5650   // expanded operation, we know that we're truncating anyway.
5651   if (getTypeAction(NewOutTy) == Expand) {
5652     Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5653     assert(Operation.Val && "Didn't return anything");
5654   }
5655   
5656   // Truncate the result of the extended FP_TO_*INT operation to the desired
5657   // size.
5658   return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
5659 }
5660
5661 /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5662 ///
5663 SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5664   MVT VT = Op.getValueType();
5665   MVT SHVT = TLI.getShiftAmountTy();
5666   SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5667   switch (VT.getSimpleVT()) {
5668   default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5669   case MVT::i16:
5670     Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5671     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5672     return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5673   case MVT::i32:
5674     Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5675     Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5676     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5677     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5678     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5679     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5680     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5681     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5682     return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5683   case MVT::i64:
5684     Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5685     Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5686     Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5687     Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5688     Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5689     Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5690     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5691     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5692     Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5693     Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5694     Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5695     Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5696     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5697     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5698     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5699     Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5700     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5701     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5702     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5703     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5704     return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5705   }
5706 }
5707
5708 /// ExpandBitCount - Expand the specified bitcount instruction into operations.
5709 ///
5710 SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5711   switch (Opc) {
5712   default: assert(0 && "Cannot expand this yet!");
5713   case ISD::CTPOP: {
5714     static const uint64_t mask[6] = {
5715       0x5555555555555555ULL, 0x3333333333333333ULL,
5716       0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5717       0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5718     };
5719     MVT VT = Op.getValueType();
5720     MVT ShVT = TLI.getShiftAmountTy();
5721     unsigned len = VT.getSizeInBits();
5722     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5723       //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5724       SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5725       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5726       Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5727                        DAG.getNode(ISD::AND, VT,
5728                                    DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5729     }
5730     return Op;
5731   }
5732   case ISD::CTLZ: {
5733     // for now, we do this:
5734     // x = x | (x >> 1);
5735     // x = x | (x >> 2);
5736     // ...
5737     // x = x | (x >>16);
5738     // x = x | (x >>32); // for 64-bit input
5739     // return popcount(~x);
5740     //
5741     // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5742     MVT VT = Op.getValueType();
5743     MVT ShVT = TLI.getShiftAmountTy();
5744     unsigned len = VT.getSizeInBits();
5745     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5746       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5747       Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5748     }
5749     Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5750     return DAG.getNode(ISD::CTPOP, VT, Op);
5751   }
5752   case ISD::CTTZ: {
5753     // for now, we use: { return popcount(~x & (x - 1)); }
5754     // unless the target has ctlz but not ctpop, in which case we use:
5755     // { return 32 - nlz(~x & (x-1)); }
5756     // see also http://www.hackersdelight.org/HDcode/ntz.cc
5757     MVT VT = Op.getValueType();
5758     SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5759     SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5760                        DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5761                        DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5762     // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5763     if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5764         TLI.isOperationLegal(ISD::CTLZ, VT))
5765       return DAG.getNode(ISD::SUB, VT,
5766                          DAG.getConstant(VT.getSizeInBits(), VT),
5767                          DAG.getNode(ISD::CTLZ, VT, Tmp3));
5768     return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5769   }
5770   }
5771 }
5772
5773 /// ExpandOp - Expand the specified SDOperand into its two component pieces
5774 /// Lo&Hi.  Note that the Op MUST be an expanded type.  As a result of this, the
5775 /// LegalizeNodes map is filled in for any results that are not expanded, the
5776 /// ExpandedNodes map is filled in for any results that are expanded, and the
5777 /// Lo/Hi values are returned.
5778 void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5779   MVT VT = Op.getValueType();
5780   MVT NVT = TLI.getTypeToTransformTo(VT);
5781   SDNode *Node = Op.Val;
5782   assert(getTypeAction(VT) == Expand && "Not an expanded type!");
5783   assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
5784          VT.isVector()) && "Cannot expand to FP value or to larger int value!");
5785
5786   // See if we already expanded it.
5787   DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5788     = ExpandedNodes.find(Op);
5789   if (I != ExpandedNodes.end()) {
5790     Lo = I->second.first;
5791     Hi = I->second.second;
5792     return;
5793   }
5794
5795   switch (Node->getOpcode()) {
5796   case ISD::CopyFromReg:
5797     assert(0 && "CopyFromReg must be legal!");
5798   case ISD::FP_ROUND_INREG:
5799     if (VT == MVT::ppcf128 && 
5800         TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) == 
5801             TargetLowering::Custom) {
5802       SDOperand SrcLo, SrcHi, Src;
5803       ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5804       Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5805       SDOperand Result = TLI.LowerOperation(
5806         DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
5807       assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5808       Lo = Result.Val->getOperand(0);
5809       Hi = Result.Val->getOperand(1);
5810       break;
5811     }
5812     // fall through
5813   default:
5814 #ifndef NDEBUG
5815     cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
5816 #endif
5817     assert(0 && "Do not know how to expand this operator!");
5818     abort();
5819   case ISD::EXTRACT_ELEMENT:
5820     ExpandOp(Node->getOperand(0), Lo, Hi);
5821     if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5822       return ExpandOp(Hi, Lo, Hi);
5823     return ExpandOp(Lo, Lo, Hi);
5824   case ISD::EXTRACT_VECTOR_ELT:
5825     assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5826     // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5827     Lo  = ExpandEXTRACT_VECTOR_ELT(Op);
5828     return ExpandOp(Lo, Lo, Hi);
5829   case ISD::UNDEF:
5830     Lo = DAG.getNode(ISD::UNDEF, NVT);
5831     Hi = DAG.getNode(ISD::UNDEF, NVT);
5832     break;
5833   case ISD::Constant: {
5834     unsigned NVTBits = NVT.getSizeInBits();
5835     const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5836     Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5837     Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
5838     break;
5839   }
5840   case ISD::ConstantFP: {
5841     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
5842     if (CFP->getValueType(0) == MVT::ppcf128) {
5843       APInt api = CFP->getValueAPF().convertToAPInt();
5844       Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5845                              MVT::f64);
5846       Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])), 
5847                              MVT::f64);
5848       break;
5849     }
5850     Lo = ExpandConstantFP(CFP, false, DAG, TLI);
5851     if (getTypeAction(Lo.getValueType()) == Expand)
5852       ExpandOp(Lo, Lo, Hi);
5853     break;
5854   }
5855   case ISD::BUILD_PAIR:
5856     // Return the operands.
5857     Lo = Node->getOperand(0);
5858     Hi = Node->getOperand(1);
5859     break;
5860       
5861   case ISD::MERGE_VALUES:
5862     if (Node->getNumValues() == 1) {
5863       ExpandOp(Op.getOperand(0), Lo, Hi);
5864       break;
5865     }
5866     // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5867     assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5868            Op.getValue(1).getValueType() == MVT::Other &&
5869            "unhandled MERGE_VALUES");
5870     ExpandOp(Op.getOperand(0), Lo, Hi);
5871     // Remember that we legalized the chain.
5872     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5873     break;
5874     
5875   case ISD::SIGN_EXTEND_INREG:
5876     ExpandOp(Node->getOperand(0), Lo, Hi);
5877     // sext_inreg the low part if needed.
5878     Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5879     
5880     // The high part gets the sign extension from the lo-part.  This handles
5881     // things like sextinreg V:i64 from i8.
5882     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5883                      DAG.getConstant(NVT.getSizeInBits()-1,
5884                                      TLI.getShiftAmountTy()));
5885     break;
5886
5887   case ISD::BSWAP: {
5888     ExpandOp(Node->getOperand(0), Lo, Hi);
5889     SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5890     Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5891     Lo = TempLo;
5892     break;
5893   }
5894     
5895   case ISD::CTPOP:
5896     ExpandOp(Node->getOperand(0), Lo, Hi);
5897     Lo = DAG.getNode(ISD::ADD, NVT,          // ctpop(HL) -> ctpop(H)+ctpop(L)
5898                      DAG.getNode(ISD::CTPOP, NVT, Lo),
5899                      DAG.getNode(ISD::CTPOP, NVT, Hi));
5900     Hi = DAG.getConstant(0, NVT);
5901     break;
5902
5903   case ISD::CTLZ: {
5904     // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
5905     ExpandOp(Node->getOperand(0), Lo, Hi);
5906     SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5907     SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5908     SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
5909                                         ISD::SETNE);
5910     SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5911     LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5912
5913     Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5914     Hi = DAG.getConstant(0, NVT);
5915     break;
5916   }
5917
5918   case ISD::CTTZ: {
5919     // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
5920     ExpandOp(Node->getOperand(0), Lo, Hi);
5921     SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5922     SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5923     SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
5924                                         ISD::SETNE);
5925     SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5926     HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5927
5928     Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5929     Hi = DAG.getConstant(0, NVT);
5930     break;
5931   }
5932
5933   case ISD::VAARG: {
5934     SDOperand Ch = Node->getOperand(0);   // Legalize the chain.
5935     SDOperand Ptr = Node->getOperand(1);  // Legalize the pointer.
5936     Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5937     Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5938
5939     // Remember that we legalized the chain.
5940     Hi = LegalizeOp(Hi);
5941     AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5942     if (TLI.isBigEndian())
5943       std::swap(Lo, Hi);
5944     break;
5945   }
5946     
5947   case ISD::LOAD: {
5948     LoadSDNode *LD = cast<LoadSDNode>(Node);
5949     SDOperand Ch  = LD->getChain();    // Legalize the chain.
5950     SDOperand Ptr = LD->getBasePtr();  // Legalize the pointer.
5951     ISD::LoadExtType ExtType = LD->getExtensionType();
5952     int SVOffset = LD->getSrcValueOffset();
5953     unsigned Alignment = LD->getAlignment();
5954     bool isVolatile = LD->isVolatile();
5955
5956     if (ExtType == ISD::NON_EXTLOAD) {
5957       Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5958                        isVolatile, Alignment);
5959       if (VT == MVT::f32 || VT == MVT::f64) {
5960         // f32->i32 or f64->i64 one to one expansion.
5961         // Remember that we legalized the chain.
5962         AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5963         // Recursively expand the new load.
5964         if (getTypeAction(NVT) == Expand)
5965           ExpandOp(Lo, Lo, Hi);
5966         break;
5967       }
5968
5969       // Increment the pointer to the other half.
5970       unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
5971       Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5972                         DAG.getIntPtrConstant(IncrementSize));
5973       SVOffset += IncrementSize;
5974       Alignment = MinAlign(Alignment, IncrementSize);
5975       Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5976                        isVolatile, Alignment);
5977
5978       // Build a factor node to remember that this load is independent of the
5979       // other one.
5980       SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5981                                  Hi.getValue(1));
5982
5983       // Remember that we legalized the chain.
5984       AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5985       if (TLI.isBigEndian())
5986         std::swap(Lo, Hi);
5987     } else {
5988       MVT EVT = LD->getMemoryVT();
5989
5990       if ((VT == MVT::f64 && EVT == MVT::f32) ||
5991           (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
5992         // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5993         SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
5994                                      SVOffset, isVolatile, Alignment);
5995         // Remember that we legalized the chain.
5996         AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5997         ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5998         break;
5999       }
6000     
6001       if (EVT == NVT)
6002         Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
6003                          SVOffset, isVolatile, Alignment);
6004       else
6005         Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
6006                             SVOffset, EVT, isVolatile,
6007                             Alignment);
6008     
6009       // Remember that we legalized the chain.
6010       AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6011
6012       if (ExtType == ISD::SEXTLOAD) {
6013         // The high part is obtained by SRA'ing all but one of the bits of the
6014         // lo part.
6015         unsigned LoSize = Lo.getValueType().getSizeInBits();
6016         Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6017                          DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6018       } else if (ExtType == ISD::ZEXTLOAD) {
6019         // The high part is just a zero.
6020         Hi = DAG.getConstant(0, NVT);
6021       } else /* if (ExtType == ISD::EXTLOAD) */ {
6022         // The high part is undefined.
6023         Hi = DAG.getNode(ISD::UNDEF, NVT);
6024       }
6025     }
6026     break;
6027   }
6028   case ISD::AND:
6029   case ISD::OR:
6030   case ISD::XOR: {   // Simple logical operators -> two trivial pieces.
6031     SDOperand LL, LH, RL, RH;
6032     ExpandOp(Node->getOperand(0), LL, LH);
6033     ExpandOp(Node->getOperand(1), RL, RH);
6034     Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6035     Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6036     break;
6037   }
6038   case ISD::SELECT: {
6039     SDOperand LL, LH, RL, RH;
6040     ExpandOp(Node->getOperand(1), LL, LH);
6041     ExpandOp(Node->getOperand(2), RL, RH);
6042     if (getTypeAction(NVT) == Expand)
6043       NVT = TLI.getTypeToExpandTo(NVT);
6044     Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
6045     if (VT != MVT::f32)
6046       Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
6047     break;
6048   }
6049   case ISD::SELECT_CC: {
6050     SDOperand TL, TH, FL, FH;
6051     ExpandOp(Node->getOperand(2), TL, TH);
6052     ExpandOp(Node->getOperand(3), FL, FH);
6053     if (getTypeAction(NVT) == Expand)
6054       NVT = TLI.getTypeToExpandTo(NVT);
6055     Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6056                      Node->getOperand(1), TL, FL, Node->getOperand(4));
6057     if (VT != MVT::f32)
6058       Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6059                        Node->getOperand(1), TH, FH, Node->getOperand(4));
6060     break;
6061   }
6062   case ISD::ANY_EXTEND:
6063     // The low part is any extension of the input (which degenerates to a copy).
6064     Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6065     // The high part is undefined.
6066     Hi = DAG.getNode(ISD::UNDEF, NVT);
6067     break;
6068   case ISD::SIGN_EXTEND: {
6069     // The low part is just a sign extension of the input (which degenerates to
6070     // a copy).
6071     Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
6072
6073     // The high part is obtained by SRA'ing all but one of the bits of the lo
6074     // part.
6075     unsigned LoSize = Lo.getValueType().getSizeInBits();
6076     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6077                      DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6078     break;
6079   }
6080   case ISD::ZERO_EXTEND:
6081     // The low part is just a zero extension of the input (which degenerates to
6082     // a copy).
6083     Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
6084
6085     // The high part is just a zero.
6086     Hi = DAG.getConstant(0, NVT);
6087     break;
6088     
6089   case ISD::TRUNCATE: {
6090     // The input value must be larger than this value.  Expand *it*.
6091     SDOperand NewLo;
6092     ExpandOp(Node->getOperand(0), NewLo, Hi);
6093     
6094     // The low part is now either the right size, or it is closer.  If not the
6095     // right size, make an illegal truncate so we recursively expand it.
6096     if (NewLo.getValueType() != Node->getValueType(0))
6097       NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6098     ExpandOp(NewLo, Lo, Hi);
6099     break;
6100   }
6101     
6102   case ISD::BIT_CONVERT: {
6103     SDOperand Tmp;
6104     if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6105       // If the target wants to, allow it to lower this itself.
6106       switch (getTypeAction(Node->getOperand(0).getValueType())) {
6107       case Expand: assert(0 && "cannot expand FP!");
6108       case Legal:   Tmp = LegalizeOp(Node->getOperand(0)); break;
6109       case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6110       }
6111       Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6112     }
6113
6114     // f32 / f64 must be expanded to i32 / i64.
6115     if (VT == MVT::f32 || VT == MVT::f64) {
6116       Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6117       if (getTypeAction(NVT) == Expand)
6118         ExpandOp(Lo, Lo, Hi);
6119       break;
6120     }
6121
6122     // If source operand will be expanded to the same type as VT, i.e.
6123     // i64 <- f64, i32 <- f32, expand the source operand instead.
6124     MVT VT0 = Node->getOperand(0).getValueType();
6125     if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6126       ExpandOp(Node->getOperand(0), Lo, Hi);
6127       break;
6128     }
6129
6130     // Turn this into a load/store pair by default.
6131     if (Tmp.Val == 0)
6132       Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
6133     
6134     ExpandOp(Tmp, Lo, Hi);
6135     break;
6136   }
6137
6138   case ISD::READCYCLECOUNTER: {
6139     assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == 
6140                  TargetLowering::Custom &&
6141            "Must custom expand ReadCycleCounter");
6142     SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6143     assert(Tmp.Val && "Node must be custom expanded!");
6144     ExpandOp(Tmp.getValue(0), Lo, Hi);
6145     AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6146                         LegalizeOp(Tmp.getValue(1)));
6147     break;
6148   }
6149
6150   case ISD::ATOMIC_CMP_SWAP: {
6151     SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6152     assert(Tmp.Val && "Node must be custom expanded!");
6153     ExpandOp(Tmp.getValue(0), Lo, Hi);
6154     AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6155                         LegalizeOp(Tmp.getValue(1)));
6156     break;
6157   }
6158
6159
6160
6161     // These operators cannot be expanded directly, emit them as calls to
6162     // library functions.
6163   case ISD::FP_TO_SINT: {
6164     if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
6165       SDOperand Op;
6166       switch (getTypeAction(Node->getOperand(0).getValueType())) {
6167       case Expand: assert(0 && "cannot expand FP!");
6168       case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
6169       case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6170       }
6171
6172       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6173
6174       // Now that the custom expander is done, expand the result, which is still
6175       // VT.
6176       if (Op.Val) {
6177         ExpandOp(Op, Lo, Hi);
6178         break;
6179       }
6180     }
6181
6182     RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6183     if (VT == MVT::i64) {
6184       if (Node->getOperand(0).getValueType() == MVT::f32)
6185         LC = RTLIB::FPTOSINT_F32_I64;
6186       else if (Node->getOperand(0).getValueType() == MVT::f64)
6187         LC = RTLIB::FPTOSINT_F64_I64;
6188       else if (Node->getOperand(0).getValueType() == MVT::f80)
6189         LC = RTLIB::FPTOSINT_F80_I64;
6190       else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6191         LC = RTLIB::FPTOSINT_PPCF128_I64;
6192       Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
6193     } else if (VT == MVT::i128) {
6194       if (Node->getOperand(0).getValueType() == MVT::f32)
6195         LC = RTLIB::FPTOSINT_F32_I128;
6196       else if (Node->getOperand(0).getValueType() == MVT::f64)
6197         LC = RTLIB::FPTOSINT_F64_I128;
6198       else if (Node->getOperand(0).getValueType() == MVT::f80)
6199         LC = RTLIB::FPTOSINT_F80_I128;
6200       else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6201         LC = RTLIB::FPTOSINT_PPCF128_I128;
6202       Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
6203     } else {
6204       assert(0 && "Unexpected uint-to-fp conversion!");
6205     }
6206     break;
6207   }
6208
6209   case ISD::FP_TO_UINT: {
6210     if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
6211       SDOperand Op;
6212       switch (getTypeAction(Node->getOperand(0).getValueType())) {
6213         case Expand: assert(0 && "cannot expand FP!");
6214         case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
6215         case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6216       }
6217         
6218       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6219
6220       // Now that the custom expander is done, expand the result.
6221       if (Op.Val) {
6222         ExpandOp(Op, Lo, Hi);
6223         break;
6224       }
6225     }
6226
6227     RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6228     if (VT == MVT::i64) {
6229       if (Node->getOperand(0).getValueType() == MVT::f32)
6230         LC = RTLIB::FPTOUINT_F32_I64;
6231       else if (Node->getOperand(0).getValueType() == MVT::f64)
6232         LC = RTLIB::FPTOUINT_F64_I64;
6233       else if (Node->getOperand(0).getValueType() == MVT::f80)
6234         LC = RTLIB::FPTOUINT_F80_I64;
6235       else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6236         LC = RTLIB::FPTOUINT_PPCF128_I64;
6237       Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
6238     } else if (VT == MVT::i128) {
6239       if (Node->getOperand(0).getValueType() == MVT::f32)
6240         LC = RTLIB::FPTOUINT_F32_I128;
6241       else if (Node->getOperand(0).getValueType() == MVT::f64)
6242         LC = RTLIB::FPTOUINT_F64_I128;
6243       else if (Node->getOperand(0).getValueType() == MVT::f80)
6244         LC = RTLIB::FPTOUINT_F80_I128;
6245       else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6246         LC = RTLIB::FPTOUINT_PPCF128_I128;
6247       Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
6248     } else {
6249       assert(0 && "Unexpected uint-to-fp conversion!");
6250     }
6251     break;
6252   }
6253
6254   case ISD::SHL: {
6255     // If the target wants custom lowering, do so.
6256     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
6257     if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
6258       SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
6259       Op = TLI.LowerOperation(Op, DAG);
6260       if (Op.Val) {
6261         // Now that the custom expander is done, expand the result, which is
6262         // still VT.
6263         ExpandOp(Op, Lo, Hi);
6264         break;
6265       }
6266     }
6267     
6268     // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit 
6269     // this X << 1 as X+X.
6270     if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
6271       if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) && 
6272           TLI.isOperationLegal(ISD::ADDE, NVT)) {
6273         SDOperand LoOps[2], HiOps[3];
6274         ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6275         SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6276         LoOps[1] = LoOps[0];
6277         Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6278
6279         HiOps[1] = HiOps[0];
6280         HiOps[2] = Lo.getValue(1);
6281         Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6282         break;
6283       }
6284     }
6285     
6286     // If we can emit an efficient shift operation, do so now.
6287     if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6288       break;
6289
6290     // If this target supports SHL_PARTS, use it.
6291     TargetLowering::LegalizeAction Action =
6292       TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6293     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6294         Action == TargetLowering::Custom) {
6295       ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6296       break;
6297     }
6298
6299     // Otherwise, emit a libcall.
6300     Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
6301     break;
6302   }
6303
6304   case ISD::SRA: {
6305     // If the target wants custom lowering, do so.
6306     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
6307     if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
6308       SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
6309       Op = TLI.LowerOperation(Op, DAG);
6310       if (Op.Val) {
6311         // Now that the custom expander is done, expand the result, which is
6312         // still VT.
6313         ExpandOp(Op, Lo, Hi);
6314         break;
6315       }
6316     }
6317     
6318     // If we can emit an efficient shift operation, do so now.
6319     if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
6320       break;
6321
6322     // If this target supports SRA_PARTS, use it.
6323     TargetLowering::LegalizeAction Action =
6324       TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6325     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6326         Action == TargetLowering::Custom) {
6327       ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6328       break;
6329     }
6330
6331     // Otherwise, emit a libcall.
6332     Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
6333     break;
6334   }
6335
6336   case ISD::SRL: {
6337     // If the target wants custom lowering, do so.
6338     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
6339     if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
6340       SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
6341       Op = TLI.LowerOperation(Op, DAG);
6342       if (Op.Val) {
6343         // Now that the custom expander is done, expand the result, which is
6344         // still VT.
6345         ExpandOp(Op, Lo, Hi);
6346         break;
6347       }
6348     }
6349
6350     // If we can emit an efficient shift operation, do so now.
6351     if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6352       break;
6353
6354     // If this target supports SRL_PARTS, use it.
6355     TargetLowering::LegalizeAction Action =
6356       TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6357     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6358         Action == TargetLowering::Custom) {
6359       ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6360       break;
6361     }
6362
6363     // Otherwise, emit a libcall.
6364     Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
6365     break;
6366   }
6367
6368   case ISD::ADD:
6369   case ISD::SUB: {
6370     // If the target wants to custom expand this, let them.
6371     if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6372             TargetLowering::Custom) {
6373       SDOperand Result = TLI.LowerOperation(Op, DAG);
6374       if (Result.Val) {
6375         ExpandOp(Result, Lo, Hi);
6376         break;
6377       }
6378     }
6379     
6380     // Expand the subcomponents.
6381     SDOperand LHSL, LHSH, RHSL, RHSH;
6382     ExpandOp(Node->getOperand(0), LHSL, LHSH);
6383     ExpandOp(Node->getOperand(1), RHSL, RHSH);
6384     SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6385     SDOperand LoOps[2], HiOps[3];
6386     LoOps[0] = LHSL;
6387     LoOps[1] = RHSL;
6388     HiOps[0] = LHSH;
6389     HiOps[1] = RHSH;
6390     if (Node->getOpcode() == ISD::ADD) {
6391       Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6392       HiOps[2] = Lo.getValue(1);
6393       Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6394     } else {
6395       Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6396       HiOps[2] = Lo.getValue(1);
6397       Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6398     }
6399     break;
6400   }
6401     
6402   case ISD::ADDC:
6403   case ISD::SUBC: {
6404     // Expand the subcomponents.
6405     SDOperand LHSL, LHSH, RHSL, RHSH;
6406     ExpandOp(Node->getOperand(0), LHSL, LHSH);
6407     ExpandOp(Node->getOperand(1), RHSL, RHSH);
6408     SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6409     SDOperand LoOps[2] = { LHSL, RHSL };
6410     SDOperand HiOps[3] = { LHSH, RHSH };
6411     
6412     if (Node->getOpcode() == ISD::ADDC) {
6413       Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6414       HiOps[2] = Lo.getValue(1);
6415       Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6416     } else {
6417       Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6418       HiOps[2] = Lo.getValue(1);
6419       Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6420     }
6421     // Remember that we legalized the flag.
6422     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6423     break;
6424   }
6425   case ISD::ADDE:
6426   case ISD::SUBE: {
6427     // Expand the subcomponents.
6428     SDOperand LHSL, LHSH, RHSL, RHSH;
6429     ExpandOp(Node->getOperand(0), LHSL, LHSH);
6430     ExpandOp(Node->getOperand(1), RHSL, RHSH);
6431     SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6432     SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6433     SDOperand HiOps[3] = { LHSH, RHSH };
6434     
6435     Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6436     HiOps[2] = Lo.getValue(1);
6437     Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6438     
6439     // Remember that we legalized the flag.
6440     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6441     break;
6442   }
6443   case ISD::MUL: {
6444     // If the target wants to custom expand this, let them.
6445     if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
6446       SDOperand New = TLI.LowerOperation(Op, DAG);
6447       if (New.Val) {
6448         ExpandOp(New, Lo, Hi);
6449         break;
6450       }
6451     }
6452     
6453     bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6454     bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
6455     bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6456     bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6457     if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
6458       SDOperand LL, LH, RL, RH;
6459       ExpandOp(Node->getOperand(0), LL, LH);
6460       ExpandOp(Node->getOperand(1), RL, RH);
6461       unsigned OuterBitSize = Op.getValueSizeInBits();
6462       unsigned InnerBitSize = RH.getValueSizeInBits();
6463       unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6464       unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
6465       APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6466       if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6467           DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
6468         // The inputs are both zero-extended.
6469         if (HasUMUL_LOHI) {
6470           // We can emit a umul_lohi.
6471           Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6472           Hi = SDOperand(Lo.Val, 1);
6473           break;
6474         }
6475         if (HasMULHU) {
6476           // We can emit a mulhu+mul.
6477           Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6478           Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6479           break;
6480         }
6481       }
6482       if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
6483         // The input values are both sign-extended.
6484         if (HasSMUL_LOHI) {
6485           // We can emit a smul_lohi.
6486           Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6487           Hi = SDOperand(Lo.Val, 1);
6488           break;
6489         }
6490         if (HasMULHS) {
6491           // We can emit a mulhs+mul.
6492           Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6493           Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6494           break;
6495         }
6496       }
6497       if (HasUMUL_LOHI) {
6498         // Lo,Hi = umul LHS, RHS.
6499         SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6500                                          DAG.getVTList(NVT, NVT), LL, RL);
6501         Lo = UMulLOHI;
6502         Hi = UMulLOHI.getValue(1);
6503         RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6504         LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6505         Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6506         Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6507         break;
6508       }
6509       if (HasMULHU) {
6510         Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6511         Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6512         RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6513         LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6514         Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6515         Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6516         break;
6517       }
6518     }
6519
6520     // If nothing else, we can make a libcall.
6521     Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
6522     break;
6523   }
6524   case ISD::SDIV:
6525     Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
6526     break;
6527   case ISD::UDIV:
6528     Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
6529     break;
6530   case ISD::SREM:
6531     Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
6532     break;
6533   case ISD::UREM:
6534     Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
6535     break;
6536
6537   case ISD::FADD:
6538     Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6539                                         RTLIB::ADD_F64,
6540                                         RTLIB::ADD_F80,
6541                                         RTLIB::ADD_PPCF128),
6542                        Node, false, Hi);
6543     break;
6544   case ISD::FSUB:
6545     Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6546                                         RTLIB::SUB_F64,
6547                                         RTLIB::SUB_F80,
6548                                         RTLIB::SUB_PPCF128),
6549                        Node, false, Hi);
6550     break;
6551   case ISD::FMUL:
6552     Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6553                                         RTLIB::MUL_F64,
6554                                         RTLIB::MUL_F80,
6555                                         RTLIB::MUL_PPCF128),
6556                        Node, false, Hi);
6557     break;
6558   case ISD::FDIV:
6559     Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6560                                         RTLIB::DIV_F64,
6561                                         RTLIB::DIV_F80,
6562                                         RTLIB::DIV_PPCF128),
6563                        Node, false, Hi);
6564     break;
6565   case ISD::FP_EXTEND:
6566     if (VT == MVT::ppcf128) {
6567       assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6568              Node->getOperand(0).getValueType()==MVT::f64);
6569       const uint64_t zero = 0;
6570       if (Node->getOperand(0).getValueType()==MVT::f32)
6571         Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6572       else
6573         Hi = Node->getOperand(0);
6574       Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6575       break;
6576     }
6577     Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
6578     break;
6579   case ISD::FP_ROUND:
6580     Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
6581     break;
6582   case ISD::FPOWI:
6583     Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6584                                         RTLIB::POWI_F64,
6585                                         RTLIB::POWI_F80,
6586                                         RTLIB::POWI_PPCF128),
6587                        Node, false, Hi);
6588     break;
6589   case ISD::FSQRT:
6590   case ISD::FSIN:
6591   case ISD::FCOS: {
6592     RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6593     switch(Node->getOpcode()) {
6594     case ISD::FSQRT:
6595       LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6596                         RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
6597       break;
6598     case ISD::FSIN:
6599       LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6600                         RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
6601       break;
6602     case ISD::FCOS:
6603       LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6604                         RTLIB::COS_F80, RTLIB::COS_PPCF128);
6605       break;
6606     default: assert(0 && "Unreachable!");
6607     }
6608     Lo = ExpandLibCall(LC, Node, false, Hi);
6609     break;
6610   }
6611   case ISD::FABS: {
6612     if (VT == MVT::ppcf128) {
6613       SDOperand Tmp;
6614       ExpandOp(Node->getOperand(0), Lo, Tmp);
6615       Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6616       // lo = hi==fabs(hi) ? lo : -lo;
6617       Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6618                     Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6619                     DAG.getCondCode(ISD::SETEQ));
6620       break;
6621     }
6622     SDOperand Mask = (VT == MVT::f64)
6623       ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6624       : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6625     Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6626     Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6627     Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6628     if (getTypeAction(NVT) == Expand)
6629       ExpandOp(Lo, Lo, Hi);
6630     break;
6631   }
6632   case ISD::FNEG: {
6633     if (VT == MVT::ppcf128) {
6634       ExpandOp(Node->getOperand(0), Lo, Hi);
6635       Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6636       Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6637       break;
6638     }
6639     SDOperand Mask = (VT == MVT::f64)
6640       ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6641       : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6642     Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6643     Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6644     Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6645     if (getTypeAction(NVT) == Expand)
6646       ExpandOp(Lo, Lo, Hi);
6647     break;
6648   }
6649   case ISD::FCOPYSIGN: {
6650     Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6651     if (getTypeAction(NVT) == Expand)
6652       ExpandOp(Lo, Lo, Hi);
6653     break;
6654   }
6655   case ISD::SINT_TO_FP:
6656   case ISD::UINT_TO_FP: {
6657     bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6658     MVT SrcVT = Node->getOperand(0).getValueType();
6659
6660     // Promote the operand if needed.  Do this before checking for
6661     // ppcf128 so conversions of i16 and i8 work.
6662     if (getTypeAction(SrcVT) == Promote) {
6663       SDOperand Tmp = PromoteOp(Node->getOperand(0));
6664       Tmp = isSigned
6665         ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6666                       DAG.getValueType(SrcVT))
6667         : DAG.getZeroExtendInReg(Tmp, SrcVT);
6668       Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6669       SrcVT = Node->getOperand(0).getValueType();
6670     }
6671
6672     if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
6673       static const uint64_t zero = 0;
6674       if (isSigned) {
6675         Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, 
6676                                     Node->getOperand(0)));
6677         Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6678       } else {
6679         static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
6680         Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, 
6681                                     Node->getOperand(0)));
6682         Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6683         Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6684         // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
6685         ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6686                              DAG.getConstant(0, MVT::i32), 
6687                              DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6688                                          DAG.getConstantFP(
6689                                             APFloat(APInt(128, 2, TwoE32)),
6690                                             MVT::ppcf128)),
6691                              Hi,
6692                              DAG.getCondCode(ISD::SETLT)),
6693                  Lo, Hi);
6694       }
6695       break;
6696     }
6697     if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6698       // si64->ppcf128 done by libcall, below
6699       static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
6700       ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6701                Lo, Hi);
6702       Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6703       // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6704       ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6705                            DAG.getConstant(0, MVT::i64), 
6706                            DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6707                                        DAG.getConstantFP(
6708                                           APFloat(APInt(128, 2, TwoE64)),
6709                                           MVT::ppcf128)),
6710                            Hi,
6711                            DAG.getCondCode(ISD::SETLT)),
6712                Lo, Hi);
6713       break;
6714     }
6715
6716     Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6717                        Node->getOperand(0));
6718     if (getTypeAction(Lo.getValueType()) == Expand)
6719       // float to i32 etc. can be 'expanded' to a single node.
6720       ExpandOp(Lo, Lo, Hi);
6721     break;
6722   }
6723   }
6724
6725   // Make sure the resultant values have been legalized themselves, unless this
6726   // is a type that requires multi-step expansion.
6727   if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6728     Lo = LegalizeOp(Lo);
6729     if (Hi.Val)
6730       // Don't legalize the high part if it is expanded to a single node.
6731       Hi = LegalizeOp(Hi);
6732   }
6733
6734   // Remember in a map if the values will be reused later.
6735   bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
6736   assert(isNew && "Value already expanded?!?");
6737 }
6738
6739 /// SplitVectorOp - Given an operand of vector type, break it down into
6740 /// two smaller values, still of vector type.
6741 void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6742                                          SDOperand &Hi) {
6743   assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
6744   SDNode *Node = Op.Val;
6745   unsigned NumElements = Op.getValueType().getVectorNumElements();
6746   assert(NumElements > 1 && "Cannot split a single element vector!");
6747
6748   MVT NewEltVT = Op.getValueType().getVectorElementType();
6749
6750   unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6751   unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6752
6753   MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6754   MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
6755
6756   // See if we already split it.
6757   std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6758     = SplitNodes.find(Op);
6759   if (I != SplitNodes.end()) {
6760     Lo = I->second.first;
6761     Hi = I->second.second;
6762     return;
6763   }
6764   
6765   switch (Node->getOpcode()) {
6766   default: 
6767 #ifndef NDEBUG
6768     Node->dump(&DAG);
6769 #endif
6770     assert(0 && "Unhandled operation in SplitVectorOp!");
6771   case ISD::UNDEF:
6772     Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6773     Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6774     break;
6775   case ISD::BUILD_PAIR:
6776     Lo = Node->getOperand(0);
6777     Hi = Node->getOperand(1);
6778     break;
6779   case ISD::INSERT_VECTOR_ELT: {
6780     if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6781       SplitVectorOp(Node->getOperand(0), Lo, Hi);
6782       unsigned Index = Idx->getValue();
6783       SDOperand ScalarOp = Node->getOperand(1);
6784       if (Index < NewNumElts_Lo)
6785         Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6786                          DAG.getIntPtrConstant(Index));
6787       else
6788         Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6789                          DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6790       break;
6791     }
6792     SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6793                                                    Node->getOperand(1),
6794                                                    Node->getOperand(2));
6795     SplitVectorOp(Tmp, Lo, Hi);
6796     break;
6797   }
6798   case ISD::VECTOR_SHUFFLE: {
6799     // Build the low part.
6800     SDOperand Mask = Node->getOperand(2);
6801     SmallVector<SDOperand, 8> Ops;
6802     MVT PtrVT = TLI.getPointerTy();
6803     
6804     // Insert all of the elements from the input that are needed.  We use 
6805     // buildvector of extractelement here because the input vectors will have
6806     // to be legalized, so this makes the code simpler.
6807     for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
6808       SDOperand IdxNode = Mask.getOperand(i);
6809       if (IdxNode.getOpcode() == ISD::UNDEF) {
6810         Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6811         continue;
6812       }
6813       unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
6814       SDOperand InVec = Node->getOperand(0);
6815       if (Idx >= NumElements) {
6816         InVec = Node->getOperand(1);
6817         Idx -= NumElements;
6818       }
6819       Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6820                                 DAG.getConstant(Idx, PtrVT)));
6821     }
6822     Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6823     Ops.clear();
6824     
6825     for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
6826       SDOperand IdxNode = Mask.getOperand(i);
6827       if (IdxNode.getOpcode() == ISD::UNDEF) {
6828         Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6829         continue;
6830       }
6831       unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
6832       SDOperand InVec = Node->getOperand(0);
6833       if (Idx >= NumElements) {
6834         InVec = Node->getOperand(1);
6835         Idx -= NumElements;
6836       }
6837       Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6838                                 DAG.getConstant(Idx, PtrVT)));
6839     }
6840     Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6841     break;
6842   }
6843   case ISD::BUILD_VECTOR: {
6844     SmallVector<SDOperand, 8> LoOps(Node->op_begin(), 
6845                                     Node->op_begin()+NewNumElts_Lo);
6846     Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
6847
6848     SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo, 
6849                                     Node->op_end());
6850     Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
6851     break;
6852   }
6853   case ISD::CONCAT_VECTORS: {
6854     // FIXME: Handle non-power-of-two vectors?
6855     unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6856     if (NewNumSubvectors == 1) {
6857       Lo = Node->getOperand(0);
6858       Hi = Node->getOperand(1);
6859     } else {
6860       SmallVector<SDOperand, 8> LoOps(Node->op_begin(), 
6861                                       Node->op_begin()+NewNumSubvectors);
6862       Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
6863
6864       SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors, 
6865                                       Node->op_end());
6866       Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
6867     }
6868     break;
6869   }
6870   case ISD::SELECT: {
6871     SDOperand Cond = Node->getOperand(0);
6872
6873     SDOperand LL, LH, RL, RH;
6874     SplitVectorOp(Node->getOperand(1), LL, LH);
6875     SplitVectorOp(Node->getOperand(2), RL, RH);
6876
6877     if (Cond.getValueType().isVector()) {
6878       // Handle a vector merge.
6879       SDOperand CL, CH;
6880       SplitVectorOp(Cond, CL, CH);
6881       Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6882       Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
6883     } else {
6884       // Handle a simple select with vector operands.
6885       Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6886       Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
6887     }
6888     break;
6889   }
6890   case ISD::SELECT_CC: {
6891     SDOperand CondLHS = Node->getOperand(0);
6892     SDOperand CondRHS = Node->getOperand(1);
6893     SDOperand CondCode = Node->getOperand(4);
6894     
6895     SDOperand LL, LH, RL, RH;
6896     SplitVectorOp(Node->getOperand(2), LL, LH);
6897     SplitVectorOp(Node->getOperand(3), RL, RH);
6898     
6899     // Handle a simple select with vector operands.
6900     Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6901                      LL, RL, CondCode);
6902     Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS, 
6903                      LH, RH, CondCode);
6904     break;
6905   }
6906   case ISD::VSETCC: {
6907     SDOperand LL, LH, RL, RH;
6908     SplitVectorOp(Node->getOperand(0), LL, LH);
6909     SplitVectorOp(Node->getOperand(1), RL, RH);
6910     Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6911     Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6912     break;
6913   }
6914   case ISD::ADD:
6915   case ISD::SUB:
6916   case ISD::MUL:
6917   case ISD::FADD:
6918   case ISD::FSUB:
6919   case ISD::FMUL:
6920   case ISD::SDIV:
6921   case ISD::UDIV:
6922   case ISD::FDIV:
6923   case ISD::FPOW:
6924   case ISD::AND:
6925   case ISD::OR:
6926   case ISD::XOR:
6927   case ISD::UREM:
6928   case ISD::SREM:
6929   case ISD::FREM: {
6930     SDOperand LL, LH, RL, RH;
6931     SplitVectorOp(Node->getOperand(0), LL, LH);
6932     SplitVectorOp(Node->getOperand(1), RL, RH);
6933     
6934     Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6935     Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
6936     break;
6937   }
6938   case ISD::FPOWI: {
6939     SDOperand L, H;
6940     SplitVectorOp(Node->getOperand(0), L, H);
6941
6942     Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6943     Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
6944     break;
6945   }
6946   case ISD::CTTZ:
6947   case ISD::CTLZ:
6948   case ISD::CTPOP:
6949   case ISD::FNEG:
6950   case ISD::FABS:
6951   case ISD::FSQRT:
6952   case ISD::FSIN:
6953   case ISD::FCOS:
6954   case ISD::FP_TO_SINT:
6955   case ISD::FP_TO_UINT:
6956   case ISD::SINT_TO_FP:
6957   case ISD::UINT_TO_FP: {
6958     SDOperand L, H;
6959     SplitVectorOp(Node->getOperand(0), L, H);
6960
6961     Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6962     Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
6963     break;
6964   }
6965   case ISD::LOAD: {
6966     LoadSDNode *LD = cast<LoadSDNode>(Node);
6967     SDOperand Ch = LD->getChain();
6968     SDOperand Ptr = LD->getBasePtr();
6969     const Value *SV = LD->getSrcValue();
6970     int SVOffset = LD->getSrcValueOffset();
6971     unsigned Alignment = LD->getAlignment();
6972     bool isVolatile = LD->isVolatile();
6973
6974     Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6975     unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
6976     Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
6977                       DAG.getIntPtrConstant(IncrementSize));
6978     SVOffset += IncrementSize;
6979     Alignment = MinAlign(Alignment, IncrementSize);
6980     Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6981     
6982     // Build a factor node to remember that this load is independent of the
6983     // other one.
6984     SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6985                                Hi.getValue(1));
6986     
6987     // Remember that we legalized the chain.
6988     AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
6989     break;
6990   }
6991   case ISD::BIT_CONVERT: {
6992     // We know the result is a vector.  The input may be either a vector or a
6993     // scalar value.
6994     SDOperand InOp = Node->getOperand(0);
6995     if (!InOp.getValueType().isVector() ||
6996         InOp.getValueType().getVectorNumElements() == 1) {
6997       // The input is a scalar or single-element vector.
6998       // Lower to a store/load so that it can be split.
6999       // FIXME: this could be improved probably.
7000       SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
7001       FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
7002
7003       SDOperand St = DAG.getStore(DAG.getEntryNode(),
7004                                   InOp, Ptr,
7005                                   PseudoSourceValue::getFixedStack(),
7006                                   FI->getIndex());
7007       InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
7008                          PseudoSourceValue::getFixedStack(),
7009                          FI->getIndex());
7010     }
7011     // Split the vector and convert each of the pieces now.
7012     SplitVectorOp(InOp, Lo, Hi);
7013     Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7014     Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
7015     break;
7016   }
7017   }
7018       
7019   // Remember in a map if the values will be reused later.
7020   bool isNew = 
7021     SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7022   assert(isNew && "Value already split?!?");
7023 }
7024
7025
7026 /// ScalarizeVectorOp - Given an operand of single-element vector type
7027 /// (e.g. v1f32), convert it into the equivalent operation that returns a
7028 /// scalar (e.g. f32) value.
7029 SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
7030   assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
7031   SDNode *Node = Op.Val;
7032   MVT NewVT = Op.getValueType().getVectorElementType();
7033   assert(Op.getValueType().getVectorNumElements() == 1);
7034   
7035   // See if we already scalarized it.
7036   std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7037   if (I != ScalarizedNodes.end()) return I->second;
7038   
7039   SDOperand Result;
7040   switch (Node->getOpcode()) {
7041   default: 
7042 #ifndef NDEBUG
7043     Node->dump(&DAG); cerr << "\n";
7044 #endif
7045     assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7046   case ISD::ADD:
7047   case ISD::FADD:
7048   case ISD::SUB:
7049   case ISD::FSUB:
7050   case ISD::MUL:
7051   case ISD::FMUL:
7052   case ISD::SDIV:
7053   case ISD::UDIV:
7054   case ISD::FDIV:
7055   case ISD::SREM:
7056   case ISD::UREM:
7057   case ISD::FREM:
7058   case ISD::FPOW:
7059   case ISD::AND:
7060   case ISD::OR:
7061   case ISD::XOR:
7062     Result = DAG.getNode(Node->getOpcode(),
7063                          NewVT, 
7064                          ScalarizeVectorOp(Node->getOperand(0)),
7065                          ScalarizeVectorOp(Node->getOperand(1)));
7066     break;
7067   case ISD::FNEG:
7068   case ISD::FABS:
7069   case ISD::FSQRT:
7070   case ISD::FSIN:
7071   case ISD::FCOS:
7072     Result = DAG.getNode(Node->getOpcode(),
7073                          NewVT, 
7074                          ScalarizeVectorOp(Node->getOperand(0)));
7075     break;
7076   case ISD::FPOWI:
7077     Result = DAG.getNode(Node->getOpcode(),
7078                          NewVT, 
7079                          ScalarizeVectorOp(Node->getOperand(0)),
7080                          Node->getOperand(1));
7081     break;
7082   case ISD::LOAD: {
7083     LoadSDNode *LD = cast<LoadSDNode>(Node);
7084     SDOperand Ch = LegalizeOp(LD->getChain());     // Legalize the chain.
7085     SDOperand Ptr = LegalizeOp(LD->getBasePtr());  // Legalize the pointer.
7086     
7087     const Value *SV = LD->getSrcValue();
7088     int SVOffset = LD->getSrcValueOffset();
7089     Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7090                          LD->isVolatile(), LD->getAlignment());
7091
7092     // Remember that we legalized the chain.
7093     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7094     break;
7095   }
7096   case ISD::BUILD_VECTOR:
7097     Result = Node->getOperand(0);
7098     break;
7099   case ISD::INSERT_VECTOR_ELT:
7100     // Returning the inserted scalar element.
7101     Result = Node->getOperand(1);
7102     break;
7103   case ISD::CONCAT_VECTORS:
7104     assert(Node->getOperand(0).getValueType() == NewVT &&
7105            "Concat of non-legal vectors not yet supported!");
7106     Result = Node->getOperand(0);
7107     break;
7108   case ISD::VECTOR_SHUFFLE: {
7109     // Figure out if the scalar is the LHS or RHS and return it.
7110     SDOperand EltNum = Node->getOperand(2).getOperand(0);
7111     if (cast<ConstantSDNode>(EltNum)->getValue())
7112       Result = ScalarizeVectorOp(Node->getOperand(1));
7113     else
7114       Result = ScalarizeVectorOp(Node->getOperand(0));
7115     break;
7116   }
7117   case ISD::EXTRACT_SUBVECTOR:
7118     Result = Node->getOperand(0);
7119     assert(Result.getValueType() == NewVT);
7120     break;
7121   case ISD::BIT_CONVERT: {
7122     SDOperand Op0 = Op.getOperand(0);
7123     if (Op0.getValueType().getVectorNumElements() == 1)
7124       Op0 = ScalarizeVectorOp(Op0);
7125     Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
7126     break;
7127   }
7128   case ISD::SELECT:
7129     Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
7130                          ScalarizeVectorOp(Op.getOperand(1)),
7131                          ScalarizeVectorOp(Op.getOperand(2)));
7132     break;
7133   case ISD::SELECT_CC:
7134     Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0), 
7135                          Node->getOperand(1),
7136                          ScalarizeVectorOp(Op.getOperand(2)),
7137                          ScalarizeVectorOp(Op.getOperand(3)),
7138                          Node->getOperand(4));
7139     break;
7140   case ISD::VSETCC: {
7141     SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7142     SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7143     Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7144                          Op.getOperand(2));
7145     Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7146                          DAG.getConstant(-1ULL, NewVT),
7147                          DAG.getConstant(0ULL, NewVT));
7148     break;
7149   }
7150   }
7151
7152   if (TLI.isTypeLegal(NewVT))
7153     Result = LegalizeOp(Result);
7154   bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7155   assert(isNew && "Value already scalarized?");
7156   return Result;
7157 }
7158
7159
7160 // SelectionDAG::Legalize - This is the entry point for the file.
7161 //
7162 void SelectionDAG::Legalize() {
7163   if (ViewLegalizeDAGs) viewGraph();
7164
7165   /// run - This is the main entry point to this class.
7166   ///
7167   SelectionDAGLegalize(*this).LegalizeDAG();
7168 }
7169