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