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