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