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