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