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