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