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