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