f50e5e7e76c7258df231380f286d1d012f28d439
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeDAG.cpp
1 //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the SelectionDAG::Legalize method.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "llvm/ADT/SmallPtrSet.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/CodeGen/Analysis.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/MachineJumpTableInfo.h"
21 #include "llvm/DebugInfo.h"
22 #include "llvm/IR/CallingConv.h"
23 #include "llvm/IR/Constants.h"
24 #include "llvm/IR/DataLayout.h"
25 #include "llvm/IR/DerivedTypes.h"
26 #include "llvm/IR/Function.h"
27 #include "llvm/IR/LLVMContext.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/MathExtras.h"
31 #include "llvm/Support/raw_ostream.h"
32 #include "llvm/Target/TargetFrameLowering.h"
33 #include "llvm/Target/TargetLowering.h"
34 #include "llvm/Target/TargetMachine.h"
35 using namespace llvm;
36
37 //===----------------------------------------------------------------------===//
38 /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
39 /// hacks on it until the target machine can handle it.  This involves
40 /// eliminating value sizes the machine cannot handle (promoting small sizes to
41 /// large sizes or splitting up large values into small values) as well as
42 /// eliminating operations the machine cannot handle.
43 ///
44 /// This code also does a small amount of optimization and recognition of idioms
45 /// as part of its processing.  For example, if a target does not support a
46 /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
47 /// will attempt merge setcc and brc instructions into brcc's.
48 ///
49 namespace {
50 class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
51   const TargetMachine &TM;
52   const TargetLowering &TLI;
53   SelectionDAG &DAG;
54
55   /// LegalizePosition - The iterator for walking through the node list.
56   SelectionDAG::allnodes_iterator LegalizePosition;
57
58   /// LegalizedNodes - The set of nodes which have already been legalized.
59   SmallPtrSet<SDNode *, 16> LegalizedNodes;
60
61   EVT getSetCCResultType(EVT VT) const {
62     return TLI.getSetCCResultType(*DAG.getContext(), VT);
63   }
64
65   // Libcall insertion helpers.
66
67 public:
68   explicit SelectionDAGLegalize(SelectionDAG &DAG);
69
70   void LegalizeDAG();
71
72 private:
73   /// LegalizeOp - Legalizes the given operation.
74   void LegalizeOp(SDNode *Node);
75
76   SDValue OptimizeFloatStore(StoreSDNode *ST);
77
78   void LegalizeLoadOps(SDNode *Node);
79   void LegalizeStoreOps(SDNode *Node);
80
81   /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
82   /// insertion index for the INSERT_VECTOR_ELT instruction.  In this case, it
83   /// is necessary to spill the vector being inserted into to memory, perform
84   /// the insert there, and then read the result back.
85   SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
86                                          SDValue Idx, SDLoc dl);
87   SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
88                                   SDValue Idx, SDLoc dl);
89
90   /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
91   /// performs the same shuffe in terms of order or result bytes, but on a type
92   /// whose vector element type is narrower than the original shuffle type.
93   /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
94   SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
95                                      SDValue N1, SDValue N2,
96                                      ArrayRef<int> Mask) const;
97
98   bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
99                              SDLoc dl);
100
101   SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
102   SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
103                         unsigned NumOps, bool isSigned, SDLoc dl);
104
105   std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
106                                                  SDNode *Node, bool isSigned);
107   SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
108                           RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
109                           RTLIB::Libcall Call_F128,
110                           RTLIB::Libcall Call_PPCF128);
111   SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
112                            RTLIB::Libcall Call_I8,
113                            RTLIB::Libcall Call_I16,
114                            RTLIB::Libcall Call_I32,
115                            RTLIB::Libcall Call_I64,
116                            RTLIB::Libcall Call_I128);
117   void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
118   void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
119
120   SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
121   SDValue ExpandBUILD_VECTOR(SDNode *Node);
122   SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
123   void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
124                                 SmallVectorImpl<SDValue> &Results);
125   SDValue ExpandFCOPYSIGN(SDNode *Node);
126   SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
127                                SDLoc dl);
128   SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
129                                 SDLoc dl);
130   SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
131                                 SDLoc dl);
132
133   SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
134   SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
135
136   SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
137   SDValue ExpandInsertToVectorThroughStack(SDValue Op);
138   SDValue ExpandVectorBuildThroughStack(SDNode* Node);
139
140   SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
141
142   std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
143
144   void ExpandNode(SDNode *Node);
145   void PromoteNode(SDNode *Node);
146
147   void ForgetNode(SDNode *N) {
148     LegalizedNodes.erase(N);
149     if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
150       ++LegalizePosition;
151   }
152
153 public:
154   // DAGUpdateListener implementation.
155   virtual void NodeDeleted(SDNode *N, SDNode *E) {
156     ForgetNode(N);
157   }
158   virtual void NodeUpdated(SDNode *N) {}
159
160   // Node replacement helpers
161   void ReplacedNode(SDNode *N) {
162     if (N->use_empty()) {
163       DAG.RemoveDeadNode(N);
164     } else {
165       ForgetNode(N);
166     }
167   }
168   void ReplaceNode(SDNode *Old, SDNode *New) {
169     DAG.ReplaceAllUsesWith(Old, New);
170     ReplacedNode(Old);
171   }
172   void ReplaceNode(SDValue Old, SDValue New) {
173     DAG.ReplaceAllUsesWith(Old, New);
174     ReplacedNode(Old.getNode());
175   }
176   void ReplaceNode(SDNode *Old, const SDValue *New) {
177     DAG.ReplaceAllUsesWith(Old, New);
178     ReplacedNode(Old);
179   }
180 };
181 }
182
183 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
184 /// performs the same shuffe in terms of order or result bytes, but on a type
185 /// whose vector element type is narrower than the original shuffle type.
186 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
187 SDValue
188 SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT,  SDLoc dl,
189                                                  SDValue N1, SDValue N2,
190                                                  ArrayRef<int> Mask) const {
191   unsigned NumMaskElts = VT.getVectorNumElements();
192   unsigned NumDestElts = NVT.getVectorNumElements();
193   unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
194
195   assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
196
197   if (NumEltsGrowth == 1)
198     return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
199
200   SmallVector<int, 8> NewMask;
201   for (unsigned i = 0; i != NumMaskElts; ++i) {
202     int Idx = Mask[i];
203     for (unsigned j = 0; j != NumEltsGrowth; ++j) {
204       if (Idx < 0)
205         NewMask.push_back(-1);
206       else
207         NewMask.push_back(Idx * NumEltsGrowth + j);
208     }
209   }
210   assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
211   assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
212   return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
213 }
214
215 SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
216   : SelectionDAG::DAGUpdateListener(dag),
217     TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
218     DAG(dag) {
219 }
220
221 void SelectionDAGLegalize::LegalizeDAG() {
222   DAG.AssignTopologicalOrder();
223
224   // Visit all the nodes. We start in topological order, so that we see
225   // nodes with their original operands intact. Legalization can produce
226   // new nodes which may themselves need to be legalized. Iterate until all
227   // nodes have been legalized.
228   for (;;) {
229     bool AnyLegalized = false;
230     for (LegalizePosition = DAG.allnodes_end();
231          LegalizePosition != DAG.allnodes_begin(); ) {
232       --LegalizePosition;
233
234       SDNode *N = LegalizePosition;
235       if (LegalizedNodes.insert(N)) {
236         AnyLegalized = true;
237         LegalizeOp(N);
238       }
239     }
240     if (!AnyLegalized)
241       break;
242
243   }
244
245   // Remove dead nodes now.
246   DAG.RemoveDeadNodes();
247 }
248
249 /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
250 /// a load from the constant pool.
251 SDValue
252 SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
253   bool Extend = false;
254   SDLoc dl(CFP);
255
256   // If a FP immediate is precise when represented as a float and if the
257   // target can do an extending load from float to double, we put it into
258   // the constant pool as a float, even if it's is statically typed as a
259   // double.  This shrinks FP constants and canonicalizes them for targets where
260   // an FP extending load is the same cost as a normal load (such as on the x87
261   // fp stack or PPC FP unit).
262   EVT VT = CFP->getValueType(0);
263   ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
264   if (!UseCP) {
265     assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
266     return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
267                            (VT == MVT::f64) ? MVT::i64 : MVT::i32);
268   }
269
270   EVT OrigVT = VT;
271   EVT SVT = VT;
272   while (SVT != MVT::f32) {
273     SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
274     if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
275         // Only do this if the target has a native EXTLOAD instruction from
276         // smaller type.
277         TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
278         TLI.ShouldShrinkFPConstant(OrigVT)) {
279       Type *SType = SVT.getTypeForEVT(*DAG.getContext());
280       LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
281       VT = SVT;
282       Extend = true;
283     }
284   }
285
286   SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
287   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
288   if (Extend) {
289     SDValue Result =
290       DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
291                      DAG.getEntryNode(),
292                      CPIdx, MachinePointerInfo::getConstantPool(),
293                      VT, false, false, Alignment);
294     return Result;
295   }
296   SDValue Result =
297     DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
298                 MachinePointerInfo::getConstantPool(), false, false, false,
299                 Alignment);
300   return Result;
301 }
302
303 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
304 static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
305                                  const TargetLowering &TLI,
306                                  SelectionDAGLegalize *DAGLegalize) {
307   assert(ST->getAddressingMode() == ISD::UNINDEXED &&
308          "unaligned indexed stores not implemented!");
309   SDValue Chain = ST->getChain();
310   SDValue Ptr = ST->getBasePtr();
311   SDValue Val = ST->getValue();
312   EVT VT = Val.getValueType();
313   int Alignment = ST->getAlignment();
314   unsigned AS = ST->getAddressSpace();
315
316   SDLoc dl(ST);
317   if (ST->getMemoryVT().isFloatingPoint() ||
318       ST->getMemoryVT().isVector()) {
319     EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
320     if (TLI.isTypeLegal(intVT)) {
321       // Expand to a bitconvert of the value to the integer type of the
322       // same size, then a (misaligned) int store.
323       // FIXME: Does not handle truncating floating point stores!
324       SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
325       Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
326                            ST->isVolatile(), ST->isNonTemporal(), Alignment);
327       DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
328       return;
329     }
330     // Do a (aligned) store to a stack slot, then copy from the stack slot
331     // to the final destination using (unaligned) integer loads and stores.
332     EVT StoredVT = ST->getMemoryVT();
333     MVT RegVT =
334       TLI.getRegisterType(*DAG.getContext(),
335                           EVT::getIntegerVT(*DAG.getContext(),
336                                             StoredVT.getSizeInBits()));
337     unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
338     unsigned RegBytes = RegVT.getSizeInBits() / 8;
339     unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
340
341     // Make sure the stack slot is also aligned for the register type.
342     SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
343
344     // Perform the original store, only redirected to the stack slot.
345     SDValue Store = DAG.getTruncStore(Chain, dl,
346                                       Val, StackPtr, MachinePointerInfo(),
347                                       StoredVT, false, false, 0);
348     SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
349     SmallVector<SDValue, 8> Stores;
350     unsigned Offset = 0;
351
352     // Do all but one copies using the full register width.
353     for (unsigned i = 1; i < NumRegs; i++) {
354       // Load one integer register's worth from the stack slot.
355       SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
356                                  MachinePointerInfo(),
357                                  false, false, false, 0);
358       // Store it to the final location.  Remember the store.
359       Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
360                                   ST->getPointerInfo().getWithOffset(Offset),
361                                     ST->isVolatile(), ST->isNonTemporal(),
362                                     MinAlign(ST->getAlignment(), Offset)));
363       // Increment the pointers.
364       Offset += RegBytes;
365       StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
366                              Increment);
367       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
368     }
369
370     // The last store may be partial.  Do a truncating store.  On big-endian
371     // machines this requires an extending load from the stack slot to ensure
372     // that the bits are in the right place.
373     EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
374                                   8 * (StoredBytes - Offset));
375
376     // Load from the stack slot.
377     SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
378                                   MachinePointerInfo(),
379                                   MemVT, false, false, 0);
380
381     Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
382                                        ST->getPointerInfo()
383                                          .getWithOffset(Offset),
384                                        MemVT, ST->isVolatile(),
385                                        ST->isNonTemporal(),
386                                        MinAlign(ST->getAlignment(), Offset),
387                                        ST->getTBAAInfo()));
388     // The order of the stores doesn't matter - say it with a TokenFactor.
389     SDValue Result =
390       DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
391                   Stores.size());
392     DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
393     return;
394   }
395   assert(ST->getMemoryVT().isInteger() &&
396          !ST->getMemoryVT().isVector() &&
397          "Unaligned store of unknown type.");
398   // Get the half-size VT
399   EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
400   int NumBits = NewStoredVT.getSizeInBits();
401   int IncrementSize = NumBits / 8;
402
403   // Divide the stored value in two parts.
404   SDValue ShiftAmount = DAG.getConstant(NumBits,
405                                       TLI.getShiftAmountTy(Val.getValueType()));
406   SDValue Lo = Val;
407   SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
408
409   // Store the two parts
410   SDValue Store1, Store2;
411   Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
412                              ST->getPointerInfo(), NewStoredVT,
413                              ST->isVolatile(), ST->isNonTemporal(), Alignment);
414
415   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
416                     DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
417   Alignment = MinAlign(Alignment, IncrementSize);
418   Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
419                              ST->getPointerInfo().getWithOffset(IncrementSize),
420                              NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
421                              Alignment, ST->getTBAAInfo());
422
423   SDValue Result =
424     DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
425   DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
426 }
427
428 /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
429 static void
430 ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
431                     const TargetLowering &TLI,
432                     SDValue &ValResult, SDValue &ChainResult) {
433   assert(LD->getAddressingMode() == ISD::UNINDEXED &&
434          "unaligned indexed loads not implemented!");
435   SDValue Chain = LD->getChain();
436   SDValue Ptr = LD->getBasePtr();
437   EVT VT = LD->getValueType(0);
438   EVT LoadedVT = LD->getMemoryVT();
439   SDLoc dl(LD);
440   if (VT.isFloatingPoint() || VT.isVector()) {
441     EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
442     if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
443       // Expand to a (misaligned) integer load of the same size,
444       // then bitconvert to floating point or vector.
445       SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
446                                     LD->getMemOperand());
447       SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
448       if (LoadedVT != VT)
449         Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
450                              ISD::ANY_EXTEND, dl, VT, Result);
451
452       ValResult = Result;
453       ChainResult = Chain;
454       return;
455     }
456
457     // Copy the value to a (aligned) stack slot using (unaligned) integer
458     // loads and stores, then do a (aligned) load from the stack slot.
459     MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
460     unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
461     unsigned RegBytes = RegVT.getSizeInBits() / 8;
462     unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
463
464     // Make sure the stack slot is also aligned for the register type.
465     SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
466
467     SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
468     SmallVector<SDValue, 8> Stores;
469     SDValue StackPtr = StackBase;
470     unsigned Offset = 0;
471
472     // Do all but one copies using the full register width.
473     for (unsigned i = 1; i < NumRegs; i++) {
474       // Load one integer register's worth from the original location.
475       SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
476                                  LD->getPointerInfo().getWithOffset(Offset),
477                                  LD->isVolatile(), LD->isNonTemporal(),
478                                  LD->isInvariant(),
479                                  MinAlign(LD->getAlignment(), Offset),
480                                  LD->getTBAAInfo());
481       // Follow the load with a store to the stack slot.  Remember the store.
482       Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
483                                     MachinePointerInfo(), false, false, 0));
484       // Increment the pointers.
485       Offset += RegBytes;
486       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
487       StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
488                              Increment);
489     }
490
491     // The last copy may be partial.  Do an extending load.
492     EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
493                                   8 * (LoadedBytes - Offset));
494     SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
495                                   LD->getPointerInfo().getWithOffset(Offset),
496                                   MemVT, LD->isVolatile(),
497                                   LD->isNonTemporal(),
498                                   MinAlign(LD->getAlignment(), Offset),
499                                   LD->getTBAAInfo());
500     // Follow the load with a store to the stack slot.  Remember the store.
501     // On big-endian machines this requires a truncating store to ensure
502     // that the bits end up in the right place.
503     Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
504                                        MachinePointerInfo(), MemVT,
505                                        false, false, 0));
506
507     // The order of the stores doesn't matter - say it with a TokenFactor.
508     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
509                              Stores.size());
510
511     // Finally, perform the original load only redirected to the stack slot.
512     Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
513                           MachinePointerInfo(), LoadedVT, false, false, 0);
514
515     // Callers expect a MERGE_VALUES node.
516     ValResult = Load;
517     ChainResult = TF;
518     return;
519   }
520   assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
521          "Unaligned load of unsupported type.");
522
523   // Compute the new VT that is half the size of the old one.  This is an
524   // integer MVT.
525   unsigned NumBits = LoadedVT.getSizeInBits();
526   EVT NewLoadedVT;
527   NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
528   NumBits >>= 1;
529
530   unsigned Alignment = LD->getAlignment();
531   unsigned IncrementSize = NumBits / 8;
532   ISD::LoadExtType HiExtType = LD->getExtensionType();
533
534   // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
535   if (HiExtType == ISD::NON_EXTLOAD)
536     HiExtType = ISD::ZEXTLOAD;
537
538   // Load the value in two parts
539   SDValue Lo, Hi;
540   if (TLI.isLittleEndian()) {
541     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
542                         NewLoadedVT, LD->isVolatile(),
543                         LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
544     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
545                       DAG.getConstant(IncrementSize, Ptr.getValueType()));
546     Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
547                         LD->getPointerInfo().getWithOffset(IncrementSize),
548                         NewLoadedVT, LD->isVolatile(),
549                         LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
550                         LD->getTBAAInfo());
551   } else {
552     Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
553                         NewLoadedVT, LD->isVolatile(),
554                         LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
555     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
556                       DAG.getConstant(IncrementSize, Ptr.getValueType()));
557     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
558                         LD->getPointerInfo().getWithOffset(IncrementSize),
559                         NewLoadedVT, LD->isVolatile(),
560                         LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
561                         LD->getTBAAInfo());
562   }
563
564   // aggregate the two parts
565   SDValue ShiftAmount = DAG.getConstant(NumBits,
566                                        TLI.getShiftAmountTy(Hi.getValueType()));
567   SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
568   Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
569
570   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
571                              Hi.getValue(1));
572
573   ValResult = Result;
574   ChainResult = TF;
575 }
576
577 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
578 /// insertion index for the INSERT_VECTOR_ELT instruction.  In this case, it
579 /// is necessary to spill the vector being inserted into to memory, perform
580 /// the insert there, and then read the result back.
581 SDValue SelectionDAGLegalize::
582 PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
583                                SDLoc dl) {
584   SDValue Tmp1 = Vec;
585   SDValue Tmp2 = Val;
586   SDValue Tmp3 = Idx;
587
588   // If the target doesn't support this, we have to spill the input vector
589   // to a temporary stack slot, update the element, then reload it.  This is
590   // badness.  We could also load the value into a vector register (either
591   // with a "move to register" or "extload into register" instruction, then
592   // permute it into place, if the idx is a constant and if the idx is
593   // supported by the target.
594   EVT VT    = Tmp1.getValueType();
595   EVT EltVT = VT.getVectorElementType();
596   EVT IdxVT = Tmp3.getValueType();
597   EVT PtrVT = TLI.getPointerTy();
598   SDValue StackPtr = DAG.CreateStackTemporary(VT);
599
600   int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
601
602   // Store the vector.
603   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
604                             MachinePointerInfo::getFixedStack(SPFI),
605                             false, false, 0);
606
607   // Truncate or zero extend offset to target pointer type.
608   unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
609   Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
610   // Add the offset to the index.
611   unsigned EltSize = EltVT.getSizeInBits()/8;
612   Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
613   SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
614   // Store the scalar value.
615   Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
616                          false, false, 0);
617   // Load the updated vector.
618   return DAG.getLoad(VT, dl, Ch, StackPtr,
619                      MachinePointerInfo::getFixedStack(SPFI), false, false,
620                      false, 0);
621 }
622
623
624 SDValue SelectionDAGLegalize::
625 ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
626   if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
627     // SCALAR_TO_VECTOR requires that the type of the value being inserted
628     // match the element type of the vector being created, except for
629     // integers in which case the inserted value can be over width.
630     EVT EltVT = Vec.getValueType().getVectorElementType();
631     if (Val.getValueType() == EltVT ||
632         (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
633       SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
634                                   Vec.getValueType(), Val);
635
636       unsigned NumElts = Vec.getValueType().getVectorNumElements();
637       // We generate a shuffle of InVec and ScVec, so the shuffle mask
638       // should be 0,1,2,3,4,5... with the appropriate element replaced with
639       // elt 0 of the RHS.
640       SmallVector<int, 8> ShufOps;
641       for (unsigned i = 0; i != NumElts; ++i)
642         ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
643
644       return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
645                                   &ShufOps[0]);
646     }
647   }
648   return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
649 }
650
651 SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
652   // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
653   // FIXME: We shouldn't do this for TargetConstantFP's.
654   // FIXME: move this to the DAG Combiner!  Note that we can't regress due
655   // to phase ordering between legalized code and the dag combiner.  This
656   // probably means that we need to integrate dag combiner and legalizer
657   // together.
658   // We generally can't do this one for long doubles.
659   SDValue Chain = ST->getChain();
660   SDValue Ptr = ST->getBasePtr();
661   unsigned Alignment = ST->getAlignment();
662   bool isVolatile = ST->isVolatile();
663   bool isNonTemporal = ST->isNonTemporal();
664   const MDNode *TBAAInfo = ST->getTBAAInfo();
665   SDLoc dl(ST);
666   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
667     if (CFP->getValueType(0) == MVT::f32 &&
668         TLI.isTypeLegal(MVT::i32)) {
669       SDValue Con = DAG.getConstant(CFP->getValueAPF().
670                                       bitcastToAPInt().zextOrTrunc(32),
671                               MVT::i32);
672       return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
673                           isVolatile, isNonTemporal, Alignment, TBAAInfo);
674     }
675
676     if (CFP->getValueType(0) == MVT::f64) {
677       // If this target supports 64-bit registers, do a single 64-bit store.
678       if (TLI.isTypeLegal(MVT::i64)) {
679         SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
680                                   zextOrTrunc(64), MVT::i64);
681         return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
682                             isVolatile, isNonTemporal, Alignment, TBAAInfo);
683       }
684
685       if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
686         // Otherwise, if the target supports 32-bit registers, use 2 32-bit
687         // stores.  If the target supports neither 32- nor 64-bits, this
688         // xform is certainly not worth it.
689         const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
690         SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
691         SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
692         if (TLI.isBigEndian()) std::swap(Lo, Hi);
693
694         Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
695                           isNonTemporal, Alignment, TBAAInfo);
696         Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
697                           DAG.getConstant(4, Ptr.getValueType()));
698         Hi = DAG.getStore(Chain, dl, Hi, Ptr,
699                           ST->getPointerInfo().getWithOffset(4),
700                           isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
701                           TBAAInfo);
702
703         return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
704       }
705     }
706   }
707   return SDValue(0, 0);
708 }
709
710 void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
711     StoreSDNode *ST = cast<StoreSDNode>(Node);
712     SDValue Chain = ST->getChain();
713     SDValue Ptr = ST->getBasePtr();
714     SDLoc dl(Node);
715
716     unsigned Alignment = ST->getAlignment();
717     bool isVolatile = ST->isVolatile();
718     bool isNonTemporal = ST->isNonTemporal();
719     const MDNode *TBAAInfo = ST->getTBAAInfo();
720
721     if (!ST->isTruncatingStore()) {
722       if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
723         ReplaceNode(ST, OptStore);
724         return;
725       }
726
727       {
728         SDValue Value = ST->getValue();
729         MVT VT = Value.getSimpleValueType();
730         switch (TLI.getOperationAction(ISD::STORE, VT)) {
731         default: llvm_unreachable("This action is not supported yet!");
732         case TargetLowering::Legal:
733           // If this is an unaligned store and the target doesn't support it,
734           // expand it.
735           if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
736             Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
737             unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
738             if (ST->getAlignment() < ABIAlignment)
739               ExpandUnalignedStore(cast<StoreSDNode>(Node),
740                                    DAG, TLI, this);
741           }
742           break;
743         case TargetLowering::Custom: {
744           SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
745           if (Res.getNode())
746             ReplaceNode(SDValue(Node, 0), Res);
747           return;
748         }
749         case TargetLowering::Promote: {
750           MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
751           assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
752                  "Can only promote stores to same size type");
753           Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
754           SDValue Result =
755             DAG.getStore(Chain, dl, Value, Ptr,
756                          ST->getPointerInfo(), isVolatile,
757                          isNonTemporal, Alignment, TBAAInfo);
758           ReplaceNode(SDValue(Node, 0), Result);
759           break;
760         }
761         }
762         return;
763       }
764     } else {
765       SDValue Value = ST->getValue();
766
767       EVT StVT = ST->getMemoryVT();
768       unsigned StWidth = StVT.getSizeInBits();
769
770       if (StWidth != StVT.getStoreSizeInBits()) {
771         // Promote to a byte-sized store with upper bits zero if not
772         // storing an integral number of bytes.  For example, promote
773         // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
774         EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
775                                     StVT.getStoreSizeInBits());
776         Value = DAG.getZeroExtendInReg(Value, dl, StVT);
777         SDValue Result =
778           DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
779                             NVT, isVolatile, isNonTemporal, Alignment,
780                             TBAAInfo);
781         ReplaceNode(SDValue(Node, 0), Result);
782       } else if (StWidth & (StWidth - 1)) {
783         // If not storing a power-of-2 number of bits, expand as two stores.
784         assert(!StVT.isVector() && "Unsupported truncstore!");
785         unsigned RoundWidth = 1 << Log2_32(StWidth);
786         assert(RoundWidth < StWidth);
787         unsigned ExtraWidth = StWidth - RoundWidth;
788         assert(ExtraWidth < RoundWidth);
789         assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
790                "Store size not an integral number of bytes!");
791         EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
792         EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
793         SDValue Lo, Hi;
794         unsigned IncrementSize;
795
796         if (TLI.isLittleEndian()) {
797           // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
798           // Store the bottom RoundWidth bits.
799           Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
800                                  RoundVT,
801                                  isVolatile, isNonTemporal, Alignment,
802                                  TBAAInfo);
803
804           // Store the remaining ExtraWidth bits.
805           IncrementSize = RoundWidth / 8;
806           Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
807                             DAG.getConstant(IncrementSize, Ptr.getValueType()));
808           Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
809                            DAG.getConstant(RoundWidth,
810                                     TLI.getShiftAmountTy(Value.getValueType())));
811           Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
812                              ST->getPointerInfo().getWithOffset(IncrementSize),
813                                  ExtraVT, isVolatile, isNonTemporal,
814                                  MinAlign(Alignment, IncrementSize), TBAAInfo);
815         } else {
816           // Big endian - avoid unaligned stores.
817           // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
818           // Store the top RoundWidth bits.
819           Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
820                            DAG.getConstant(ExtraWidth,
821                                     TLI.getShiftAmountTy(Value.getValueType())));
822           Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
823                                  RoundVT, isVolatile, isNonTemporal, Alignment,
824                                  TBAAInfo);
825
826           // Store the remaining ExtraWidth bits.
827           IncrementSize = RoundWidth / 8;
828           Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
829                              DAG.getConstant(IncrementSize, Ptr.getValueType()));
830           Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
831                               ST->getPointerInfo().getWithOffset(IncrementSize),
832                                  ExtraVT, isVolatile, isNonTemporal,
833                                  MinAlign(Alignment, IncrementSize), TBAAInfo);
834         }
835
836         // The order of the stores doesn't matter.
837         SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
838         ReplaceNode(SDValue(Node, 0), Result);
839       } else {
840         switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
841                                         StVT.getSimpleVT())) {
842         default: llvm_unreachable("This action is not supported yet!");
843         case TargetLowering::Legal:
844           // If this is an unaligned store and the target doesn't support it,
845           // expand it.
846           if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
847             Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
848             unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
849             if (ST->getAlignment() < ABIAlignment)
850               ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
851           }
852           break;
853         case TargetLowering::Custom: {
854           SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
855           if (Res.getNode())
856             ReplaceNode(SDValue(Node, 0), Res);
857           return;
858         }
859         case TargetLowering::Expand:
860           assert(!StVT.isVector() &&
861                  "Vector Stores are handled in LegalizeVectorOps");
862
863           // TRUNCSTORE:i16 i32 -> STORE i16
864           assert(TLI.isTypeLegal(StVT) &&
865                  "Do not know how to expand this store!");
866           Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
867           SDValue Result =
868             DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
869                          isVolatile, isNonTemporal, Alignment, TBAAInfo);
870           ReplaceNode(SDValue(Node, 0), Result);
871           break;
872         }
873       }
874     }
875 }
876
877 void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
878   LoadSDNode *LD = cast<LoadSDNode>(Node);
879   SDValue Chain = LD->getChain();  // The chain.
880   SDValue Ptr = LD->getBasePtr();  // The base pointer.
881   SDValue Value;                   // The value returned by the load op.
882   SDLoc dl(Node);
883
884   ISD::LoadExtType ExtType = LD->getExtensionType();
885   if (ExtType == ISD::NON_EXTLOAD) {
886     MVT VT = Node->getSimpleValueType(0);
887     SDValue RVal = SDValue(Node, 0);
888     SDValue RChain = SDValue(Node, 1);
889
890     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
891     default: llvm_unreachable("This action is not supported yet!");
892     case TargetLowering::Legal:
893       // If this is an unaligned load and the target doesn't support it,
894       // expand it.
895       if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
896         Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
897         unsigned ABIAlignment =
898           TLI.getDataLayout()->getABITypeAlignment(Ty);
899         if (LD->getAlignment() < ABIAlignment){
900           ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
901         }
902       }
903       break;
904     case TargetLowering::Custom: {
905       SDValue Res = TLI.LowerOperation(RVal, DAG);
906       if (Res.getNode()) {
907         RVal = Res;
908         RChain = Res.getValue(1);
909       }
910       break;
911     }
912     case TargetLowering::Promote: {
913       MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
914       assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
915              "Can only promote loads to same size type");
916
917       SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
918       RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
919       RChain = Res.getValue(1);
920       break;
921     }
922     }
923     if (RChain.getNode() != Node) {
924       assert(RVal.getNode() != Node && "Load must be completely replaced");
925       DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
926       DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
927       ReplacedNode(Node);
928     }
929     return;
930   }
931
932   EVT SrcVT = LD->getMemoryVT();
933   unsigned SrcWidth = SrcVT.getSizeInBits();
934   unsigned Alignment = LD->getAlignment();
935   bool isVolatile = LD->isVolatile();
936   bool isNonTemporal = LD->isNonTemporal();
937   const MDNode *TBAAInfo = LD->getTBAAInfo();
938
939   if (SrcWidth != SrcVT.getStoreSizeInBits() &&
940       // Some targets pretend to have an i1 loading operation, and actually
941       // load an i8.  This trick is correct for ZEXTLOAD because the top 7
942       // bits are guaranteed to be zero; it helps the optimizers understand
943       // that these bits are zero.  It is also useful for EXTLOAD, since it
944       // tells the optimizers that those bits are undefined.  It would be
945       // nice to have an effective generic way of getting these benefits...
946       // Until such a way is found, don't insist on promoting i1 here.
947       (SrcVT != MVT::i1 ||
948        TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
949     // Promote to a byte-sized load if not loading an integral number of
950     // bytes.  For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
951     unsigned NewWidth = SrcVT.getStoreSizeInBits();
952     EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
953     SDValue Ch;
954
955     // The extra bits are guaranteed to be zero, since we stored them that
956     // way.  A zext load from NVT thus automatically gives zext from SrcVT.
957
958     ISD::LoadExtType NewExtType =
959       ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
960
961     SDValue Result =
962       DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
963                      Chain, Ptr, LD->getPointerInfo(),
964                      NVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
965
966     Ch = Result.getValue(1); // The chain.
967
968     if (ExtType == ISD::SEXTLOAD)
969       // Having the top bits zero doesn't help when sign extending.
970       Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
971                            Result.getValueType(),
972                            Result, DAG.getValueType(SrcVT));
973     else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
974       // All the top bits are guaranteed to be zero - inform the optimizers.
975       Result = DAG.getNode(ISD::AssertZext, dl,
976                            Result.getValueType(), Result,
977                            DAG.getValueType(SrcVT));
978
979     Value = Result;
980     Chain = Ch;
981   } else if (SrcWidth & (SrcWidth - 1)) {
982     // If not loading a power-of-2 number of bits, expand as two loads.
983     assert(!SrcVT.isVector() && "Unsupported extload!");
984     unsigned RoundWidth = 1 << Log2_32(SrcWidth);
985     assert(RoundWidth < SrcWidth);
986     unsigned ExtraWidth = SrcWidth - RoundWidth;
987     assert(ExtraWidth < RoundWidth);
988     assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
989            "Load size not an integral number of bytes!");
990     EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
991     EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
992     SDValue Lo, Hi, Ch;
993     unsigned IncrementSize;
994
995     if (TLI.isLittleEndian()) {
996       // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
997       // Load the bottom RoundWidth bits.
998       Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
999                           Chain, Ptr,
1000                           LD->getPointerInfo(), RoundVT, isVolatile,
1001                           isNonTemporal, Alignment, TBAAInfo);
1002
1003       // Load the remaining ExtraWidth bits.
1004       IncrementSize = RoundWidth / 8;
1005       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1006                          DAG.getConstant(IncrementSize, Ptr.getValueType()));
1007       Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
1008                           LD->getPointerInfo().getWithOffset(IncrementSize),
1009                           ExtraVT, isVolatile, isNonTemporal,
1010                           MinAlign(Alignment, IncrementSize), TBAAInfo);
1011
1012       // Build a factor node to remember that this load is independent of
1013       // the other one.
1014       Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1015                        Hi.getValue(1));
1016
1017       // Move the top bits to the right place.
1018       Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1019                        DAG.getConstant(RoundWidth,
1020                                        TLI.getShiftAmountTy(Hi.getValueType())));
1021
1022       // Join the hi and lo parts.
1023       Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
1024     } else {
1025       // Big endian - avoid unaligned loads.
1026       // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1027       // Load the top RoundWidth bits.
1028       Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
1029                           LD->getPointerInfo(), RoundVT, isVolatile,
1030                           isNonTemporal, Alignment, TBAAInfo);
1031
1032       // Load the remaining ExtraWidth bits.
1033       IncrementSize = RoundWidth / 8;
1034       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1035                          DAG.getConstant(IncrementSize, Ptr.getValueType()));
1036       Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
1037                           dl, Node->getValueType(0), Chain, Ptr,
1038                           LD->getPointerInfo().getWithOffset(IncrementSize),
1039                           ExtraVT, isVolatile, isNonTemporal,
1040                           MinAlign(Alignment, IncrementSize), TBAAInfo);
1041
1042       // Build a factor node to remember that this load is independent of
1043       // the other one.
1044       Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1045                        Hi.getValue(1));
1046
1047       // Move the top bits to the right place.
1048       Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1049                        DAG.getConstant(ExtraWidth,
1050                                        TLI.getShiftAmountTy(Hi.getValueType())));
1051
1052       // Join the hi and lo parts.
1053       Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
1054     }
1055
1056     Chain = Ch;
1057   } else {
1058     bool isCustom = false;
1059     switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
1060     default: llvm_unreachable("This action is not supported yet!");
1061     case TargetLowering::Custom:
1062              isCustom = true;
1063              // FALLTHROUGH
1064     case TargetLowering::Legal: {
1065              Value = SDValue(Node, 0);
1066              Chain = SDValue(Node, 1);
1067
1068              if (isCustom) {
1069                SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1070                if (Res.getNode()) {
1071                  Value = Res;
1072                  Chain = Res.getValue(1);
1073                }
1074              } else {
1075                // If this is an unaligned load and the target doesn't support it,
1076                // expand it.
1077                if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1078                  Type *Ty =
1079                    LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1080                  unsigned ABIAlignment =
1081                    TLI.getDataLayout()->getABITypeAlignment(Ty);
1082                  if (LD->getAlignment() < ABIAlignment){
1083                    ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1084                                        DAG, TLI, Value, Chain);
1085                  }
1086                }
1087              }
1088              break;
1089     }
1090     case TargetLowering::Expand:
1091              if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
1092                SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1093                                           LD->getMemOperand());
1094                unsigned ExtendOp;
1095                switch (ExtType) {
1096                case ISD::EXTLOAD:
1097                  ExtendOp = (SrcVT.isFloatingPoint() ?
1098                              ISD::FP_EXTEND : ISD::ANY_EXTEND);
1099                  break;
1100                case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1101                case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1102                default: llvm_unreachable("Unexpected extend load type!");
1103                }
1104                Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1105                Chain = Load.getValue(1);
1106                break;
1107              }
1108
1109              assert(!SrcVT.isVector() &&
1110                     "Vector Loads are handled in LegalizeVectorOps");
1111
1112              // FIXME: This does not work for vectors on most targets.  Sign- and
1113              // zero-extend operations are currently folded into extending loads,
1114              // whether they are legal or not, and then we end up here without any
1115              // support for legalizing them.
1116              assert(ExtType != ISD::EXTLOAD &&
1117                     "EXTLOAD should always be supported!");
1118              // Turn the unsupported load into an EXTLOAD followed by an explicit
1119              // zero/sign extend inreg.
1120              SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
1121                                              Chain, Ptr, SrcVT,
1122                                              LD->getMemOperand());
1123              SDValue ValRes;
1124              if (ExtType == ISD::SEXTLOAD)
1125                ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1126                                     Result.getValueType(),
1127                                     Result, DAG.getValueType(SrcVT));
1128              else
1129                ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
1130              Value = ValRes;
1131              Chain = Result.getValue(1);
1132              break;
1133     }
1134   }
1135
1136   // Since loads produce two values, make sure to remember that we legalized
1137   // both of them.
1138   if (Chain.getNode() != Node) {
1139     assert(Value.getNode() != Node && "Load must be completely replaced");
1140     DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1141     DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
1142     ReplacedNode(Node);
1143   }
1144 }
1145
1146 /// LegalizeOp - Return a legal replacement for the given operation, with
1147 /// all legal operands.
1148 void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1149   if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1150     return;
1151
1152   for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1153     assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1154              TargetLowering::TypeLegal &&
1155            "Unexpected illegal type!");
1156
1157   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1158     assert((TLI.getTypeAction(*DAG.getContext(),
1159                               Node->getOperand(i).getValueType()) ==
1160               TargetLowering::TypeLegal ||
1161             Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1162            "Unexpected illegal type!");
1163
1164   // Figure out the correct action; the way to query this varies by opcode
1165   TargetLowering::LegalizeAction Action = TargetLowering::Legal;
1166   bool SimpleFinishLegalizing = true;
1167   switch (Node->getOpcode()) {
1168   case ISD::INTRINSIC_W_CHAIN:
1169   case ISD::INTRINSIC_WO_CHAIN:
1170   case ISD::INTRINSIC_VOID:
1171   case ISD::STACKSAVE:
1172     Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1173     break;
1174   case ISD::VAARG:
1175     Action = TLI.getOperationAction(Node->getOpcode(),
1176                                     Node->getValueType(0));
1177     if (Action != TargetLowering::Promote)
1178       Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1179     break;
1180   case ISD::SINT_TO_FP:
1181   case ISD::UINT_TO_FP:
1182   case ISD::EXTRACT_VECTOR_ELT:
1183     Action = TLI.getOperationAction(Node->getOpcode(),
1184                                     Node->getOperand(0).getValueType());
1185     break;
1186   case ISD::FP_ROUND_INREG:
1187   case ISD::SIGN_EXTEND_INREG: {
1188     EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
1189     Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1190     break;
1191   }
1192   case ISD::ATOMIC_STORE: {
1193     Action = TLI.getOperationAction(Node->getOpcode(),
1194                                     Node->getOperand(2).getValueType());
1195     break;
1196   }
1197   case ISD::SELECT_CC:
1198   case ISD::SETCC:
1199   case ISD::BR_CC: {
1200     unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1201                          Node->getOpcode() == ISD::SETCC ? 2 : 1;
1202     unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
1203     MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
1204     ISD::CondCode CCCode =
1205         cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1206     Action = TLI.getCondCodeAction(CCCode, OpVT);
1207     if (Action == TargetLowering::Legal) {
1208       if (Node->getOpcode() == ISD::SELECT_CC)
1209         Action = TLI.getOperationAction(Node->getOpcode(),
1210                                         Node->getValueType(0));
1211       else
1212         Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1213     }
1214     break;
1215   }
1216   case ISD::LOAD:
1217   case ISD::STORE:
1218     // FIXME: Model these properly.  LOAD and STORE are complicated, and
1219     // STORE expects the unlegalized operand in some cases.
1220     SimpleFinishLegalizing = false;
1221     break;
1222   case ISD::CALLSEQ_START:
1223   case ISD::CALLSEQ_END:
1224     // FIXME: This shouldn't be necessary.  These nodes have special properties
1225     // dealing with the recursive nature of legalization.  Removing this
1226     // special case should be done as part of making LegalizeDAG non-recursive.
1227     SimpleFinishLegalizing = false;
1228     break;
1229   case ISD::EXTRACT_ELEMENT:
1230   case ISD::FLT_ROUNDS_:
1231   case ISD::SADDO:
1232   case ISD::SSUBO:
1233   case ISD::UADDO:
1234   case ISD::USUBO:
1235   case ISD::SMULO:
1236   case ISD::UMULO:
1237   case ISD::FPOWI:
1238   case ISD::MERGE_VALUES:
1239   case ISD::EH_RETURN:
1240   case ISD::FRAME_TO_ARGS_OFFSET:
1241   case ISD::EH_SJLJ_SETJMP:
1242   case ISD::EH_SJLJ_LONGJMP:
1243     // These operations lie about being legal: when they claim to be legal,
1244     // they should actually be expanded.
1245     Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1246     if (Action == TargetLowering::Legal)
1247       Action = TargetLowering::Expand;
1248     break;
1249   case ISD::INIT_TRAMPOLINE:
1250   case ISD::ADJUST_TRAMPOLINE:
1251   case ISD::FRAMEADDR:
1252   case ISD::RETURNADDR:
1253     // These operations lie about being legal: when they claim to be legal,
1254     // they should actually be custom-lowered.
1255     Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1256     if (Action == TargetLowering::Legal)
1257       Action = TargetLowering::Custom;
1258     break;
1259   case ISD::DEBUGTRAP:
1260     Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1261     if (Action == TargetLowering::Expand) {
1262       // replace ISD::DEBUGTRAP with ISD::TRAP
1263       SDValue NewVal;
1264       NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
1265                            Node->getOperand(0));
1266       ReplaceNode(Node, NewVal.getNode());
1267       LegalizeOp(NewVal.getNode());
1268       return;
1269     }
1270     break;
1271
1272   default:
1273     if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1274       Action = TargetLowering::Legal;
1275     } else {
1276       Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1277     }
1278     break;
1279   }
1280
1281   if (SimpleFinishLegalizing) {
1282     SDNode *NewNode = Node;
1283     switch (Node->getOpcode()) {
1284     default: break;
1285     case ISD::SHL:
1286     case ISD::SRL:
1287     case ISD::SRA:
1288     case ISD::ROTL:
1289     case ISD::ROTR:
1290       // Legalizing shifts/rotates requires adjusting the shift amount
1291       // to the appropriate width.
1292       if (!Node->getOperand(1).getValueType().isVector()) {
1293         SDValue SAO =
1294           DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1295                                     Node->getOperand(1));
1296         HandleSDNode Handle(SAO);
1297         LegalizeOp(SAO.getNode());
1298         NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1299                                          Handle.getValue());
1300       }
1301       break;
1302     case ISD::SRL_PARTS:
1303     case ISD::SRA_PARTS:
1304     case ISD::SHL_PARTS:
1305       // Legalizing shifts/rotates requires adjusting the shift amount
1306       // to the appropriate width.
1307       if (!Node->getOperand(2).getValueType().isVector()) {
1308         SDValue SAO =
1309           DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1310                                     Node->getOperand(2));
1311         HandleSDNode Handle(SAO);
1312         LegalizeOp(SAO.getNode());
1313         NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1314                                          Node->getOperand(1),
1315                                          Handle.getValue());
1316       }
1317       break;
1318     }
1319
1320     if (NewNode != Node) {
1321       DAG.ReplaceAllUsesWith(Node, NewNode);
1322       for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1323         DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
1324       ReplacedNode(Node);
1325       Node = NewNode;
1326     }
1327     switch (Action) {
1328     case TargetLowering::Legal:
1329       return;
1330     case TargetLowering::Custom: {
1331       // FIXME: The handling for custom lowering with multiple results is
1332       // a complete mess.
1333       SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1334       if (Res.getNode()) {
1335         SmallVector<SDValue, 8> ResultVals;
1336         for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1337           if (e == 1)
1338             ResultVals.push_back(Res);
1339           else
1340             ResultVals.push_back(Res.getValue(i));
1341         }
1342         if (Res.getNode() != Node || Res.getResNo() != 0) {
1343           DAG.ReplaceAllUsesWith(Node, ResultVals.data());
1344           for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1345             DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
1346           ReplacedNode(Node);
1347         }
1348         return;
1349       }
1350     }
1351       // FALL THROUGH
1352     case TargetLowering::Expand:
1353       ExpandNode(Node);
1354       return;
1355     case TargetLowering::Promote:
1356       PromoteNode(Node);
1357       return;
1358     }
1359   }
1360
1361   switch (Node->getOpcode()) {
1362   default:
1363 #ifndef NDEBUG
1364     dbgs() << "NODE: ";
1365     Node->dump( &DAG);
1366     dbgs() << "\n";
1367 #endif
1368     llvm_unreachable("Do not know how to legalize this operator!");
1369
1370   case ISD::CALLSEQ_START:
1371   case ISD::CALLSEQ_END:
1372     break;
1373   case ISD::LOAD: {
1374     return LegalizeLoadOps(Node);
1375   }
1376   case ISD::STORE: {
1377     return LegalizeStoreOps(Node);
1378   }
1379   }
1380 }
1381
1382 SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1383   SDValue Vec = Op.getOperand(0);
1384   SDValue Idx = Op.getOperand(1);
1385   SDLoc dl(Op);
1386   // Store the value to a temporary stack slot, then LOAD the returned part.
1387   SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1388   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1389                             MachinePointerInfo(), false, false, 0);
1390
1391   // Add the offset to the index.
1392   unsigned EltSize =
1393       Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1394   Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1395                     DAG.getConstant(EltSize, Idx.getValueType()));
1396
1397   Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
1398   StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1399
1400   if (Op.getValueType().isVector())
1401     return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
1402                        false, false, false, 0);
1403   return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
1404                         MachinePointerInfo(),
1405                         Vec.getValueType().getVectorElementType(),
1406                         false, false, 0);
1407 }
1408
1409 SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1410   assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1411
1412   SDValue Vec  = Op.getOperand(0);
1413   SDValue Part = Op.getOperand(1);
1414   SDValue Idx  = Op.getOperand(2);
1415   SDLoc dl(Op);
1416
1417   // Store the value to a temporary stack slot, then LOAD the returned part.
1418
1419   SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1420   int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1421   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1422
1423   // First store the whole vector.
1424   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1425                             false, false, 0);
1426
1427   // Then store the inserted part.
1428
1429   // Add the offset to the index.
1430   unsigned EltSize =
1431       Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1432
1433   Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1434                     DAG.getConstant(EltSize, Idx.getValueType()));
1435   Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
1436
1437   SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1438                                     StackPtr);
1439
1440   // Store the subvector.
1441   Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1442                     MachinePointerInfo(), false, false, 0);
1443
1444   // Finally, load the updated vector.
1445   return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
1446                      false, false, false, 0);
1447 }
1448
1449 SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1450   // We can't handle this case efficiently.  Allocate a sufficiently
1451   // aligned object on the stack, store each element into it, then load
1452   // the result as a vector.
1453   // Create the stack frame object.
1454   EVT VT = Node->getValueType(0);
1455   EVT EltVT = VT.getVectorElementType();
1456   SDLoc dl(Node);
1457   SDValue FIPtr = DAG.CreateStackTemporary(VT);
1458   int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
1459   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1460
1461   // Emit a store of each element to the stack slot.
1462   SmallVector<SDValue, 8> Stores;
1463   unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
1464   // Store (in the right endianness) the elements to memory.
1465   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1466     // Ignore undef elements.
1467     if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1468
1469     unsigned Offset = TypeByteSize*i;
1470
1471     SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1472     Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1473
1474     // If the destination vector element type is narrower than the source
1475     // element type, only store the bits necessary.
1476     if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
1477       Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
1478                                          Node->getOperand(i), Idx,
1479                                          PtrInfo.getWithOffset(Offset),
1480                                          EltVT, false, false, 0));
1481     } else
1482       Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
1483                                     Node->getOperand(i), Idx,
1484                                     PtrInfo.getWithOffset(Offset),
1485                                     false, false, 0));
1486   }
1487
1488   SDValue StoreChain;
1489   if (!Stores.empty())    // Not all undef elements?
1490     StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1491                              &Stores[0], Stores.size());
1492   else
1493     StoreChain = DAG.getEntryNode();
1494
1495   // Result is a load from the stack slot.
1496   return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1497                      false, false, false, 0);
1498 }
1499
1500 SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1501   SDLoc dl(Node);
1502   SDValue Tmp1 = Node->getOperand(0);
1503   SDValue Tmp2 = Node->getOperand(1);
1504
1505   // Get the sign bit of the RHS.  First obtain a value that has the same
1506   // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
1507   SDValue SignBit;
1508   EVT FloatVT = Tmp2.getValueType();
1509   EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
1510   if (TLI.isTypeLegal(IVT)) {
1511     // Convert to an integer with the same sign bit.
1512     SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
1513   } else {
1514     // Store the float to memory, then load the sign part out as an integer.
1515     MVT LoadTy = TLI.getPointerTy();
1516     // First create a temporary that is aligned for both the load and store.
1517     SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1518     // Then store the float to it.
1519     SDValue Ch =
1520       DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
1521                    false, false, 0);
1522     if (TLI.isBigEndian()) {
1523       assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1524       // Load out a legal integer with the same sign bit as the float.
1525       SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
1526                             false, false, false, 0);
1527     } else { // Little endian
1528       SDValue LoadPtr = StackPtr;
1529       // The float may be wider than the integer we are going to load.  Advance
1530       // the pointer so that the loaded integer will contain the sign bit.
1531       unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1532       unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1533       LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1534                             LoadPtr,
1535                             DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
1536       // Load a legal integer containing the sign bit.
1537       SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
1538                             false, false, false, 0);
1539       // Move the sign bit to the top bit of the loaded integer.
1540       unsigned BitShift = LoadTy.getSizeInBits() -
1541         (FloatVT.getSizeInBits() - 8 * ByteOffset);
1542       assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1543       if (BitShift)
1544         SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
1545                               DAG.getConstant(BitShift,
1546                                  TLI.getShiftAmountTy(SignBit.getValueType())));
1547     }
1548   }
1549   // Now get the sign bit proper, by seeing whether the value is negative.
1550   SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
1551                          SignBit, DAG.getConstant(0, SignBit.getValueType()),
1552                          ISD::SETLT);
1553   // Get the absolute value of the result.
1554   SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1555   // Select between the nabs and abs value based on the sign bit of
1556   // the input.
1557   return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
1558                        DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1559                        AbsVal);
1560 }
1561
1562 void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1563                                            SmallVectorImpl<SDValue> &Results) {
1564   unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1565   assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1566           " not tell us which reg is the stack pointer!");
1567   SDLoc dl(Node);
1568   EVT VT = Node->getValueType(0);
1569   SDValue Tmp1 = SDValue(Node, 0);
1570   SDValue Tmp2 = SDValue(Node, 1);
1571   SDValue Tmp3 = Node->getOperand(2);
1572   SDValue Chain = Tmp1.getOperand(0);
1573
1574   // Chain the dynamic stack allocation so that it doesn't modify the stack
1575   // pointer when other instructions are using the stack.
1576   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1577                                SDLoc(Node));
1578
1579   SDValue Size  = Tmp2.getOperand(1);
1580   SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1581   Chain = SP.getValue(1);
1582   unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
1583   unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
1584   Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size);       // Value
1585   if (Align > StackAlign)
1586     Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1587                        DAG.getConstant(-(uint64_t)Align, VT));
1588   Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1);     // Output chain
1589
1590   Tmp2 = DAG.getCALLSEQ_END(Chain,  DAG.getIntPtrConstant(0, true),
1591                             DAG.getIntPtrConstant(0, true), SDValue(),
1592                             SDLoc(Node));
1593
1594   Results.push_back(Tmp1);
1595   Results.push_back(Tmp2);
1596 }
1597
1598 /// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
1599 /// condition code CC on the current target.
1600 /// If the SETCC has been legalized using AND / OR, then the legalized node
1601 /// will be stored in LHS.  RHS and CC will be set to SDValue().
1602 /// If the SETCC has been legalized by using getSetCCSwappedOperands(),
1603 /// then the values of LHS and RHS will be swapped and CC will be set to the
1604 /// new condition.
1605 /// \returns true if the SetCC has been legalized, false if it hasn't.
1606 bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
1607                                                  SDValue &LHS, SDValue &RHS,
1608                                                  SDValue &CC,
1609                                                  SDLoc dl) {
1610   MVT OpVT = LHS.getSimpleValueType();
1611   ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1612   switch (TLI.getCondCodeAction(CCCode, OpVT)) {
1613   default: llvm_unreachable("Unknown condition code action!");
1614   case TargetLowering::Legal:
1615     // Nothing to do.
1616     break;
1617   case TargetLowering::Expand: {
1618     ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1619     if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1620       std::swap(LHS, RHS);
1621       CC = DAG.getCondCode(InvCC);
1622       return true;
1623     }
1624     ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1625     unsigned Opc = 0;
1626     switch (CCCode) {
1627     default: llvm_unreachable("Don't know how to expand this condition!");
1628     case ISD::SETO:
1629         assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1630             == TargetLowering::Legal
1631             && "If SETO is expanded, SETOEQ must be legal!");
1632         CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1633     case ISD::SETUO:
1634         assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1635             == TargetLowering::Legal
1636             && "If SETUO is expanded, SETUNE must be legal!");
1637         CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR;  break;
1638     case ISD::SETOEQ:
1639     case ISD::SETOGT:
1640     case ISD::SETOGE:
1641     case ISD::SETOLT:
1642     case ISD::SETOLE:
1643     case ISD::SETONE:
1644     case ISD::SETUEQ:
1645     case ISD::SETUNE:
1646     case ISD::SETUGT:
1647     case ISD::SETUGE:
1648     case ISD::SETULT:
1649     case ISD::SETULE:
1650         // If we are floating point, assign and break, otherwise fall through.
1651         if (!OpVT.isInteger()) {
1652           // We can use the 4th bit to tell if we are the unordered
1653           // or ordered version of the opcode.
1654           CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1655           Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1656           CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1657           break;
1658         }
1659         // Fallthrough if we are unsigned integer.
1660     case ISD::SETLE:
1661     case ISD::SETGT:
1662     case ISD::SETGE:
1663     case ISD::SETLT:
1664     case ISD::SETNE:
1665     case ISD::SETEQ:
1666       // We only support using the inverted operation, which is computed above
1667       // and not a different manner of supporting expanding these cases.
1668       llvm_unreachable("Don't know how to expand this condition!");
1669     }
1670
1671     SDValue SetCC1, SetCC2;
1672     if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1673       // If we aren't the ordered or unorder operation,
1674       // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1675       SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1676       SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1677     } else {
1678       // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1679       SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1680       SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1681     }
1682     LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
1683     RHS = SDValue();
1684     CC  = SDValue();
1685     return true;
1686   }
1687   }
1688   return false;
1689 }
1690
1691 /// EmitStackConvert - Emit a store/load combination to the stack.  This stores
1692 /// SrcOp to a stack slot of type SlotVT, truncating it if needed.  It then does
1693 /// a load from the stack slot to DestVT, extending it if needed.
1694 /// The resultant code need not be legal.
1695 SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
1696                                                EVT SlotVT,
1697                                                EVT DestVT,
1698                                                SDLoc dl) {
1699   // Create the stack frame object.
1700   unsigned SrcAlign =
1701     TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
1702                                               getTypeForEVT(*DAG.getContext()));
1703   SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
1704
1705   FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1706   int SPFI = StackPtrFI->getIndex();
1707   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
1708
1709   unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1710   unsigned SlotSize = SlotVT.getSizeInBits();
1711   unsigned DestSize = DestVT.getSizeInBits();
1712   Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
1713   unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
1714
1715   // Emit a store to the stack slot.  Use a truncstore if the input value is
1716   // later than DestVT.
1717   SDValue Store;
1718
1719   if (SrcSize > SlotSize)
1720     Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
1721                               PtrInfo, SlotVT, false, false, SrcAlign);
1722   else {
1723     assert(SrcSize == SlotSize && "Invalid store");
1724     Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
1725                          PtrInfo, false, false, SrcAlign);
1726   }
1727
1728   // Result is a load from the stack slot.
1729   if (SlotSize == DestSize)
1730     return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
1731                        false, false, false, DestAlign);
1732
1733   assert(SlotSize < DestSize && "Unknown extension!");
1734   return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
1735                         PtrInfo, SlotVT, false, false, DestAlign);
1736 }
1737
1738 SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
1739   SDLoc dl(Node);
1740   // Create a vector sized/aligned stack slot, store the value to element #0,
1741   // then load the whole vector back out.
1742   SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
1743
1744   FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1745   int SPFI = StackPtrFI->getIndex();
1746
1747   SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1748                                  StackPtr,
1749                                  MachinePointerInfo::getFixedStack(SPFI),
1750                                  Node->getValueType(0).getVectorElementType(),
1751                                  false, false, 0);
1752   return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
1753                      MachinePointerInfo::getFixedStack(SPFI),
1754                      false, false, false, 0);
1755 }
1756
1757
1758 /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
1759 /// support the operation, but do support the resultant vector type.
1760 SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
1761   unsigned NumElems = Node->getNumOperands();
1762   SDValue Value1, Value2;
1763   SDLoc dl(Node);
1764   EVT VT = Node->getValueType(0);
1765   EVT OpVT = Node->getOperand(0).getValueType();
1766   EVT EltVT = VT.getVectorElementType();
1767
1768   // If the only non-undef value is the low element, turn this into a
1769   // SCALAR_TO_VECTOR node.  If this is { X, X, X, X }, determine X.
1770   bool isOnlyLowElement = true;
1771   bool MoreThanTwoValues = false;
1772   bool isConstant = true;
1773   for (unsigned i = 0; i < NumElems; ++i) {
1774     SDValue V = Node->getOperand(i);
1775     if (V.getOpcode() == ISD::UNDEF)
1776       continue;
1777     if (i > 0)
1778       isOnlyLowElement = false;
1779     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
1780       isConstant = false;
1781
1782     if (!Value1.getNode()) {
1783       Value1 = V;
1784     } else if (!Value2.getNode()) {
1785       if (V != Value1)
1786         Value2 = V;
1787     } else if (V != Value1 && V != Value2) {
1788       MoreThanTwoValues = true;
1789     }
1790   }
1791
1792   if (!Value1.getNode())
1793     return DAG.getUNDEF(VT);
1794
1795   if (isOnlyLowElement)
1796     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
1797
1798   // If all elements are constants, create a load from the constant pool.
1799   if (isConstant) {
1800     SmallVector<Constant*, 16> CV;
1801     for (unsigned i = 0, e = NumElems; i != e; ++i) {
1802       if (ConstantFPSDNode *V =
1803           dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
1804         CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
1805       } else if (ConstantSDNode *V =
1806                  dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
1807         if (OpVT==EltVT)
1808           CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1809         else {
1810           // If OpVT and EltVT don't match, EltVT is not legal and the
1811           // element values have been promoted/truncated earlier.  Undo this;
1812           // we don't want a v16i8 to become a v16i32 for example.
1813           const ConstantInt *CI = V->getConstantIntValue();
1814           CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1815                                         CI->getZExtValue()));
1816         }
1817       } else {
1818         assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
1819         Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
1820         CV.push_back(UndefValue::get(OpNTy));
1821       }
1822     }
1823     Constant *CP = ConstantVector::get(CV);
1824     SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
1825     unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
1826     return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
1827                        MachinePointerInfo::getConstantPool(),
1828                        false, false, false, Alignment);
1829   }
1830
1831   if (!MoreThanTwoValues) {
1832     SmallVector<int, 8> ShuffleVec(NumElems, -1);
1833     for (unsigned i = 0; i < NumElems; ++i) {
1834       SDValue V = Node->getOperand(i);
1835       if (V.getOpcode() == ISD::UNDEF)
1836         continue;
1837       ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1838     }
1839     if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
1840       // Get the splatted value into the low element of a vector register.
1841       SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1842       SDValue Vec2;
1843       if (Value2.getNode())
1844         Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1845       else
1846         Vec2 = DAG.getUNDEF(VT);
1847
1848       // Return shuffle(LowValVec, undef, <0,0,0,0>)
1849       return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1850     }
1851   }
1852
1853   // Otherwise, we can't handle this case efficiently.
1854   return ExpandVectorBuildThroughStack(Node);
1855 }
1856
1857 // ExpandLibCall - Expand a node into a call to a libcall.  If the result value
1858 // does not fit into a register, return the lo part and set the hi part to the
1859 // by-reg argument.  If it does fit into a single register, return the result
1860 // and leave the Hi part unset.
1861 SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
1862                                             bool isSigned) {
1863   TargetLowering::ArgListTy Args;
1864   TargetLowering::ArgListEntry Entry;
1865   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1866     EVT ArgVT = Node->getOperand(i).getValueType();
1867     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1868     Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
1869     Entry.isSExt = isSigned;
1870     Entry.isZExt = !isSigned;
1871     Args.push_back(Entry);
1872   }
1873   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1874                                          TLI.getPointerTy());
1875
1876   Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
1877
1878   // By default, the input chain to this libcall is the entry node of the
1879   // function. If the libcall is going to be emitted as a tail call then
1880   // TLI.isUsedByReturnOnly will change it to the right chain if the return
1881   // node which is being folded has a non-entry input chain.
1882   SDValue InChain = DAG.getEntryNode();
1883
1884   // isTailCall may be true since the callee does not reference caller stack
1885   // frame. Check if it's in the right position.
1886   SDValue TCChain = InChain;
1887   bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
1888   if (isTailCall)
1889     InChain = TCChain;
1890
1891   TargetLowering::
1892   CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
1893                     0, TLI.getLibcallCallingConv(LC), isTailCall,
1894                     /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
1895                     Callee, Args, DAG, SDLoc(Node));
1896   std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1897
1898
1899   if (!CallInfo.second.getNode())
1900     // It's a tailcall, return the chain (which is the DAG root).
1901     return DAG.getRoot();
1902
1903   return CallInfo.first;
1904 }
1905
1906 /// ExpandLibCall - Generate a libcall taking the given operands as arguments
1907 /// and returning a result of type RetVT.
1908 SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1909                                             const SDValue *Ops, unsigned NumOps,
1910                                             bool isSigned, SDLoc dl) {
1911   TargetLowering::ArgListTy Args;
1912   Args.reserve(NumOps);
1913
1914   TargetLowering::ArgListEntry Entry;
1915   for (unsigned i = 0; i != NumOps; ++i) {
1916     Entry.Node = Ops[i];
1917     Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1918     Entry.isSExt = isSigned;
1919     Entry.isZExt = !isSigned;
1920     Args.push_back(Entry);
1921   }
1922   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1923                                          TLI.getPointerTy());
1924
1925   Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
1926   TargetLowering::
1927   CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1928                        false, 0, TLI.getLibcallCallingConv(LC),
1929                        /*isTailCall=*/false,
1930                   /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
1931                   Callee, Args, DAG, dl);
1932   std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
1933
1934   return CallInfo.first;
1935 }
1936
1937 // ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1938 // ExpandLibCall except that the first operand is the in-chain.
1939 std::pair<SDValue, SDValue>
1940 SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1941                                          SDNode *Node,
1942                                          bool isSigned) {
1943   SDValue InChain = Node->getOperand(0);
1944
1945   TargetLowering::ArgListTy Args;
1946   TargetLowering::ArgListEntry Entry;
1947   for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1948     EVT ArgVT = Node->getOperand(i).getValueType();
1949     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1950     Entry.Node = Node->getOperand(i);
1951     Entry.Ty = ArgTy;
1952     Entry.isSExt = isSigned;
1953     Entry.isZExt = !isSigned;
1954     Args.push_back(Entry);
1955   }
1956   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1957                                          TLI.getPointerTy());
1958
1959   Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
1960   TargetLowering::
1961   CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
1962                     0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
1963                     /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
1964                     Callee, Args, DAG, SDLoc(Node));
1965   std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1966
1967   return CallInfo;
1968 }
1969
1970 SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1971                                               RTLIB::Libcall Call_F32,
1972                                               RTLIB::Libcall Call_F64,
1973                                               RTLIB::Libcall Call_F80,
1974                                               RTLIB::Libcall Call_F128,
1975                                               RTLIB::Libcall Call_PPCF128) {
1976   RTLIB::Libcall LC;
1977   switch (Node->getSimpleValueType(0).SimpleTy) {
1978   default: llvm_unreachable("Unexpected request for libcall!");
1979   case MVT::f32: LC = Call_F32; break;
1980   case MVT::f64: LC = Call_F64; break;
1981   case MVT::f80: LC = Call_F80; break;
1982   case MVT::f128: LC = Call_F128; break;
1983   case MVT::ppcf128: LC = Call_PPCF128; break;
1984   }
1985   return ExpandLibCall(LC, Node, false);
1986 }
1987
1988 SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
1989                                                RTLIB::Libcall Call_I8,
1990                                                RTLIB::Libcall Call_I16,
1991                                                RTLIB::Libcall Call_I32,
1992                                                RTLIB::Libcall Call_I64,
1993                                                RTLIB::Libcall Call_I128) {
1994   RTLIB::Libcall LC;
1995   switch (Node->getSimpleValueType(0).SimpleTy) {
1996   default: llvm_unreachable("Unexpected request for libcall!");
1997   case MVT::i8:   LC = Call_I8; break;
1998   case MVT::i16:  LC = Call_I16; break;
1999   case MVT::i32:  LC = Call_I32; break;
2000   case MVT::i64:  LC = Call_I64; break;
2001   case MVT::i128: LC = Call_I128; break;
2002   }
2003   return ExpandLibCall(LC, Node, isSigned);
2004 }
2005
2006 /// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2007 static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2008                                      const TargetLowering &TLI) {
2009   RTLIB::Libcall LC;
2010   switch (Node->getSimpleValueType(0).SimpleTy) {
2011   default: llvm_unreachable("Unexpected request for libcall!");
2012   case MVT::i8:   LC= isSigned ? RTLIB::SDIVREM_I8  : RTLIB::UDIVREM_I8;  break;
2013   case MVT::i16:  LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2014   case MVT::i32:  LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2015   case MVT::i64:  LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2016   case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2017   }
2018
2019   return TLI.getLibcallName(LC) != 0;
2020 }
2021
2022 /// useDivRem - Only issue divrem libcall if both quotient and remainder are
2023 /// needed.
2024 static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2025   // The other use might have been replaced with a divrem already.
2026   unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
2027   unsigned OtherOpcode = 0;
2028   if (isSigned)
2029     OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
2030   else
2031     OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
2032
2033   SDValue Op0 = Node->getOperand(0);
2034   SDValue Op1 = Node->getOperand(1);
2035   for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2036          UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2037     SDNode *User = *UI;
2038     if (User == Node)
2039       continue;
2040     if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
2041         User->getOperand(0) == Op0 &&
2042         User->getOperand(1) == Op1)
2043       return true;
2044   }
2045   return false;
2046 }
2047
2048 /// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2049 /// pairs.
2050 void
2051 SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2052                                           SmallVectorImpl<SDValue> &Results) {
2053   unsigned Opcode = Node->getOpcode();
2054   bool isSigned = Opcode == ISD::SDIVREM;
2055
2056   RTLIB::Libcall LC;
2057   switch (Node->getSimpleValueType(0).SimpleTy) {
2058   default: llvm_unreachable("Unexpected request for libcall!");
2059   case MVT::i8:   LC= isSigned ? RTLIB::SDIVREM_I8  : RTLIB::UDIVREM_I8;  break;
2060   case MVT::i16:  LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2061   case MVT::i32:  LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2062   case MVT::i64:  LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2063   case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2064   }
2065
2066   // The input chain to this libcall is the entry node of the function.
2067   // Legalizing the call will automatically add the previous call to the
2068   // dependence.
2069   SDValue InChain = DAG.getEntryNode();
2070
2071   EVT RetVT = Node->getValueType(0);
2072   Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
2073
2074   TargetLowering::ArgListTy Args;
2075   TargetLowering::ArgListEntry Entry;
2076   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2077     EVT ArgVT = Node->getOperand(i).getValueType();
2078     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
2079     Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2080     Entry.isSExt = isSigned;
2081     Entry.isZExt = !isSigned;
2082     Args.push_back(Entry);
2083   }
2084
2085   // Also pass the return address of the remainder.
2086   SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2087   Entry.Node = FIPtr;
2088   Entry.Ty = RetTy->getPointerTo();
2089   Entry.isSExt = isSigned;
2090   Entry.isZExt = !isSigned;
2091   Args.push_back(Entry);
2092
2093   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2094                                          TLI.getPointerTy());
2095
2096   SDLoc dl(Node);
2097   TargetLowering::
2098   CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
2099                     0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2100                     /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2101                     Callee, Args, DAG, dl);
2102   std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2103
2104   // Remainder is loaded back from the stack frame.
2105   SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
2106                             MachinePointerInfo(), false, false, false, 0);
2107   Results.push_back(CallInfo.first);
2108   Results.push_back(Rem);
2109 }
2110
2111 /// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2112 static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2113   RTLIB::Libcall LC;
2114   switch (Node->getSimpleValueType(0).SimpleTy) {
2115   default: llvm_unreachable("Unexpected request for libcall!");
2116   case MVT::f32:     LC = RTLIB::SINCOS_F32; break;
2117   case MVT::f64:     LC = RTLIB::SINCOS_F64; break;
2118   case MVT::f80:     LC = RTLIB::SINCOS_F80; break;
2119   case MVT::f128:    LC = RTLIB::SINCOS_F128; break;
2120   case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2121   }
2122   return TLI.getLibcallName(LC) != 0;
2123 }
2124
2125 /// canCombineSinCosLibcall - Return true if sincos libcall is available and
2126 /// can be used to combine sin and cos.
2127 static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2128                                     const TargetMachine &TM) {
2129   if (!isSinCosLibcallAvailable(Node, TLI))
2130     return false;
2131   // GNU sin/cos functions set errno while sincos does not. Therefore
2132   // combining sin and cos is only safe if unsafe-fpmath is enabled.
2133   bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2134   if (isGNU && !TM.Options.UnsafeFPMath)
2135     return false;
2136   return true;
2137 }
2138
2139 /// useSinCos - Only issue sincos libcall if both sin and cos are
2140 /// needed.
2141 static bool useSinCos(SDNode *Node) {
2142   unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2143     ? ISD::FCOS : ISD::FSIN;
2144
2145   SDValue Op0 = Node->getOperand(0);
2146   for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2147        UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2148     SDNode *User = *UI;
2149     if (User == Node)
2150       continue;
2151     // The other user might have been turned into sincos already.
2152     if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2153       return true;
2154   }
2155   return false;
2156 }
2157
2158 /// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2159 /// pairs.
2160 void
2161 SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2162                                           SmallVectorImpl<SDValue> &Results) {
2163   RTLIB::Libcall LC;
2164   switch (Node->getSimpleValueType(0).SimpleTy) {
2165   default: llvm_unreachable("Unexpected request for libcall!");
2166   case MVT::f32:     LC = RTLIB::SINCOS_F32; break;
2167   case MVT::f64:     LC = RTLIB::SINCOS_F64; break;
2168   case MVT::f80:     LC = RTLIB::SINCOS_F80; break;
2169   case MVT::f128:    LC = RTLIB::SINCOS_F128; break;
2170   case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2171   }
2172
2173   // The input chain to this libcall is the entry node of the function.
2174   // Legalizing the call will automatically add the previous call to the
2175   // dependence.
2176   SDValue InChain = DAG.getEntryNode();
2177
2178   EVT RetVT = Node->getValueType(0);
2179   Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
2180
2181   TargetLowering::ArgListTy Args;
2182   TargetLowering::ArgListEntry Entry;
2183
2184   // Pass the argument.
2185   Entry.Node = Node->getOperand(0);
2186   Entry.Ty = RetTy;
2187   Entry.isSExt = false;
2188   Entry.isZExt = false;
2189   Args.push_back(Entry);
2190
2191   // Pass the return address of sin.
2192   SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2193   Entry.Node = SinPtr;
2194   Entry.Ty = RetTy->getPointerTo();
2195   Entry.isSExt = false;
2196   Entry.isZExt = false;
2197   Args.push_back(Entry);
2198
2199   // Also pass the return address of the cos.
2200   SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2201   Entry.Node = CosPtr;
2202   Entry.Ty = RetTy->getPointerTo();
2203   Entry.isSExt = false;
2204   Entry.isZExt = false;
2205   Args.push_back(Entry);
2206
2207   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2208                                          TLI.getPointerTy());
2209
2210   SDLoc dl(Node);
2211   TargetLowering::
2212   CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2213                        false, false, false, false,
2214                        0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2215                        /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2216                        Callee, Args, DAG, dl);
2217   std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2218
2219   Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2220                                 MachinePointerInfo(), false, false, false, 0));
2221   Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2222                                 MachinePointerInfo(), false, false, false, 0));
2223 }
2224
2225 /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2226 /// INT_TO_FP operation of the specified operand when the target requests that
2227 /// we expand it.  At this point, we know that the result and operand types are
2228 /// legal for the target.
2229 SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2230                                                    SDValue Op0,
2231                                                    EVT DestVT,
2232                                                    SDLoc dl) {
2233   if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
2234     // simple 32-bit [signed|unsigned] integer to float/double expansion
2235
2236     // Get the stack frame index of a 8 byte buffer.
2237     SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
2238
2239     // word offset constant for Hi/Lo address computation
2240     SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
2241     // set up Hi and Lo (into buffer) address based on endian
2242     SDValue Hi = StackSlot;
2243     SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2244                              StackSlot, WordOff);
2245     if (TLI.isLittleEndian())
2246       std::swap(Hi, Lo);
2247
2248     // if signed map to unsigned space
2249     SDValue Op0Mapped;
2250     if (isSigned) {
2251       // constant used to invert sign bit (signed to unsigned mapping)
2252       SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2253       Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
2254     } else {
2255       Op0Mapped = Op0;
2256     }
2257     // store the lo of the constructed double - based on integer input
2258     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
2259                                   Op0Mapped, Lo, MachinePointerInfo(),
2260                                   false, false, 0);
2261     // initial hi portion of constructed double
2262     SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
2263     // store the hi of the constructed double - biased exponent
2264     SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2265                                   MachinePointerInfo(),
2266                                   false, false, 0);
2267     // load the constructed double
2268     SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
2269                                MachinePointerInfo(), false, false, false, 0);
2270     // FP constant to bias correct the final result
2271     SDValue Bias = DAG.getConstantFP(isSigned ?
2272                                      BitsToDouble(0x4330000080000000ULL) :
2273                                      BitsToDouble(0x4330000000000000ULL),
2274                                      MVT::f64);
2275     // subtract the bias
2276     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
2277     // final result
2278     SDValue Result;
2279     // handle final rounding
2280     if (DestVT == MVT::f64) {
2281       // do nothing
2282       Result = Sub;
2283     } else if (DestVT.bitsLT(MVT::f64)) {
2284       Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
2285                            DAG.getIntPtrConstant(0));
2286     } else if (DestVT.bitsGT(MVT::f64)) {
2287       Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
2288     }
2289     return Result;
2290   }
2291   assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
2292   // Code below here assumes !isSigned without checking again.
2293
2294   // Implementation of unsigned i64 to f64 following the algorithm in
2295   // __floatundidf in compiler_rt. This implementation has the advantage
2296   // of performing rounding correctly, both in the default rounding mode
2297   // and in all alternate rounding modes.
2298   // TODO: Generalize this for use with other types.
2299   if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2300     SDValue TwoP52 =
2301       DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2302     SDValue TwoP84PlusTwoP52 =
2303       DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2304     SDValue TwoP84 =
2305       DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2306
2307     SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2308     SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2309                              DAG.getConstant(32, MVT::i64));
2310     SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2311     SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
2312     SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2313     SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
2314     SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2315                                 TwoP84PlusTwoP52);
2316     return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2317   }
2318
2319   // Implementation of unsigned i64 to f32.
2320   // TODO: Generalize this for use with other types.
2321   if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
2322     // For unsigned conversions, convert them to signed conversions using the
2323     // algorithm from the x86_64 __floatundidf in compiler_rt.
2324     if (!isSigned) {
2325       SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
2326
2327       SDValue ShiftConst =
2328           DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
2329       SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2330       SDValue AndConst = DAG.getConstant(1, MVT::i64);
2331       SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2332       SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
2333
2334       SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2335       SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
2336
2337       // TODO: This really should be implemented using a branch rather than a
2338       // select.  We happen to get lucky and machinesink does the right
2339       // thing most of the time.  This would be a good candidate for a
2340       //pseudo-op, or, even better, for whole-function isel.
2341       SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
2342         Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2343       return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
2344     }
2345
2346     // Otherwise, implement the fully general conversion.
2347
2348     SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
2349          DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2350     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2351          DAG.getConstant(UINT64_C(0x800), MVT::i64));
2352     SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
2353          DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2354     SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
2355                    And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2356     SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
2357     SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
2358                    Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
2359                    ISD::SETUGE);
2360     SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
2361     EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
2362
2363     SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2364                              DAG.getConstant(32, SHVT));
2365     SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2366     SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2367     SDValue TwoP32 =
2368       DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2369     SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2370     SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2371     SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2372     SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2373     return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2374                        DAG.getIntPtrConstant(0));
2375   }
2376
2377   SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
2378
2379   SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
2380                                  Op0, DAG.getConstant(0, Op0.getValueType()),
2381                                  ISD::SETLT);
2382   SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2383   SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
2384                                     SignSet, Four, Zero);
2385
2386   // If the sign bit of the integer is set, the large number will be treated
2387   // as a negative number.  To counteract this, the dynamic code adds an
2388   // offset depending on the data type.
2389   uint64_t FF;
2390   switch (Op0.getSimpleValueType().SimpleTy) {
2391   default: llvm_unreachable("Unsupported integer type!");
2392   case MVT::i8 : FF = 0x43800000ULL; break;  // 2^8  (as a float)
2393   case MVT::i16: FF = 0x47800000ULL; break;  // 2^16 (as a float)
2394   case MVT::i32: FF = 0x4F800000ULL; break;  // 2^32 (as a float)
2395   case MVT::i64: FF = 0x5F800000ULL; break;  // 2^64 (as a float)
2396   }
2397   if (TLI.isLittleEndian()) FF <<= 32;
2398   Constant *FudgeFactor = ConstantInt::get(
2399                                        Type::getInt64Ty(*DAG.getContext()), FF);
2400
2401   SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2402   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2403   CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
2404   Alignment = std::min(Alignment, 4u);
2405   SDValue FudgeInReg;
2406   if (DestVT == MVT::f32)
2407     FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
2408                              MachinePointerInfo::getConstantPool(),
2409                              false, false, false, Alignment);
2410   else {
2411     SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2412                                   DAG.getEntryNode(), CPIdx,
2413                                   MachinePointerInfo::getConstantPool(),
2414                                   MVT::f32, false, false, Alignment);
2415     HandleSDNode Handle(Load);
2416     LegalizeOp(Load.getNode());
2417     FudgeInReg = Handle.getValue();
2418   }
2419
2420   return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
2421 }
2422
2423 /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2424 /// *INT_TO_FP operation of the specified operand when the target requests that
2425 /// we promote it.  At this point, we know that the result and operand types are
2426 /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2427 /// operation that takes a larger input.
2428 SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
2429                                                     EVT DestVT,
2430                                                     bool isSigned,
2431                                                     SDLoc dl) {
2432   // First step, figure out the appropriate *INT_TO_FP operation to use.
2433   EVT NewInTy = LegalOp.getValueType();
2434
2435   unsigned OpToUse = 0;
2436
2437   // Scan for the appropriate larger type to use.
2438   while (1) {
2439     NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
2440     assert(NewInTy.isInteger() && "Ran out of possibilities!");
2441
2442     // If the target supports SINT_TO_FP of this type, use it.
2443     if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2444       OpToUse = ISD::SINT_TO_FP;
2445       break;
2446     }
2447     if (isSigned) continue;
2448
2449     // If the target supports UINT_TO_FP of this type, use it.
2450     if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2451       OpToUse = ISD::UINT_TO_FP;
2452       break;
2453     }
2454
2455     // Otherwise, try a larger type.
2456   }
2457
2458   // Okay, we found the operation and type to use.  Zero extend our input to the
2459   // desired type then run the operation on it.
2460   return DAG.getNode(OpToUse, dl, DestVT,
2461                      DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
2462                                  dl, NewInTy, LegalOp));
2463 }
2464
2465 /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2466 /// FP_TO_*INT operation of the specified operand when the target requests that
2467 /// we promote it.  At this point, we know that the result and operand types are
2468 /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2469 /// operation that returns a larger result.
2470 SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
2471                                                     EVT DestVT,
2472                                                     bool isSigned,
2473                                                     SDLoc dl) {
2474   // First step, figure out the appropriate FP_TO*INT operation to use.
2475   EVT NewOutTy = DestVT;
2476
2477   unsigned OpToUse = 0;
2478
2479   // Scan for the appropriate larger type to use.
2480   while (1) {
2481     NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
2482     assert(NewOutTy.isInteger() && "Ran out of possibilities!");
2483
2484     if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
2485       OpToUse = ISD::FP_TO_SINT;
2486       break;
2487     }
2488
2489     if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
2490       OpToUse = ISD::FP_TO_UINT;
2491       break;
2492     }
2493
2494     // Otherwise, try a larger type.
2495   }
2496
2497
2498   // Okay, we found the operation and type to use.
2499   SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
2500
2501   // Truncate the result of the extended FP_TO_*INT operation to the desired
2502   // size.
2503   return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
2504 }
2505
2506 /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2507 ///
2508 SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
2509   EVT VT = Op.getValueType();
2510   EVT SHVT = TLI.getShiftAmountTy(VT);
2511   SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
2512   switch (VT.getSimpleVT().SimpleTy) {
2513   default: llvm_unreachable("Unhandled Expand type in BSWAP!");
2514   case MVT::i16:
2515     Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2516     Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2517     return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2518   case MVT::i32:
2519     Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2520     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2521     Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2522     Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2523     Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2524     Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2525     Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2526     Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2527     return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2528   case MVT::i64:
2529     Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2530     Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2531     Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2532     Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2533     Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2534     Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2535     Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2536     Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2537     Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2538     Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2539     Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2540     Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2541     Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2542     Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2543     Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2544     Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2545     Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2546     Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2547     Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2548     Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2549     return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
2550   }
2551 }
2552
2553 /// ExpandBitCount - Expand the specified bitcount instruction into operations.
2554 ///
2555 SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
2556                                              SDLoc dl) {
2557   switch (Opc) {
2558   default: llvm_unreachable("Cannot expand this yet!");
2559   case ISD::CTPOP: {
2560     EVT VT = Op.getValueType();
2561     EVT ShVT = TLI.getShiftAmountTy(VT);
2562     unsigned Len = VT.getSizeInBits();
2563
2564     assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2565            "CTPOP not implemented for this type.");
2566
2567     // This is the "best" algorithm from
2568     // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2569
2570     SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2571     SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2572     SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2573     SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
2574
2575     // v = v - ((v >> 1) & 0x55555555...)
2576     Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2577                      DAG.getNode(ISD::AND, dl, VT,
2578                                  DAG.getNode(ISD::SRL, dl, VT, Op,
2579                                              DAG.getConstant(1, ShVT)),
2580                                  Mask55));
2581     // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2582     Op = DAG.getNode(ISD::ADD, dl, VT,
2583                      DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2584                      DAG.getNode(ISD::AND, dl, VT,
2585                                  DAG.getNode(ISD::SRL, dl, VT, Op,
2586                                              DAG.getConstant(2, ShVT)),
2587                                  Mask33));
2588     // v = (v + (v >> 4)) & 0x0F0F0F0F...
2589     Op = DAG.getNode(ISD::AND, dl, VT,
2590                      DAG.getNode(ISD::ADD, dl, VT, Op,
2591                                  DAG.getNode(ISD::SRL, dl, VT, Op,
2592                                              DAG.getConstant(4, ShVT))),
2593                      Mask0F);
2594     // v = (v * 0x01010101...) >> (Len - 8)
2595     Op = DAG.getNode(ISD::SRL, dl, VT,
2596                      DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2597                      DAG.getConstant(Len - 8, ShVT));
2598
2599     return Op;
2600   }
2601   case ISD::CTLZ_ZERO_UNDEF:
2602     // This trivially expands to CTLZ.
2603     return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
2604   case ISD::CTLZ: {
2605     // for now, we do this:
2606     // x = x | (x >> 1);
2607     // x = x | (x >> 2);
2608     // ...
2609     // x = x | (x >>16);
2610     // x = x | (x >>32); // for 64-bit input
2611     // return popcount(~x);
2612     //
2613     // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
2614     EVT VT = Op.getValueType();
2615     EVT ShVT = TLI.getShiftAmountTy(VT);
2616     unsigned len = VT.getSizeInBits();
2617     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
2618       SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
2619       Op = DAG.getNode(ISD::OR, dl, VT, Op,
2620                        DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
2621     }
2622     Op = DAG.getNOT(dl, Op, VT);
2623     return DAG.getNode(ISD::CTPOP, dl, VT, Op);
2624   }
2625   case ISD::CTTZ_ZERO_UNDEF:
2626     // This trivially expands to CTTZ.
2627     return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
2628   case ISD::CTTZ: {
2629     // for now, we use: { return popcount(~x & (x - 1)); }
2630     // unless the target has ctlz but not ctpop, in which case we use:
2631     // { return 32 - nlz(~x & (x-1)); }
2632     // see also http://www.hackersdelight.org/HDcode/ntz.cc
2633     EVT VT = Op.getValueType();
2634     SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2635                                DAG.getNOT(dl, Op, VT),
2636                                DAG.getNode(ISD::SUB, dl, VT, Op,
2637                                            DAG.getConstant(1, VT)));
2638     // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
2639     if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2640         TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
2641       return DAG.getNode(ISD::SUB, dl, VT,
2642                          DAG.getConstant(VT.getSizeInBits(), VT),
2643                          DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2644     return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
2645   }
2646   }
2647 }
2648
2649 std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2650   unsigned Opc = Node->getOpcode();
2651   MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2652   RTLIB::Libcall LC;
2653
2654   switch (Opc) {
2655   default:
2656     llvm_unreachable("Unhandled atomic intrinsic Expand!");
2657   case ISD::ATOMIC_SWAP:
2658     switch (VT.SimpleTy) {
2659     default: llvm_unreachable("Unexpected value type for atomic!");
2660     case MVT::i8:  LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2661     case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2662     case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2663     case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2664     case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
2665     }
2666     break;
2667   case ISD::ATOMIC_CMP_SWAP:
2668     switch (VT.SimpleTy) {
2669     default: llvm_unreachable("Unexpected value type for atomic!");
2670     case MVT::i8:  LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2671     case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2672     case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2673     case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2674     case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
2675     }
2676     break;
2677   case ISD::ATOMIC_LOAD_ADD:
2678     switch (VT.SimpleTy) {
2679     default: llvm_unreachable("Unexpected value type for atomic!");
2680     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2681     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2682     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2683     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2684     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
2685     }
2686     break;
2687   case ISD::ATOMIC_LOAD_SUB:
2688     switch (VT.SimpleTy) {
2689     default: llvm_unreachable("Unexpected value type for atomic!");
2690     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2691     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2692     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2693     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2694     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
2695     }
2696     break;
2697   case ISD::ATOMIC_LOAD_AND:
2698     switch (VT.SimpleTy) {
2699     default: llvm_unreachable("Unexpected value type for atomic!");
2700     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2701     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2702     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2703     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2704     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
2705     }
2706     break;
2707   case ISD::ATOMIC_LOAD_OR:
2708     switch (VT.SimpleTy) {
2709     default: llvm_unreachable("Unexpected value type for atomic!");
2710     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2711     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2712     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2713     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2714     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
2715     }
2716     break;
2717   case ISD::ATOMIC_LOAD_XOR:
2718     switch (VT.SimpleTy) {
2719     default: llvm_unreachable("Unexpected value type for atomic!");
2720     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2721     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2722     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2723     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2724     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
2725     }
2726     break;
2727   case ISD::ATOMIC_LOAD_NAND:
2728     switch (VT.SimpleTy) {
2729     default: llvm_unreachable("Unexpected value type for atomic!");
2730     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2731     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2732     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2733     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2734     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
2735     }
2736     break;
2737   case ISD::ATOMIC_LOAD_MAX:
2738     switch (VT.SimpleTy) {
2739     default: llvm_unreachable("Unexpected value type for atomic!");
2740     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2741     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2742     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2743     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2744     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2745     }
2746     break;
2747   case ISD::ATOMIC_LOAD_UMAX:
2748     switch (VT.SimpleTy) {
2749     default: llvm_unreachable("Unexpected value type for atomic!");
2750     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2751     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2752     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2753     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2754     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2755     }
2756     break;
2757   case ISD::ATOMIC_LOAD_MIN:
2758     switch (VT.SimpleTy) {
2759     default: llvm_unreachable("Unexpected value type for atomic!");
2760     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2761     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2762     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2763     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2764     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2765     }
2766     break;
2767   case ISD::ATOMIC_LOAD_UMIN:
2768     switch (VT.SimpleTy) {
2769     default: llvm_unreachable("Unexpected value type for atomic!");
2770     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2771     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2772     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2773     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2774     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2775     }
2776     break;
2777   }
2778
2779   return ExpandChainLibCall(LC, Node, false);
2780 }
2781
2782 void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2783   SmallVector<SDValue, 8> Results;
2784   SDLoc dl(Node);
2785   SDValue Tmp1, Tmp2, Tmp3, Tmp4;
2786   switch (Node->getOpcode()) {
2787   case ISD::CTPOP:
2788   case ISD::CTLZ:
2789   case ISD::CTLZ_ZERO_UNDEF:
2790   case ISD::CTTZ:
2791   case ISD::CTTZ_ZERO_UNDEF:
2792     Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2793     Results.push_back(Tmp1);
2794     break;
2795   case ISD::BSWAP:
2796     Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
2797     break;
2798   case ISD::FRAMEADDR:
2799   case ISD::RETURNADDR:
2800   case ISD::FRAME_TO_ARGS_OFFSET:
2801     Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2802     break;
2803   case ISD::FLT_ROUNDS_:
2804     Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2805     break;
2806   case ISD::EH_RETURN:
2807   case ISD::EH_LABEL:
2808   case ISD::PREFETCH:
2809   case ISD::VAEND:
2810   case ISD::EH_SJLJ_LONGJMP:
2811     // If the target didn't expand these, there's nothing to do, so just
2812     // preserve the chain and be done.
2813     Results.push_back(Node->getOperand(0));
2814     break;
2815   case ISD::EH_SJLJ_SETJMP:
2816     // If the target didn't expand this, just return 'zero' and preserve the
2817     // chain.
2818     Results.push_back(DAG.getConstant(0, MVT::i32));
2819     Results.push_back(Node->getOperand(0));
2820     break;
2821   case ISD::ATOMIC_FENCE: {
2822     // If the target didn't lower this, lower it to '__sync_synchronize()' call
2823     // FIXME: handle "fence singlethread" more efficiently.
2824     TargetLowering::ArgListTy Args;
2825     TargetLowering::
2826     CallLoweringInfo CLI(Node->getOperand(0),
2827                          Type::getVoidTy(*DAG.getContext()),
2828                       false, false, false, false, 0, CallingConv::C,
2829                       /*isTailCall=*/false,
2830                       /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2831                       DAG.getExternalSymbol("__sync_synchronize",
2832                                             TLI.getPointerTy()),
2833                       Args, DAG, dl);
2834     std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2835
2836     Results.push_back(CallResult.second);
2837     break;
2838   }
2839   case ISD::ATOMIC_LOAD: {
2840     // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
2841     SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
2842     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2843                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
2844                                  Node->getOperand(0),
2845                                  Node->getOperand(1), Zero, Zero,
2846                                  cast<AtomicSDNode>(Node)->getMemOperand(),
2847                                  cast<AtomicSDNode>(Node)->getOrdering(),
2848                                  cast<AtomicSDNode>(Node)->getSynchScope());
2849     Results.push_back(Swap.getValue(0));
2850     Results.push_back(Swap.getValue(1));
2851     break;
2852   }
2853   case ISD::ATOMIC_STORE: {
2854     // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2855     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2856                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
2857                                  Node->getOperand(0),
2858                                  Node->getOperand(1), Node->getOperand(2),
2859                                  cast<AtomicSDNode>(Node)->getMemOperand(),
2860                                  cast<AtomicSDNode>(Node)->getOrdering(),
2861                                  cast<AtomicSDNode>(Node)->getSynchScope());
2862     Results.push_back(Swap.getValue(1));
2863     break;
2864   }
2865   // By default, atomic intrinsics are marked Legal and lowered. Targets
2866   // which don't support them directly, however, may want libcalls, in which
2867   // case they mark them Expand, and we get here.
2868   case ISD::ATOMIC_SWAP:
2869   case ISD::ATOMIC_LOAD_ADD:
2870   case ISD::ATOMIC_LOAD_SUB:
2871   case ISD::ATOMIC_LOAD_AND:
2872   case ISD::ATOMIC_LOAD_OR:
2873   case ISD::ATOMIC_LOAD_XOR:
2874   case ISD::ATOMIC_LOAD_NAND:
2875   case ISD::ATOMIC_LOAD_MIN:
2876   case ISD::ATOMIC_LOAD_MAX:
2877   case ISD::ATOMIC_LOAD_UMIN:
2878   case ISD::ATOMIC_LOAD_UMAX:
2879   case ISD::ATOMIC_CMP_SWAP: {
2880     std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2881     Results.push_back(Tmp.first);
2882     Results.push_back(Tmp.second);
2883     break;
2884   }
2885   case ISD::DYNAMIC_STACKALLOC:
2886     ExpandDYNAMIC_STACKALLOC(Node, Results);
2887     break;
2888   case ISD::MERGE_VALUES:
2889     for (unsigned i = 0; i < Node->getNumValues(); i++)
2890       Results.push_back(Node->getOperand(i));
2891     break;
2892   case ISD::UNDEF: {
2893     EVT VT = Node->getValueType(0);
2894     if (VT.isInteger())
2895       Results.push_back(DAG.getConstant(0, VT));
2896     else {
2897       assert(VT.isFloatingPoint() && "Unknown value type!");
2898       Results.push_back(DAG.getConstantFP(0, VT));
2899     }
2900     break;
2901   }
2902   case ISD::TRAP: {
2903     // If this operation is not supported, lower it to 'abort()' call
2904     TargetLowering::ArgListTy Args;
2905     TargetLowering::
2906     CallLoweringInfo CLI(Node->getOperand(0),
2907                          Type::getVoidTy(*DAG.getContext()),
2908                       false, false, false, false, 0, CallingConv::C,
2909                       /*isTailCall=*/false,
2910                       /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2911                       DAG.getExternalSymbol("abort", TLI.getPointerTy()),
2912                       Args, DAG, dl);
2913     std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2914
2915     Results.push_back(CallResult.second);
2916     break;
2917   }
2918   case ISD::FP_ROUND:
2919   case ISD::BITCAST:
2920     Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2921                             Node->getValueType(0), dl);
2922     Results.push_back(Tmp1);
2923     break;
2924   case ISD::FP_EXTEND:
2925     Tmp1 = EmitStackConvert(Node->getOperand(0),
2926                             Node->getOperand(0).getValueType(),
2927                             Node->getValueType(0), dl);
2928     Results.push_back(Tmp1);
2929     break;
2930   case ISD::SIGN_EXTEND_INREG: {
2931     // NOTE: we could fall back on load/store here too for targets without
2932     // SAR.  However, it is doubtful that any exist.
2933     EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
2934     EVT VT = Node->getValueType(0);
2935     EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
2936     if (VT.isVector())
2937       ShiftAmountTy = VT;
2938     unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2939                         ExtraVT.getScalarType().getSizeInBits();
2940     SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
2941     Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2942                        Node->getOperand(0), ShiftCst);
2943     Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2944     Results.push_back(Tmp1);
2945     break;
2946   }
2947   case ISD::FP_ROUND_INREG: {
2948     // The only way we can lower this is to turn it into a TRUNCSTORE,
2949     // EXTLOAD pair, targeting a temporary location (a stack slot).
2950
2951     // NOTE: there is a choice here between constantly creating new stack
2952     // slots and always reusing the same one.  We currently always create
2953     // new ones, as reuse may inhibit scheduling.
2954     EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
2955     Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2956                             Node->getValueType(0), dl);
2957     Results.push_back(Tmp1);
2958     break;
2959   }
2960   case ISD::SINT_TO_FP:
2961   case ISD::UINT_TO_FP:
2962     Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2963                                 Node->getOperand(0), Node->getValueType(0), dl);
2964     Results.push_back(Tmp1);
2965     break;
2966   case ISD::FP_TO_UINT: {
2967     SDValue True, False;
2968     EVT VT =  Node->getOperand(0).getValueType();
2969     EVT NVT = Node->getValueType(0);
2970     APFloat apf(DAG.EVTToAPFloatSemantics(VT),
2971                 APInt::getNullValue(VT.getSizeInBits()));
2972     APInt x = APInt::getSignBit(NVT.getSizeInBits());
2973     (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2974     Tmp1 = DAG.getConstantFP(apf, VT);
2975     Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
2976                         Node->getOperand(0),
2977                         Tmp1, ISD::SETLT);
2978     True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
2979     False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2980                         DAG.getNode(ISD::FSUB, dl, VT,
2981                                     Node->getOperand(0), Tmp1));
2982     False = DAG.getNode(ISD::XOR, dl, NVT, False,
2983                         DAG.getConstant(x, NVT));
2984     Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
2985     Results.push_back(Tmp1);
2986     break;
2987   }
2988   case ISD::VAARG: {
2989     const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2990     EVT VT = Node->getValueType(0);
2991     Tmp1 = Node->getOperand(0);
2992     Tmp2 = Node->getOperand(1);
2993     unsigned Align = Node->getConstantOperandVal(3);
2994
2995     SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
2996                                      MachinePointerInfo(V),
2997                                      false, false, false, 0);
2998     SDValue VAList = VAListLoad;
2999
3000     if (Align > TLI.getMinStackArgumentAlignment()) {
3001       assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3002
3003       VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
3004                            DAG.getConstant(Align - 1,
3005                                            VAList.getValueType()));
3006
3007       VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
3008                            DAG.getConstant(-(int64_t)Align,
3009                                            VAList.getValueType()));
3010     }
3011
3012     // Increment the pointer, VAList, to the next vaarg
3013     Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
3014                        DAG.getConstant(TLI.getDataLayout()->
3015                           getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
3016                                        VAList.getValueType()));
3017     // Store the incremented VAList to the legalized pointer
3018     Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3019                         MachinePointerInfo(V), false, false, 0);
3020     // Load the actual argument out of the pointer VAList
3021     Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
3022                                   false, false, false, 0));
3023     Results.push_back(Results[0].getValue(1));
3024     break;
3025   }
3026   case ISD::VACOPY: {
3027     // This defaults to loading a pointer from the input and storing it to the
3028     // output, returning the chain.
3029     const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3030     const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3031     Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
3032                        Node->getOperand(2), MachinePointerInfo(VS),
3033                        false, false, false, 0);
3034     Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3035                         MachinePointerInfo(VD), false, false, 0);
3036     Results.push_back(Tmp1);
3037     break;
3038   }
3039   case ISD::EXTRACT_VECTOR_ELT:
3040     if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3041       // This must be an access of the only element.  Return it.
3042       Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
3043                          Node->getOperand(0));
3044     else
3045       Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3046     Results.push_back(Tmp1);
3047     break;
3048   case ISD::EXTRACT_SUBVECTOR:
3049     Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
3050     break;
3051   case ISD::INSERT_SUBVECTOR:
3052     Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3053     break;
3054   case ISD::CONCAT_VECTORS: {
3055     Results.push_back(ExpandVectorBuildThroughStack(Node));
3056     break;
3057   }
3058   case ISD::SCALAR_TO_VECTOR:
3059     Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
3060     break;
3061   case ISD::INSERT_VECTOR_ELT:
3062     Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3063                                               Node->getOperand(1),
3064                                               Node->getOperand(2), dl));
3065     break;
3066   case ISD::VECTOR_SHUFFLE: {
3067     SmallVector<int, 32> NewMask;
3068     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
3069
3070     EVT VT = Node->getValueType(0);
3071     EVT EltVT = VT.getVectorElementType();
3072     SDValue Op0 = Node->getOperand(0);
3073     SDValue Op1 = Node->getOperand(1);
3074     if (!TLI.isTypeLegal(EltVT)) {
3075
3076       EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3077
3078       // BUILD_VECTOR operands are allowed to be wider than the element type.
3079       // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
3080       if (NewEltVT.bitsLT(EltVT)) {
3081
3082         // Convert shuffle node.
3083         // If original node was v4i64 and the new EltVT is i32,
3084         // cast operands to v8i32 and re-build the mask.
3085
3086         // Calculate new VT, the size of the new VT should be equal to original.
3087         EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3088                                       VT.getSizeInBits()/NewEltVT.getSizeInBits());
3089         assert(NewVT.bitsEq(VT));
3090
3091         // cast operands to new VT
3092         Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3093         Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3094
3095         // Convert the shuffle mask
3096         unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
3097
3098         // EltVT gets smaller
3099         assert(factor > 0);
3100
3101         for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3102           if (Mask[i] < 0) {
3103             for (unsigned fi = 0; fi < factor; ++fi)
3104               NewMask.push_back(Mask[i]);
3105           }
3106           else {
3107             for (unsigned fi = 0; fi < factor; ++fi)
3108               NewMask.push_back(Mask[i]*factor+fi);
3109           }
3110         }
3111         Mask = NewMask;
3112         VT = NewVT;
3113       }
3114       EltVT = NewEltVT;
3115     }
3116     unsigned NumElems = VT.getVectorNumElements();
3117     SmallVector<SDValue, 16> Ops;
3118     for (unsigned i = 0; i != NumElems; ++i) {
3119       if (Mask[i] < 0) {
3120         Ops.push_back(DAG.getUNDEF(EltVT));
3121         continue;
3122       }
3123       unsigned Idx = Mask[i];
3124       if (Idx < NumElems)
3125         Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
3126                                   Op0,
3127                                   DAG.getConstant(Idx, TLI.getVectorIdxTy())));
3128       else
3129         Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
3130                                   Op1,
3131                                   DAG.getConstant(Idx - NumElems,
3132                                                   TLI.getVectorIdxTy())));
3133     }
3134
3135     Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
3136     // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3137     Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
3138     Results.push_back(Tmp1);
3139     break;
3140   }
3141   case ISD::EXTRACT_ELEMENT: {
3142     EVT OpTy = Node->getOperand(0).getValueType();
3143     if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3144       // 1 -> Hi
3145       Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3146                          DAG.getConstant(OpTy.getSizeInBits()/2,
3147                     TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
3148       Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3149     } else {
3150       // 0 -> Lo
3151       Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3152                          Node->getOperand(0));
3153     }
3154     Results.push_back(Tmp1);
3155     break;
3156   }
3157   case ISD::STACKSAVE:
3158     // Expand to CopyFromReg if the target set
3159     // StackPointerRegisterToSaveRestore.
3160     if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3161       Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3162                                            Node->getValueType(0)));
3163       Results.push_back(Results[0].getValue(1));
3164     } else {
3165       Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
3166       Results.push_back(Node->getOperand(0));
3167     }
3168     break;
3169   case ISD::STACKRESTORE:
3170     // Expand to CopyToReg if the target set
3171     // StackPointerRegisterToSaveRestore.
3172     if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3173       Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3174                                          Node->getOperand(1)));
3175     } else {
3176       Results.push_back(Node->getOperand(0));
3177     }
3178     break;
3179   case ISD::FCOPYSIGN:
3180     Results.push_back(ExpandFCOPYSIGN(Node));
3181     break;
3182   case ISD::FNEG:
3183     // Expand Y = FNEG(X) ->  Y = SUB -0.0, X
3184     Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3185     Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3186                        Node->getOperand(0));
3187     Results.push_back(Tmp1);
3188     break;
3189   case ISD::FABS: {
3190     // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3191     EVT VT = Node->getValueType(0);
3192     Tmp1 = Node->getOperand(0);
3193     Tmp2 = DAG.getConstantFP(0.0, VT);
3194     Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
3195                         Tmp1, Tmp2, ISD::SETUGT);
3196     Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3197     Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
3198     Results.push_back(Tmp1);
3199     break;
3200   }
3201   case ISD::FSQRT:
3202     Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3203                                       RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3204                                       RTLIB::SQRT_PPCF128));
3205     break;
3206   case ISD::FSIN:
3207   case ISD::FCOS: {
3208     EVT VT = Node->getValueType(0);
3209     bool isSIN = Node->getOpcode() == ISD::FSIN;
3210     // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3211     // fcos which share the same operand and both are used.
3212     if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
3213          canCombineSinCosLibcall(Node, TLI, TM))
3214         && useSinCos(Node)) {
3215       SDVTList VTs = DAG.getVTList(VT, VT);
3216       Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3217       if (!isSIN)
3218         Tmp1 = Tmp1.getValue(1);
3219       Results.push_back(Tmp1);
3220     } else if (isSIN) {
3221       Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3222                                         RTLIB::SIN_F80, RTLIB::SIN_F128,
3223                                         RTLIB::SIN_PPCF128));
3224     } else {
3225       Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3226                                         RTLIB::COS_F80, RTLIB::COS_F128,
3227                                         RTLIB::COS_PPCF128));
3228     }
3229     break;
3230   }
3231   case ISD::FSINCOS:
3232     // Expand into sincos libcall.
3233     ExpandSinCosLibCall(Node, Results);
3234     break;
3235   case ISD::FLOG:
3236     Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
3237                                       RTLIB::LOG_F80, RTLIB::LOG_F128,
3238                                       RTLIB::LOG_PPCF128));
3239     break;
3240   case ISD::FLOG2:
3241     Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3242                                       RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3243                                       RTLIB::LOG2_PPCF128));
3244     break;
3245   case ISD::FLOG10:
3246     Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3247                                       RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3248                                       RTLIB::LOG10_PPCF128));
3249     break;
3250   case ISD::FEXP:
3251     Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
3252                                       RTLIB::EXP_F80, RTLIB::EXP_F128,
3253                                       RTLIB::EXP_PPCF128));
3254     break;
3255   case ISD::FEXP2:
3256     Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3257                                       RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3258                                       RTLIB::EXP2_PPCF128));
3259     break;
3260   case ISD::FTRUNC:
3261     Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3262                                       RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3263                                       RTLIB::TRUNC_PPCF128));
3264     break;
3265   case ISD::FFLOOR:
3266     Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3267                                       RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3268                                       RTLIB::FLOOR_PPCF128));
3269     break;
3270   case ISD::FCEIL:
3271     Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3272                                       RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3273                                       RTLIB::CEIL_PPCF128));
3274     break;
3275   case ISD::FRINT:
3276     Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
3277                                       RTLIB::RINT_F80, RTLIB::RINT_F128,
3278                                       RTLIB::RINT_PPCF128));
3279     break;
3280   case ISD::FNEARBYINT:
3281     Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3282                                       RTLIB::NEARBYINT_F64,
3283                                       RTLIB::NEARBYINT_F80,
3284                                       RTLIB::NEARBYINT_F128,
3285                                       RTLIB::NEARBYINT_PPCF128));
3286     break;
3287   case ISD::FROUND:
3288     Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3289                                       RTLIB::ROUND_F64,
3290                                       RTLIB::ROUND_F80,
3291                                       RTLIB::ROUND_F128,
3292                                       RTLIB::ROUND_PPCF128));
3293     break;
3294   case ISD::FPOWI:
3295     Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
3296                                       RTLIB::POWI_F80, RTLIB::POWI_F128,
3297                                       RTLIB::POWI_PPCF128));
3298     break;
3299   case ISD::FPOW:
3300     Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
3301                                       RTLIB::POW_F80, RTLIB::POW_F128,
3302                                       RTLIB::POW_PPCF128));
3303     break;
3304   case ISD::FDIV:
3305     Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
3306                                       RTLIB::DIV_F80, RTLIB::DIV_F128,
3307                                       RTLIB::DIV_PPCF128));
3308     break;
3309   case ISD::FREM:
3310     Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
3311                                       RTLIB::REM_F80, RTLIB::REM_F128,
3312                                       RTLIB::REM_PPCF128));
3313     break;
3314   case ISD::FMA:
3315     Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
3316                                       RTLIB::FMA_F80, RTLIB::FMA_F128,
3317                                       RTLIB::FMA_PPCF128));
3318     break;
3319   case ISD::FP16_TO_FP32:
3320     Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3321     break;
3322   case ISD::FP32_TO_FP16:
3323     Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3324     break;
3325   case ISD::ConstantFP: {
3326     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
3327     // Check to see if this FP immediate is already legal.
3328     // If this is a legal constant, turn it into a TargetConstantFP node.
3329     if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3330       Results.push_back(ExpandConstantFP(CFP, true));
3331     break;
3332   }
3333   case ISD::FSUB: {
3334     EVT VT = Node->getValueType(0);
3335     assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3336            TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3337            "Don't know how to expand this FP subtraction!");
3338     Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3339     Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3340     Results.push_back(Tmp1);
3341     break;
3342   }
3343   case ISD::SUB: {
3344     EVT VT = Node->getValueType(0);
3345     assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3346            TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3347            "Don't know how to expand this subtraction!");
3348     Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3349                DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
3350     Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
3351     Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
3352     break;
3353   }
3354   case ISD::UREM:
3355   case ISD::SREM: {
3356     EVT VT = Node->getValueType(0);
3357     bool isSigned = Node->getOpcode() == ISD::SREM;
3358     unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3359     unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3360     Tmp2 = Node->getOperand(0);
3361     Tmp3 = Node->getOperand(1);
3362     if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3363         (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3364          // If div is legal, it's better to do the normal expansion
3365          !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
3366          useDivRem(Node, isSigned, false))) {
3367       SDVTList VTs = DAG.getVTList(VT, VT);
3368       Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3369     } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
3370       // X % Y -> X-X/Y*Y
3371       Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3372       Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3373       Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
3374     } else if (isSigned)
3375       Tmp1 = ExpandIntLibCall(Node, true,
3376                               RTLIB::SREM_I8,
3377                               RTLIB::SREM_I16, RTLIB::SREM_I32,
3378                               RTLIB::SREM_I64, RTLIB::SREM_I128);
3379     else
3380       Tmp1 = ExpandIntLibCall(Node, false,
3381                               RTLIB::UREM_I8,
3382                               RTLIB::UREM_I16, RTLIB::UREM_I32,
3383                               RTLIB::UREM_I64, RTLIB::UREM_I128);
3384     Results.push_back(Tmp1);
3385     break;
3386   }
3387   case ISD::UDIV:
3388   case ISD::SDIV: {
3389     bool isSigned = Node->getOpcode() == ISD::SDIV;
3390     unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3391     EVT VT = Node->getValueType(0);
3392     SDVTList VTs = DAG.getVTList(VT, VT);
3393     if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3394         (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3395          useDivRem(Node, isSigned, true)))
3396       Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3397                          Node->getOperand(1));
3398     else if (isSigned)
3399       Tmp1 = ExpandIntLibCall(Node, true,
3400                               RTLIB::SDIV_I8,
3401                               RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3402                               RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3403     else
3404       Tmp1 = ExpandIntLibCall(Node, false,
3405                               RTLIB::UDIV_I8,
3406                               RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3407                               RTLIB::UDIV_I64, RTLIB::UDIV_I128);
3408     Results.push_back(Tmp1);
3409     break;
3410   }
3411   case ISD::MULHU:
3412   case ISD::MULHS: {
3413     unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3414                                                               ISD::SMUL_LOHI;
3415     EVT VT = Node->getValueType(0);
3416     SDVTList VTs = DAG.getVTList(VT, VT);
3417     assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3418            "If this wasn't legal, it shouldn't have been created!");
3419     Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3420                        Node->getOperand(1));
3421     Results.push_back(Tmp1.getValue(1));
3422     break;
3423   }
3424   case ISD::SDIVREM:
3425   case ISD::UDIVREM:
3426     // Expand into divrem libcall
3427     ExpandDivRemLibCall(Node, Results);
3428     break;
3429   case ISD::MUL: {
3430     EVT VT = Node->getValueType(0);
3431     SDVTList VTs = DAG.getVTList(VT, VT);
3432     // See if multiply or divide can be lowered using two-result operations.
3433     // We just need the low half of the multiply; try both the signed
3434     // and unsigned forms. If the target supports both SMUL_LOHI and
3435     // UMUL_LOHI, form a preference by checking which forms of plain
3436     // MULH it supports.
3437     bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3438     bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3439     bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3440     bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3441     unsigned OpToUse = 0;
3442     if (HasSMUL_LOHI && !HasMULHS) {
3443       OpToUse = ISD::SMUL_LOHI;
3444     } else if (HasUMUL_LOHI && !HasMULHU) {
3445       OpToUse = ISD::UMUL_LOHI;
3446     } else if (HasSMUL_LOHI) {
3447       OpToUse = ISD::SMUL_LOHI;
3448     } else if (HasUMUL_LOHI) {
3449       OpToUse = ISD::UMUL_LOHI;
3450     }
3451     if (OpToUse) {
3452       Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3453                                     Node->getOperand(1)));
3454       break;
3455     }
3456     Tmp1 = ExpandIntLibCall(Node, false,
3457                             RTLIB::MUL_I8,
3458                             RTLIB::MUL_I16, RTLIB::MUL_I32,
3459                             RTLIB::MUL_I64, RTLIB::MUL_I128);
3460     Results.push_back(Tmp1);
3461     break;
3462   }
3463   case ISD::SADDO:
3464   case ISD::SSUBO: {
3465     SDValue LHS = Node->getOperand(0);
3466     SDValue RHS = Node->getOperand(1);
3467     SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3468                               ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3469                               LHS, RHS);
3470     Results.push_back(Sum);
3471     EVT OType = Node->getValueType(1);
3472
3473     SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3474
3475     //   LHSSign -> LHS >= 0
3476     //   RHSSign -> RHS >= 0
3477     //   SumSign -> Sum >= 0
3478     //
3479     //   Add:
3480     //   Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3481     //   Sub:
3482     //   Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3483     //
3484     SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3485     SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3486     SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3487                                       Node->getOpcode() == ISD::SADDO ?
3488                                       ISD::SETEQ : ISD::SETNE);
3489
3490     SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3491     SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3492
3493     SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3494     Results.push_back(Cmp);
3495     break;
3496   }
3497   case ISD::UADDO:
3498   case ISD::USUBO: {
3499     SDValue LHS = Node->getOperand(0);
3500     SDValue RHS = Node->getOperand(1);
3501     SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3502                               ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3503                               LHS, RHS);
3504     Results.push_back(Sum);
3505     Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3506                                    Node->getOpcode () == ISD::UADDO ?
3507                                    ISD::SETULT : ISD::SETUGT));
3508     break;
3509   }
3510   case ISD::UMULO:
3511   case ISD::SMULO: {
3512     EVT VT = Node->getValueType(0);
3513     EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
3514     SDValue LHS = Node->getOperand(0);
3515     SDValue RHS = Node->getOperand(1);
3516     SDValue BottomHalf;
3517     SDValue TopHalf;
3518     static const unsigned Ops[2][3] =
3519         { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3520           { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3521     bool isSigned = Node->getOpcode() == ISD::SMULO;
3522     if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3523       BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3524       TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3525     } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3526       BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3527                                RHS);
3528       TopHalf = BottomHalf.getValue(1);
3529     } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3530                                                  VT.getSizeInBits() * 2))) {
3531       LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3532       RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3533       Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3534       BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3535                                DAG.getIntPtrConstant(0));
3536       TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3537                             DAG.getIntPtrConstant(1));
3538     } else {
3539       // We can fall back to a libcall with an illegal type for the MUL if we
3540       // have a libcall big enough.
3541       // Also, we can fall back to a division in some cases, but that's a big
3542       // performance hit in the general case.
3543       RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3544       if (WideVT == MVT::i16)
3545         LC = RTLIB::MUL_I16;
3546       else if (WideVT == MVT::i32)
3547         LC = RTLIB::MUL_I32;
3548       else if (WideVT == MVT::i64)
3549         LC = RTLIB::MUL_I64;
3550       else if (WideVT == MVT::i128)
3551         LC = RTLIB::MUL_I128;
3552       assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
3553
3554       // The high part is obtained by SRA'ing all but one of the bits of low
3555       // part.
3556       unsigned LoSize = VT.getSizeInBits();
3557       SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3558                                 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3559       SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3560                                 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3561
3562       // Here we're passing the 2 arguments explicitly as 4 arguments that are
3563       // pre-lowered to the correct types. This all depends upon WideVT not
3564       // being a legal type for the architecture and thus has to be split to
3565       // two arguments.
3566       SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3567       SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3568       BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3569                                DAG.getIntPtrConstant(0));
3570       TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3571                             DAG.getIntPtrConstant(1));
3572       // Ret is a node with an illegal type. Because such things are not
3573       // generally permitted during this phase of legalization, delete the
3574       // node. The above EXTRACT_ELEMENT nodes should have been folded.
3575       DAG.DeleteNode(Ret.getNode());
3576     }
3577
3578     if (isSigned) {
3579       Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3580                              TLI.getShiftAmountTy(BottomHalf.getValueType()));
3581       Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3582       TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
3583                              ISD::SETNE);
3584     } else {
3585       TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
3586                              DAG.getConstant(0, VT), ISD::SETNE);
3587     }
3588     Results.push_back(BottomHalf);
3589     Results.push_back(TopHalf);
3590     break;
3591   }
3592   case ISD::BUILD_PAIR: {
3593     EVT PairTy = Node->getValueType(0);
3594     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3595     Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
3596     Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
3597                        DAG.getConstant(PairTy.getSizeInBits()/2,
3598                                        TLI.getShiftAmountTy(PairTy)));
3599     Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
3600     break;
3601   }
3602   case ISD::SELECT:
3603     Tmp1 = Node->getOperand(0);
3604     Tmp2 = Node->getOperand(1);
3605     Tmp3 = Node->getOperand(2);
3606     if (Tmp1.getOpcode() == ISD::SETCC) {
3607       Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3608                              Tmp2, Tmp3,
3609                              cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
3610     } else {
3611       Tmp1 = DAG.getSelectCC(dl, Tmp1,
3612                              DAG.getConstant(0, Tmp1.getValueType()),
3613                              Tmp2, Tmp3, ISD::SETNE);
3614     }
3615     Results.push_back(Tmp1);
3616     break;
3617   case ISD::BR_JT: {
3618     SDValue Chain = Node->getOperand(0);
3619     SDValue Table = Node->getOperand(1);
3620     SDValue Index = Node->getOperand(2);
3621
3622     EVT PTy = TLI.getPointerTy();
3623
3624     const DataLayout &TD = *TLI.getDataLayout();
3625     unsigned EntrySize =
3626       DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
3627
3628     Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3629                        Index, DAG.getConstant(EntrySize, Index.getValueType()));
3630     SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3631                                Index, Table);
3632
3633     EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
3634     SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
3635                                 MachinePointerInfo::getJumpTable(), MemVT,
3636                                 false, false, 0);
3637     Addr = LD;
3638     if (TM.getRelocationModel() == Reloc::PIC_) {
3639       // For PIC, the sequence is:
3640       // BRIND(load(Jumptable + index) + RelocBase)
3641       // RelocBase can be JumpTable, GOT or some sort of global base.
3642       Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3643                           TLI.getPICJumpTableRelocBase(Table, DAG));
3644     }
3645     Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
3646     Results.push_back(Tmp1);
3647     break;
3648   }
3649   case ISD::BRCOND:
3650     // Expand brcond's setcc into its constituent parts and create a BR_CC
3651     // Node.
3652     Tmp1 = Node->getOperand(0);
3653     Tmp2 = Node->getOperand(1);
3654     if (Tmp2.getOpcode() == ISD::SETCC) {
3655       Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
3656                          Tmp1, Tmp2.getOperand(2),
3657                          Tmp2.getOperand(0), Tmp2.getOperand(1),
3658                          Node->getOperand(2));
3659     } else {
3660       // We test only the i1 bit.  Skip the AND if UNDEF.
3661       Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3662         DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3663                     DAG.getConstant(1, Tmp2.getValueType()));
3664       Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
3665                          DAG.getCondCode(ISD::SETNE), Tmp3,
3666                          DAG.getConstant(0, Tmp3.getValueType()),
3667                          Node->getOperand(2));
3668     }
3669     Results.push_back(Tmp1);
3670     break;
3671   case ISD::SETCC: {
3672     Tmp1 = Node->getOperand(0);
3673     Tmp2 = Node->getOperand(1);
3674     Tmp3 = Node->getOperand(2);
3675     bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
3676                                            Tmp3, dl);
3677
3678     if (Legalized) {
3679       // If we exapanded the SETCC by swapping LHS and RHS, create a new SETCC
3680       // node.
3681       if (Tmp3.getNode())
3682         Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3683                            Tmp1, Tmp2, Tmp3);
3684
3685       Results.push_back(Tmp1);
3686       break;
3687     }
3688
3689     // Otherwise, SETCC for the given comparison type must be completely
3690     // illegal; expand it into a SELECT_CC.
3691     EVT VT = Node->getValueType(0);
3692     int TrueValue;
3693     switch (TLI.getBooleanContents(VT.isVector())) {
3694     case TargetLowering::ZeroOrOneBooleanContent:
3695     case TargetLowering::UndefinedBooleanContent:
3696       TrueValue = 1;
3697       break;
3698     case TargetLowering::ZeroOrNegativeOneBooleanContent:
3699       TrueValue = -1;
3700       break;
3701     }
3702     Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3703                        DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3704                        Tmp3);
3705     Results.push_back(Tmp1);
3706     break;
3707   }
3708   case ISD::SELECT_CC: {
3709     Tmp1 = Node->getOperand(0);   // LHS
3710     Tmp2 = Node->getOperand(1);   // RHS
3711     Tmp3 = Node->getOperand(2);   // True
3712     Tmp4 = Node->getOperand(3);   // False
3713     SDValue CC = Node->getOperand(4);
3714
3715     bool Legalized = false;
3716     // Try to legalize by inverting the condition.  This is for targets that
3717     // might support an ordered version of a condition, but not the unordered
3718     // version (or vice versa).
3719     ISD::CondCode InvCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3720                                                Tmp1.getValueType().isInteger());
3721     if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3722       // Use the new condition code and swap true and false
3723       Legalized = true;
3724       Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
3725     } else {
3726       // If The inverse is not legal, then try to swap the arguments using
3727       // the inverse condition code.
3728       ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3729       if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3730         // The swapped inverse condition is legal, so swap true and false,
3731         // lhs and rhs.
3732         Legalized = true;
3733         Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3734       }
3735     }
3736
3737     if (!Legalized) {
3738       Legalized = LegalizeSetCCCondCode(
3739           getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, dl);
3740
3741       assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
3742       // If we exapanded the SETCC by swapping LHS and RHS, create a new
3743       // SELECT_CC node.
3744       if (CC.getNode()) {
3745         Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
3746                            Tmp1, Tmp2, Tmp3, Tmp4, CC);
3747       } else {
3748         Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3749         CC = DAG.getCondCode(ISD::SETNE);
3750         Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3751                            Tmp3, Tmp4, CC);
3752       }
3753     }
3754     Results.push_back(Tmp1);
3755     break;
3756   }
3757   case ISD::BR_CC: {
3758     Tmp1 = Node->getOperand(0);              // Chain
3759     Tmp2 = Node->getOperand(2);              // LHS
3760     Tmp3 = Node->getOperand(3);              // RHS
3761     Tmp4 = Node->getOperand(1);              // CC
3762
3763     bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
3764         Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, dl);
3765     (void)Legalized;
3766     assert(Legalized && "Can't legalize BR_CC with legal condition!");
3767
3768     // If we exapanded the SETCC by swapping LHS and RHS, create a new BR_CC
3769     // node.
3770     if (Tmp4.getNode()) {
3771       Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
3772                          Tmp4, Tmp2, Tmp3, Node->getOperand(4));
3773     } else {
3774       Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3775       Tmp4 = DAG.getCondCode(ISD::SETNE);
3776       Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3777                          Tmp3, Node->getOperand(4));
3778     }
3779     Results.push_back(Tmp1);
3780     break;
3781   }
3782   case ISD::BUILD_VECTOR:
3783     Results.push_back(ExpandBUILD_VECTOR(Node));
3784     break;
3785   case ISD::SRA:
3786   case ISD::SRL:
3787   case ISD::SHL: {
3788     // Scalarize vector SRA/SRL/SHL.
3789     EVT VT = Node->getValueType(0);
3790     assert(VT.isVector() && "Unable to legalize non-vector shift");
3791     assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3792     unsigned NumElem = VT.getVectorNumElements();
3793
3794     SmallVector<SDValue, 8> Scalars;
3795     for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3796       SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3797                                VT.getScalarType(),
3798                                Node->getOperand(0), DAG.getConstant(Idx,
3799                                                     TLI.getVectorIdxTy()));
3800       SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3801                                VT.getScalarType(),
3802                                Node->getOperand(1), DAG.getConstant(Idx,
3803                                                     TLI.getVectorIdxTy()));
3804       Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3805                                     VT.getScalarType(), Ex, Sh));
3806     }
3807     SDValue Result =
3808       DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3809                   &Scalars[0], Scalars.size());
3810     ReplaceNode(SDValue(Node, 0), Result);
3811     break;
3812   }
3813   case ISD::GLOBAL_OFFSET_TABLE:
3814   case ISD::GlobalAddress:
3815   case ISD::GlobalTLSAddress:
3816   case ISD::ExternalSymbol:
3817   case ISD::ConstantPool:
3818   case ISD::JumpTable:
3819   case ISD::INTRINSIC_W_CHAIN:
3820   case ISD::INTRINSIC_WO_CHAIN:
3821   case ISD::INTRINSIC_VOID:
3822     // FIXME: Custom lowering for these operations shouldn't return null!
3823     break;
3824   }
3825
3826   // Replace the original node with the legalized result.
3827   if (!Results.empty())
3828     ReplaceNode(Node, Results.data());
3829 }
3830
3831 void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3832   SmallVector<SDValue, 8> Results;
3833   MVT OVT = Node->getSimpleValueType(0);
3834   if (Node->getOpcode() == ISD::UINT_TO_FP ||
3835       Node->getOpcode() == ISD::SINT_TO_FP ||
3836       Node->getOpcode() == ISD::SETCC) {
3837     OVT = Node->getOperand(0).getSimpleValueType();
3838   }
3839   MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3840   SDLoc dl(Node);
3841   SDValue Tmp1, Tmp2, Tmp3;
3842   switch (Node->getOpcode()) {
3843   case ISD::CTTZ:
3844   case ISD::CTTZ_ZERO_UNDEF:
3845   case ISD::CTLZ:
3846   case ISD::CTLZ_ZERO_UNDEF:
3847   case ISD::CTPOP:
3848     // Zero extend the argument.
3849     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
3850     // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3851     // already the correct result.
3852     Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3853     if (Node->getOpcode() == ISD::CTTZ) {
3854       // FIXME: This should set a bit in the zero extended value instead.
3855       Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
3856                           Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3857                           ISD::SETEQ);
3858       Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
3859                            DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
3860     } else if (Node->getOpcode() == ISD::CTLZ ||
3861                Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
3862       // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3863       Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3864                           DAG.getConstant(NVT.getSizeInBits() -
3865                                           OVT.getSizeInBits(), NVT));
3866     }
3867     Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
3868     break;
3869   case ISD::BSWAP: {
3870     unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
3871     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
3872     Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3873     Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
3874                           DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
3875     Results.push_back(Tmp1);
3876     break;
3877   }
3878   case ISD::FP_TO_UINT:
3879   case ISD::FP_TO_SINT:
3880     Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3881                                  Node->getOpcode() == ISD::FP_TO_SINT, dl);
3882     Results.push_back(Tmp1);
3883     break;
3884   case ISD::UINT_TO_FP:
3885   case ISD::SINT_TO_FP:
3886     Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3887                                  Node->getOpcode() == ISD::SINT_TO_FP, dl);
3888     Results.push_back(Tmp1);
3889     break;
3890   case ISD::VAARG: {
3891     SDValue Chain = Node->getOperand(0); // Get the chain.
3892     SDValue Ptr = Node->getOperand(1); // Get the pointer.
3893
3894     unsigned TruncOp;
3895     if (OVT.isVector()) {
3896       TruncOp = ISD::BITCAST;
3897     } else {
3898       assert(OVT.isInteger()
3899         && "VAARG promotion is supported only for vectors or integer types");
3900       TruncOp = ISD::TRUNCATE;
3901     }
3902
3903     // Perform the larger operation, then convert back
3904     Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3905              Node->getConstantOperandVal(3));
3906     Chain = Tmp1.getValue(1);
3907
3908     Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3909
3910     // Modified the chain result - switch anything that used the old chain to
3911     // use the new one.
3912     DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3913     DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3914     ReplacedNode(Node);
3915     break;
3916   }
3917   case ISD::AND:
3918   case ISD::OR:
3919   case ISD::XOR: {
3920     unsigned ExtOp, TruncOp;
3921     if (OVT.isVector()) {
3922       ExtOp   = ISD::BITCAST;
3923       TruncOp = ISD::BITCAST;
3924     } else {
3925       assert(OVT.isInteger() && "Cannot promote logic operation");
3926       ExtOp   = ISD::ANY_EXTEND;
3927       TruncOp = ISD::TRUNCATE;
3928     }
3929     // Promote each of the values to the new type.
3930     Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3931     Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3932     // Perform the larger operation, then convert back
3933     Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3934     Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
3935     break;
3936   }
3937   case ISD::SELECT: {
3938     unsigned ExtOp, TruncOp;
3939     if (Node->getValueType(0).isVector()) {
3940       ExtOp   = ISD::BITCAST;
3941       TruncOp = ISD::BITCAST;
3942     } else if (Node->getValueType(0).isInteger()) {
3943       ExtOp   = ISD::ANY_EXTEND;
3944       TruncOp = ISD::TRUNCATE;
3945     } else {
3946       ExtOp   = ISD::FP_EXTEND;
3947       TruncOp = ISD::FP_ROUND;
3948     }
3949     Tmp1 = Node->getOperand(0);
3950     // Promote each of the values to the new type.
3951     Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3952     Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3953     // Perform the larger operation, then round down.
3954     Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
3955     if (TruncOp != ISD::FP_ROUND)
3956       Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
3957     else
3958       Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
3959                          DAG.getIntPtrConstant(0));
3960     Results.push_back(Tmp1);
3961     break;
3962   }
3963   case ISD::VECTOR_SHUFFLE: {
3964     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
3965
3966     // Cast the two input vectors.
3967     Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3968     Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
3969
3970     // Convert the shuffle mask to the right # elements.
3971     Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
3972     Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
3973     Results.push_back(Tmp1);
3974     break;
3975   }
3976   case ISD::SETCC: {
3977     unsigned ExtOp = ISD::FP_EXTEND;
3978     if (NVT.isInteger()) {
3979       ISD::CondCode CCCode =
3980         cast<CondCodeSDNode>(Node->getOperand(2))->get();
3981       ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3982     }
3983     Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3984     Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3985     Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3986                                   Tmp1, Tmp2, Node->getOperand(2)));
3987     break;
3988   }
3989   case ISD::FDIV:
3990   case ISD::FREM:
3991   case ISD::FPOW: {
3992     Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3993     Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
3994     Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3995     Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3996                                   Tmp3, DAG.getIntPtrConstant(0)));
3997     break;
3998   }
3999   case ISD::FLOG2:
4000   case ISD::FEXP2:
4001   case ISD::FLOG:
4002   case ISD::FEXP: {
4003     Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4004     Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4005     Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4006                                   Tmp2, DAG.getIntPtrConstant(0)));
4007     break;
4008   }
4009   }
4010
4011   // Replace the original node with the legalized result.
4012   if (!Results.empty())
4013     ReplaceNode(Node, Results.data());
4014 }
4015
4016 // SelectionDAG::Legalize - This is the entry point for the file.
4017 //
4018 void SelectionDAG::Legalize() {
4019   /// run - This is the main entry point to this class.
4020   ///
4021   SelectionDAGLegalize(*this).LegalizeDAG();
4022 }