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