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