xref: /llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp (revision 1e4d35044f7c5346cb3a860361c09a93d4def86c)
1 //===- SelectionDAGBuilder.cpp - Selection-DAG building -------------------===//
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 implements routines for translating from LLVM IR into SelectionDAG IR.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "SelectionDAGBuilder.h"
15 #include "SDNodeDbgValue.h"
16 #include "llvm/ADT/APFloat.h"
17 #include "llvm/ADT/APInt.h"
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/BitVector.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/None.h"
22 #include "llvm/ADT/Optional.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/SmallSet.h"
26 #include "llvm/ADT/SmallVector.h"
27 #include "llvm/ADT/StringRef.h"
28 #include "llvm/ADT/Triple.h"
29 #include "llvm/ADT/Twine.h"
30 #include "llvm/Analysis/AliasAnalysis.h"
31 #include "llvm/Analysis/BranchProbabilityInfo.h"
32 #include "llvm/Analysis/ConstantFolding.h"
33 #include "llvm/Analysis/EHPersonalities.h"
34 #include "llvm/Analysis/Loads.h"
35 #include "llvm/Analysis/MemoryLocation.h"
36 #include "llvm/Analysis/TargetLibraryInfo.h"
37 #include "llvm/Analysis/ValueTracking.h"
38 #include "llvm/Analysis/VectorUtils.h"
39 #include "llvm/CodeGen/Analysis.h"
40 #include "llvm/CodeGen/FunctionLoweringInfo.h"
41 #include "llvm/CodeGen/GCMetadata.h"
42 #include "llvm/CodeGen/ISDOpcodes.h"
43 #include "llvm/CodeGen/MachineBasicBlock.h"
44 #include "llvm/CodeGen/MachineFrameInfo.h"
45 #include "llvm/CodeGen/MachineFunction.h"
46 #include "llvm/CodeGen/MachineInstr.h"
47 #include "llvm/CodeGen/MachineInstrBuilder.h"
48 #include "llvm/CodeGen/MachineJumpTableInfo.h"
49 #include "llvm/CodeGen/MachineMemOperand.h"
50 #include "llvm/CodeGen/MachineModuleInfo.h"
51 #include "llvm/CodeGen/MachineOperand.h"
52 #include "llvm/CodeGen/MachineRegisterInfo.h"
53 #include "llvm/CodeGen/RuntimeLibcalls.h"
54 #include "llvm/CodeGen/SelectionDAG.h"
55 #include "llvm/CodeGen/SelectionDAGNodes.h"
56 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
57 #include "llvm/CodeGen/StackMaps.h"
58 #include "llvm/CodeGen/TargetFrameLowering.h"
59 #include "llvm/CodeGen/TargetInstrInfo.h"
60 #include "llvm/CodeGen/TargetLowering.h"
61 #include "llvm/CodeGen/TargetOpcodes.h"
62 #include "llvm/CodeGen/TargetRegisterInfo.h"
63 #include "llvm/CodeGen/TargetSubtargetInfo.h"
64 #include "llvm/CodeGen/ValueTypes.h"
65 #include "llvm/CodeGen/WinEHFuncInfo.h"
66 #include "llvm/IR/Argument.h"
67 #include "llvm/IR/Attributes.h"
68 #include "llvm/IR/BasicBlock.h"
69 #include "llvm/IR/CFG.h"
70 #include "llvm/IR/CallSite.h"
71 #include "llvm/IR/CallingConv.h"
72 #include "llvm/IR/Constant.h"
73 #include "llvm/IR/ConstantRange.h"
74 #include "llvm/IR/Constants.h"
75 #include "llvm/IR/DataLayout.h"
76 #include "llvm/IR/DebugInfoMetadata.h"
77 #include "llvm/IR/DebugLoc.h"
78 #include "llvm/IR/DerivedTypes.h"
79 #include "llvm/IR/Function.h"
80 #include "llvm/IR/GetElementPtrTypeIterator.h"
81 #include "llvm/IR/InlineAsm.h"
82 #include "llvm/IR/InstrTypes.h"
83 #include "llvm/IR/Instruction.h"
84 #include "llvm/IR/Instructions.h"
85 #include "llvm/IR/IntrinsicInst.h"
86 #include "llvm/IR/Intrinsics.h"
87 #include "llvm/IR/LLVMContext.h"
88 #include "llvm/IR/Metadata.h"
89 #include "llvm/IR/Module.h"
90 #include "llvm/IR/Operator.h"
91 #include "llvm/IR/Statepoint.h"
92 #include "llvm/IR/Type.h"
93 #include "llvm/IR/User.h"
94 #include "llvm/IR/Value.h"
95 #include "llvm/MC/MCContext.h"
96 #include "llvm/MC/MCSymbol.h"
97 #include "llvm/Support/AtomicOrdering.h"
98 #include "llvm/Support/BranchProbability.h"
99 #include "llvm/Support/Casting.h"
100 #include "llvm/Support/CodeGen.h"
101 #include "llvm/Support/CommandLine.h"
102 #include "llvm/Support/Compiler.h"
103 #include "llvm/Support/Debug.h"
104 #include "llvm/Support/ErrorHandling.h"
105 #include "llvm/Support/MachineValueType.h"
106 #include "llvm/Support/MathExtras.h"
107 #include "llvm/Support/raw_ostream.h"
108 #include "llvm/Target/TargetIntrinsicInfo.h"
109 #include "llvm/Target/TargetMachine.h"
110 #include "llvm/Target/TargetOptions.h"
111 #include <algorithm>
112 #include <cassert>
113 #include <cstddef>
114 #include <cstdint>
115 #include <cstring>
116 #include <iterator>
117 #include <limits>
118 #include <numeric>
119 #include <tuple>
120 #include <utility>
121 #include <vector>
122 
123 using namespace llvm;
124 
125 #define DEBUG_TYPE "isel"
126 
127 /// LimitFloatPrecision - Generate low-precision inline sequences for
128 /// some float libcalls (6, 8 or 12 bits).
129 static unsigned LimitFloatPrecision;
130 
131 static cl::opt<unsigned, true>
132     LimitFPPrecision("limit-float-precision",
133                      cl::desc("Generate low-precision inline sequences "
134                               "for some float libcalls"),
135                      cl::location(LimitFloatPrecision), cl::Hidden,
136                      cl::init(0));
137 
138 static cl::opt<unsigned> SwitchPeelThreshold(
139     "switch-peel-threshold", cl::Hidden, cl::init(66),
140     cl::desc("Set the case probability threshold for peeling the case from a "
141              "switch statement. A value greater than 100 will void this "
142              "optimization"));
143 
144 // Limit the width of DAG chains. This is important in general to prevent
145 // DAG-based analysis from blowing up. For example, alias analysis and
146 // load clustering may not complete in reasonable time. It is difficult to
147 // recognize and avoid this situation within each individual analysis, and
148 // future analyses are likely to have the same behavior. Limiting DAG width is
149 // the safe approach and will be especially important with global DAGs.
150 //
151 // MaxParallelChains default is arbitrarily high to avoid affecting
152 // optimization, but could be lowered to improve compile time. Any ld-ld-st-st
153 // sequence over this should have been converted to llvm.memcpy by the
154 // frontend. It is easy to induce this behavior with .ll code such as:
155 // %buffer = alloca [4096 x i8]
156 // %data = load [4096 x i8]* %argPtr
157 // store [4096 x i8] %data, [4096 x i8]* %buffer
158 static const unsigned MaxParallelChains = 64;
159 
160 // True if the Value passed requires ABI mangling as it is a parameter to a
161 // function or a return value from a function which is not an intrinsic.
162 static bool isABIRegCopy(const Value *V) {
163   const bool IsRetInst = V && isa<ReturnInst>(V);
164   const bool IsCallInst = V && isa<CallInst>(V);
165   const bool IsInLineAsm =
166       IsCallInst && static_cast<const CallInst *>(V)->isInlineAsm();
167   const bool IsIndirectFunctionCall =
168       IsCallInst && !IsInLineAsm &&
169       !static_cast<const CallInst *>(V)->getCalledFunction();
170   // It is possible that the call instruction is an inline asm statement or an
171   // indirect function call in which case the return value of
172   // getCalledFunction() would be nullptr.
173   const bool IsInstrinsicCall =
174       IsCallInst && !IsInLineAsm && !IsIndirectFunctionCall &&
175       static_cast<const CallInst *>(V)->getCalledFunction()->getIntrinsicID() !=
176           Intrinsic::not_intrinsic;
177 
178   return IsRetInst || (IsCallInst && (!IsInLineAsm && !IsInstrinsicCall));
179 }
180 
181 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL,
182                                       const SDValue *Parts, unsigned NumParts,
183                                       MVT PartVT, EVT ValueVT, const Value *V,
184                                       bool IsABIRegCopy);
185 
186 /// getCopyFromParts - Create a value that contains the specified legal parts
187 /// combined into the value they represent.  If the parts combine to a type
188 /// larger than ValueVT then AssertOp can be used to specify whether the extra
189 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
190 /// (ISD::AssertSext).
191 static SDValue getCopyFromParts(SelectionDAG &DAG, const SDLoc &DL,
192                                 const SDValue *Parts, unsigned NumParts,
193                                 MVT PartVT, EVT ValueVT, const Value *V,
194                                 Optional<ISD::NodeType> AssertOp = None,
195                                 bool IsABIRegCopy = false) {
196   if (ValueVT.isVector())
197     return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
198                                   PartVT, ValueVT, V, IsABIRegCopy);
199 
200   assert(NumParts > 0 && "No parts to assemble!");
201   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
202   SDValue Val = Parts[0];
203 
204   if (NumParts > 1) {
205     // Assemble the value from multiple parts.
206     if (ValueVT.isInteger()) {
207       unsigned PartBits = PartVT.getSizeInBits();
208       unsigned ValueBits = ValueVT.getSizeInBits();
209 
210       // Assemble the power of 2 part.
211       unsigned RoundParts = NumParts & (NumParts - 1) ?
212         1 << Log2_32(NumParts) : NumParts;
213       unsigned RoundBits = PartBits * RoundParts;
214       EVT RoundVT = RoundBits == ValueBits ?
215         ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
216       SDValue Lo, Hi;
217 
218       EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2);
219 
220       if (RoundParts > 2) {
221         Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
222                               PartVT, HalfVT, V);
223         Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
224                               RoundParts / 2, PartVT, HalfVT, V);
225       } else {
226         Lo = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[0]);
227         Hi = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[1]);
228       }
229 
230       if (DAG.getDataLayout().isBigEndian())
231         std::swap(Lo, Hi);
232 
233       Val = DAG.getNode(ISD::BUILD_PAIR, DL, RoundVT, Lo, Hi);
234 
235       if (RoundParts < NumParts) {
236         // Assemble the trailing non-power-of-2 part.
237         unsigned OddParts = NumParts - RoundParts;
238         EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits);
239         Hi = getCopyFromParts(DAG, DL,
240                               Parts + RoundParts, OddParts, PartVT, OddVT, V);
241 
242         // Combine the round and odd parts.
243         Lo = Val;
244         if (DAG.getDataLayout().isBigEndian())
245           std::swap(Lo, Hi);
246         EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
247         Hi = DAG.getNode(ISD::ANY_EXTEND, DL, TotalVT, Hi);
248         Hi =
249             DAG.getNode(ISD::SHL, DL, TotalVT, Hi,
250                         DAG.getConstant(Lo.getValueSizeInBits(), DL,
251                                         TLI.getPointerTy(DAG.getDataLayout())));
252         Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, TotalVT, Lo);
253         Val = DAG.getNode(ISD::OR, DL, TotalVT, Lo, Hi);
254       }
255     } else if (PartVT.isFloatingPoint()) {
256       // FP split into multiple FP parts (for ppcf128)
257       assert(ValueVT == EVT(MVT::ppcf128) && PartVT == MVT::f64 &&
258              "Unexpected split");
259       SDValue Lo, Hi;
260       Lo = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[0]);
261       Hi = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[1]);
262       if (TLI.hasBigEndianPartOrdering(ValueVT, DAG.getDataLayout()))
263         std::swap(Lo, Hi);
264       Val = DAG.getNode(ISD::BUILD_PAIR, DL, ValueVT, Lo, Hi);
265     } else {
266       // FP split into integer parts (soft fp)
267       assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
268              !PartVT.isVector() && "Unexpected split");
269       EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
270       Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V);
271     }
272   }
273 
274   // There is now one part, held in Val.  Correct it to match ValueVT.
275   // PartEVT is the type of the register class that holds the value.
276   // ValueVT is the type of the inline asm operation.
277   EVT PartEVT = Val.getValueType();
278 
279   if (PartEVT == ValueVT)
280     return Val;
281 
282   if (PartEVT.isInteger() && ValueVT.isFloatingPoint() &&
283       ValueVT.bitsLT(PartEVT)) {
284     // For an FP value in an integer part, we need to truncate to the right
285     // width first.
286     PartEVT = EVT::getIntegerVT(*DAG.getContext(),  ValueVT.getSizeInBits());
287     Val = DAG.getNode(ISD::TRUNCATE, DL, PartEVT, Val);
288   }
289 
290   // Handle types that have the same size.
291   if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits())
292     return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
293 
294   // Handle types with different sizes.
295   if (PartEVT.isInteger() && ValueVT.isInteger()) {
296     if (ValueVT.bitsLT(PartEVT)) {
297       // For a truncate, see if we have any information to
298       // indicate whether the truncated bits will always be
299       // zero or sign-extension.
300       if (AssertOp.hasValue())
301         Val = DAG.getNode(*AssertOp, DL, PartEVT, Val,
302                           DAG.getValueType(ValueVT));
303       return DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
304     }
305     return DAG.getNode(ISD::ANY_EXTEND, DL, ValueVT, Val);
306   }
307 
308   if (PartEVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
309     // FP_ROUND's are always exact here.
310     if (ValueVT.bitsLT(Val.getValueType()))
311       return DAG.getNode(
312           ISD::FP_ROUND, DL, ValueVT, Val,
313           DAG.getTargetConstant(1, DL, TLI.getPointerTy(DAG.getDataLayout())));
314 
315     return DAG.getNode(ISD::FP_EXTEND, DL, ValueVT, Val);
316   }
317 
318   llvm_unreachable("Unknown mismatch!");
319 }
320 
321 static void diagnosePossiblyInvalidConstraint(LLVMContext &Ctx, const Value *V,
322                                               const Twine &ErrMsg) {
323   const Instruction *I = dyn_cast_or_null<Instruction>(V);
324   if (!V)
325     return Ctx.emitError(ErrMsg);
326 
327   const char *AsmError = ", possible invalid constraint for vector type";
328   if (const CallInst *CI = dyn_cast<CallInst>(I))
329     if (isa<InlineAsm>(CI->getCalledValue()))
330       return Ctx.emitError(I, ErrMsg + AsmError);
331 
332   return Ctx.emitError(I, ErrMsg);
333 }
334 
335 /// getCopyFromPartsVector - Create a value that contains the specified legal
336 /// parts combined into the value they represent.  If the parts combine to a
337 /// type larger than ValueVT then AssertOp can be used to specify whether the
338 /// extra bits are known to be zero (ISD::AssertZext) or sign extended from
339 /// ValueVT (ISD::AssertSext).
340 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL,
341                                       const SDValue *Parts, unsigned NumParts,
342                                       MVT PartVT, EVT ValueVT, const Value *V,
343                                       bool IsABIRegCopy) {
344   assert(ValueVT.isVector() && "Not a vector value");
345   assert(NumParts > 0 && "No parts to assemble!");
346   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
347   SDValue Val = Parts[0];
348 
349   // Handle a multi-element vector.
350   if (NumParts > 1) {
351     EVT IntermediateVT;
352     MVT RegisterVT;
353     unsigned NumIntermediates;
354     unsigned NumRegs;
355 
356     if (IsABIRegCopy) {
357       NumRegs = TLI.getVectorTypeBreakdownForCallingConv(
358           *DAG.getContext(), ValueVT, IntermediateVT, NumIntermediates,
359           RegisterVT);
360     } else {
361       NumRegs =
362           TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
363                                      NumIntermediates, RegisterVT);
364     }
365 
366     assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
367     NumParts = NumRegs; // Silence a compiler warning.
368     assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
369     assert(RegisterVT.getSizeInBits() ==
370            Parts[0].getSimpleValueType().getSizeInBits() &&
371            "Part type sizes don't match!");
372 
373     // Assemble the parts into intermediate operands.
374     SmallVector<SDValue, 8> Ops(NumIntermediates);
375     if (NumIntermediates == NumParts) {
376       // If the register was not expanded, truncate or copy the value,
377       // as appropriate.
378       for (unsigned i = 0; i != NumParts; ++i)
379         Ops[i] = getCopyFromParts(DAG, DL, &Parts[i], 1,
380                                   PartVT, IntermediateVT, V);
381     } else if (NumParts > 0) {
382       // If the intermediate type was expanded, build the intermediate
383       // operands from the parts.
384       assert(NumParts % NumIntermediates == 0 &&
385              "Must expand into a divisible number of parts!");
386       unsigned Factor = NumParts / NumIntermediates;
387       for (unsigned i = 0; i != NumIntermediates; ++i)
388         Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
389                                   PartVT, IntermediateVT, V);
390     }
391 
392     // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the
393     // intermediate operands.
394     EVT BuiltVectorTy =
395         EVT::getVectorVT(*DAG.getContext(), IntermediateVT.getScalarType(),
396                          (IntermediateVT.isVector()
397                               ? IntermediateVT.getVectorNumElements() * NumParts
398                               : NumIntermediates));
399     Val = DAG.getNode(IntermediateVT.isVector() ? ISD::CONCAT_VECTORS
400                                                 : ISD::BUILD_VECTOR,
401                       DL, BuiltVectorTy, Ops);
402   }
403 
404   // There is now one part, held in Val.  Correct it to match ValueVT.
405   EVT PartEVT = Val.getValueType();
406 
407   if (PartEVT == ValueVT)
408     return Val;
409 
410   if (PartEVT.isVector()) {
411     // If the element type of the source/dest vectors are the same, but the
412     // parts vector has more elements than the value vector, then we have a
413     // vector widening case (e.g. <2 x float> -> <4 x float>).  Extract the
414     // elements we want.
415     if (PartEVT.getVectorElementType() == ValueVT.getVectorElementType()) {
416       assert(PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements() &&
417              "Cannot narrow, it would be a lossy transformation");
418       return DAG.getNode(
419           ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val,
420           DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
421     }
422 
423     // Vector/Vector bitcast.
424     if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits())
425       return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
426 
427     assert(PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements() &&
428       "Cannot handle this kind of promotion");
429     // Promoted vector extract
430     return DAG.getAnyExtOrTrunc(Val, DL, ValueVT);
431 
432   }
433 
434   // Trivial bitcast if the types are the same size and the destination
435   // vector type is legal.
436   if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits() &&
437       TLI.isTypeLegal(ValueVT))
438     return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
439 
440   if (ValueVT.getVectorNumElements() != 1) {
441      // Certain ABIs require that vectors are passed as integers. For vectors
442      // are the same size, this is an obvious bitcast.
443      if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits()) {
444        return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
445      } else if (ValueVT.getSizeInBits() < PartEVT.getSizeInBits()) {
446        // Bitcast Val back the original type and extract the corresponding
447        // vector we want.
448        unsigned Elts = PartEVT.getSizeInBits() / ValueVT.getScalarSizeInBits();
449        EVT WiderVecType = EVT::getVectorVT(*DAG.getContext(),
450                                            ValueVT.getVectorElementType(), Elts);
451        Val = DAG.getBitcast(WiderVecType, Val);
452        return DAG.getNode(
453            ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val,
454            DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
455      }
456 
457      diagnosePossiblyInvalidConstraint(
458          *DAG.getContext(), V, "non-trivial scalar-to-vector conversion");
459      return DAG.getUNDEF(ValueVT);
460   }
461 
462   // Handle cases such as i8 -> <1 x i1>
463   EVT ValueSVT = ValueVT.getVectorElementType();
464   if (ValueVT.getVectorNumElements() == 1 && ValueSVT != PartEVT)
465     Val = ValueVT.isFloatingPoint() ? DAG.getFPExtendOrRound(Val, DL, ValueSVT)
466                                     : DAG.getAnyExtOrTrunc(Val, DL, ValueSVT);
467 
468   return DAG.getBuildVector(ValueVT, DL, Val);
469 }
470 
471 static void getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &dl,
472                                  SDValue Val, SDValue *Parts, unsigned NumParts,
473                                  MVT PartVT, const Value *V, bool IsABIRegCopy);
474 
475 /// getCopyToParts - Create a series of nodes that contain the specified value
476 /// split into legal parts.  If the parts contain more bits than Val, then, for
477 /// integers, ExtendKind can be used to specify how to generate the extra bits.
478 static void getCopyToParts(SelectionDAG &DAG, const SDLoc &DL, SDValue Val,
479                            SDValue *Parts, unsigned NumParts, MVT PartVT,
480                            const Value *V,
481                            ISD::NodeType ExtendKind = ISD::ANY_EXTEND,
482                            bool IsABIRegCopy = false) {
483   EVT ValueVT = Val.getValueType();
484 
485   // Handle the vector case separately.
486   if (ValueVT.isVector())
487     return getCopyToPartsVector(DAG, DL, Val, Parts, NumParts, PartVT, V,
488                                 IsABIRegCopy);
489 
490   unsigned PartBits = PartVT.getSizeInBits();
491   unsigned OrigNumParts = NumParts;
492   assert(DAG.getTargetLoweringInfo().isTypeLegal(PartVT) &&
493          "Copying to an illegal type!");
494 
495   if (NumParts == 0)
496     return;
497 
498   assert(!ValueVT.isVector() && "Vector case handled elsewhere");
499   EVT PartEVT = PartVT;
500   if (PartEVT == ValueVT) {
501     assert(NumParts == 1 && "No-op copy with multiple parts!");
502     Parts[0] = Val;
503     return;
504   }
505 
506   if (NumParts * PartBits > ValueVT.getSizeInBits()) {
507     // If the parts cover more bits than the value has, promote the value.
508     if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
509       assert(NumParts == 1 && "Do not know what to promote to!");
510       Val = DAG.getNode(ISD::FP_EXTEND, DL, PartVT, Val);
511     } else {
512       if (ValueVT.isFloatingPoint()) {
513         // FP values need to be bitcast, then extended if they are being put
514         // into a larger container.
515         ValueVT = EVT::getIntegerVT(*DAG.getContext(),  ValueVT.getSizeInBits());
516         Val = DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
517       }
518       assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
519              ValueVT.isInteger() &&
520              "Unknown mismatch!");
521       ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
522       Val = DAG.getNode(ExtendKind, DL, ValueVT, Val);
523       if (PartVT == MVT::x86mmx)
524         Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
525     }
526   } else if (PartBits == ValueVT.getSizeInBits()) {
527     // Different types of the same size.
528     assert(NumParts == 1 && PartEVT != ValueVT);
529     Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
530   } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
531     // If the parts cover less bits than value has, truncate the value.
532     assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
533            ValueVT.isInteger() &&
534            "Unknown mismatch!");
535     ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
536     Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
537     if (PartVT == MVT::x86mmx)
538       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
539   }
540 
541   // The value may have changed - recompute ValueVT.
542   ValueVT = Val.getValueType();
543   assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
544          "Failed to tile the value with PartVT!");
545 
546   if (NumParts == 1) {
547     if (PartEVT != ValueVT) {
548       diagnosePossiblyInvalidConstraint(*DAG.getContext(), V,
549                                         "scalar-to-vector conversion failed");
550       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
551     }
552 
553     Parts[0] = Val;
554     return;
555   }
556 
557   // Expand the value into multiple parts.
558   if (NumParts & (NumParts - 1)) {
559     // The number of parts is not a power of 2.  Split off and copy the tail.
560     assert(PartVT.isInteger() && ValueVT.isInteger() &&
561            "Do not know what to expand to!");
562     unsigned RoundParts = 1 << Log2_32(NumParts);
563     unsigned RoundBits = RoundParts * PartBits;
564     unsigned OddParts = NumParts - RoundParts;
565     SDValue OddVal = DAG.getNode(ISD::SRL, DL, ValueVT, Val,
566                                  DAG.getIntPtrConstant(RoundBits, DL));
567     getCopyToParts(DAG, DL, OddVal, Parts + RoundParts, OddParts, PartVT, V);
568 
569     if (DAG.getDataLayout().isBigEndian())
570       // The odd parts were reversed by getCopyToParts - unreverse them.
571       std::reverse(Parts + RoundParts, Parts + NumParts);
572 
573     NumParts = RoundParts;
574     ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
575     Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
576   }
577 
578   // The number of parts is a power of 2.  Repeatedly bisect the value using
579   // EXTRACT_ELEMENT.
580   Parts[0] = DAG.getNode(ISD::BITCAST, DL,
581                          EVT::getIntegerVT(*DAG.getContext(),
582                                            ValueVT.getSizeInBits()),
583                          Val);
584 
585   for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
586     for (unsigned i = 0; i < NumParts; i += StepSize) {
587       unsigned ThisBits = StepSize * PartBits / 2;
588       EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits);
589       SDValue &Part0 = Parts[i];
590       SDValue &Part1 = Parts[i+StepSize/2];
591 
592       Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
593                           ThisVT, Part0, DAG.getIntPtrConstant(1, DL));
594       Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
595                           ThisVT, Part0, DAG.getIntPtrConstant(0, DL));
596 
597       if (ThisBits == PartBits && ThisVT != PartVT) {
598         Part0 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part0);
599         Part1 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part1);
600       }
601     }
602   }
603 
604   if (DAG.getDataLayout().isBigEndian())
605     std::reverse(Parts, Parts + OrigNumParts);
606 }
607 
608 
609 /// getCopyToPartsVector - Create a series of nodes that contain the specified
610 /// value split into legal parts.
611 static void getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &DL,
612                                  SDValue Val, SDValue *Parts, unsigned NumParts,
613                                  MVT PartVT, const Value *V,
614                                  bool IsABIRegCopy) {
615   EVT ValueVT = Val.getValueType();
616   assert(ValueVT.isVector() && "Not a vector");
617   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
618 
619   if (NumParts == 1) {
620     EVT PartEVT = PartVT;
621     if (PartEVT == ValueVT) {
622       // Nothing to do.
623     } else if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
624       // Bitconvert vector->vector case.
625       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
626     } else if (PartVT.isVector() &&
627                PartEVT.getVectorElementType() == ValueVT.getVectorElementType() &&
628                PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements()) {
629       EVT ElementVT = PartVT.getVectorElementType();
630       // Vector widening case, e.g. <2 x float> -> <4 x float>.  Shuffle in
631       // undef elements.
632       SmallVector<SDValue, 16> Ops;
633       for (unsigned i = 0, e = ValueVT.getVectorNumElements(); i != e; ++i)
634         Ops.push_back(DAG.getNode(
635             ISD::EXTRACT_VECTOR_ELT, DL, ElementVT, Val,
636             DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout()))));
637 
638       for (unsigned i = ValueVT.getVectorNumElements(),
639            e = PartVT.getVectorNumElements(); i != e; ++i)
640         Ops.push_back(DAG.getUNDEF(ElementVT));
641 
642       Val = DAG.getBuildVector(PartVT, DL, Ops);
643 
644       // FIXME: Use CONCAT for 2x -> 4x.
645 
646       //SDValue UndefElts = DAG.getUNDEF(VectorTy);
647       //Val = DAG.getNode(ISD::CONCAT_VECTORS, DL, PartVT, Val, UndefElts);
648     } else if (PartVT.isVector() &&
649                PartEVT.getVectorElementType().bitsGE(
650                  ValueVT.getVectorElementType()) &&
651                PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements()) {
652 
653       // Promoted vector extract
654       Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT);
655     } else {
656       if (ValueVT.getVectorNumElements() == 1) {
657         Val = DAG.getNode(
658             ISD::EXTRACT_VECTOR_ELT, DL, PartVT, Val,
659             DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
660       } else {
661         assert(PartVT.getSizeInBits() > ValueVT.getSizeInBits() &&
662                "lossy conversion of vector to scalar type");
663         EVT IntermediateType =
664             EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
665         Val = DAG.getBitcast(IntermediateType, Val);
666         Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT);
667       }
668     }
669 
670     assert(Val.getValueType() == PartVT && "Unexpected vector part value type");
671     Parts[0] = Val;
672     return;
673   }
674 
675   // Handle a multi-element vector.
676   EVT IntermediateVT;
677   MVT RegisterVT;
678   unsigned NumIntermediates;
679   unsigned NumRegs;
680   if (IsABIRegCopy) {
681     NumRegs = TLI.getVectorTypeBreakdownForCallingConv(
682         *DAG.getContext(), ValueVT, IntermediateVT, NumIntermediates,
683         RegisterVT);
684   } else {
685     NumRegs =
686         TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
687                                    NumIntermediates, RegisterVT);
688   }
689   unsigned NumElements = ValueVT.getVectorNumElements();
690 
691   assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
692   NumParts = NumRegs; // Silence a compiler warning.
693   assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
694 
695   // Convert the vector to the appropiate type if necessary.
696   unsigned DestVectorNoElts =
697       NumIntermediates *
698       (IntermediateVT.isVector() ? IntermediateVT.getVectorNumElements() : 1);
699   EVT BuiltVectorTy = EVT::getVectorVT(
700       *DAG.getContext(), IntermediateVT.getScalarType(), DestVectorNoElts);
701   if (Val.getValueType() != BuiltVectorTy)
702     Val = DAG.getNode(ISD::BITCAST, DL, BuiltVectorTy, Val);
703 
704   // Split the vector into intermediate operands.
705   SmallVector<SDValue, 8> Ops(NumIntermediates);
706   for (unsigned i = 0; i != NumIntermediates; ++i) {
707     if (IntermediateVT.isVector())
708       Ops[i] =
709           DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, IntermediateVT, Val,
710                       DAG.getConstant(i * (NumElements / NumIntermediates), DL,
711                                       TLI.getVectorIdxTy(DAG.getDataLayout())));
712     else
713       Ops[i] = DAG.getNode(
714           ISD::EXTRACT_VECTOR_ELT, DL, IntermediateVT, Val,
715           DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
716   }
717 
718   // Split the intermediate operands into legal parts.
719   if (NumParts == NumIntermediates) {
720     // If the register was not expanded, promote or copy the value,
721     // as appropriate.
722     for (unsigned i = 0; i != NumParts; ++i)
723       getCopyToParts(DAG, DL, Ops[i], &Parts[i], 1, PartVT, V);
724   } else if (NumParts > 0) {
725     // If the intermediate type was expanded, split each the value into
726     // legal parts.
727     assert(NumIntermediates != 0 && "division by zero");
728     assert(NumParts % NumIntermediates == 0 &&
729            "Must expand into a divisible number of parts!");
730     unsigned Factor = NumParts / NumIntermediates;
731     for (unsigned i = 0; i != NumIntermediates; ++i)
732       getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
733   }
734 }
735 
736 RegsForValue::RegsForValue(const SmallVector<unsigned, 4> &regs, MVT regvt,
737                            EVT valuevt, bool IsABIMangledValue)
738     : ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs),
739       RegCount(1, regs.size()), IsABIMangled(IsABIMangledValue) {}
740 
741 RegsForValue::RegsForValue(LLVMContext &Context, const TargetLowering &TLI,
742                            const DataLayout &DL, unsigned Reg, Type *Ty,
743                            bool IsABIMangledValue) {
744   ComputeValueVTs(TLI, DL, Ty, ValueVTs);
745 
746   IsABIMangled = IsABIMangledValue;
747 
748   for (EVT ValueVT : ValueVTs) {
749     unsigned NumRegs = IsABIMangledValue
750                            ? TLI.getNumRegistersForCallingConv(Context, ValueVT)
751                            : TLI.getNumRegisters(Context, ValueVT);
752     MVT RegisterVT = IsABIMangledValue
753                          ? TLI.getRegisterTypeForCallingConv(Context, ValueVT)
754                          : TLI.getRegisterType(Context, ValueVT);
755     for (unsigned i = 0; i != NumRegs; ++i)
756       Regs.push_back(Reg + i);
757     RegVTs.push_back(RegisterVT);
758     RegCount.push_back(NumRegs);
759     Reg += NumRegs;
760   }
761 }
762 
763 SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
764                                       FunctionLoweringInfo &FuncInfo,
765                                       const SDLoc &dl, SDValue &Chain,
766                                       SDValue *Flag, const Value *V) const {
767   // A Value with type {} or [0 x %t] needs no registers.
768   if (ValueVTs.empty())
769     return SDValue();
770 
771   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
772 
773   // Assemble the legal parts into the final values.
774   SmallVector<SDValue, 4> Values(ValueVTs.size());
775   SmallVector<SDValue, 8> Parts;
776   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
777     // Copy the legal parts from the registers.
778     EVT ValueVT = ValueVTs[Value];
779     unsigned NumRegs = RegCount[Value];
780     MVT RegisterVT = IsABIMangled
781                          ? TLI.getRegisterTypeForCallingConv(RegVTs[Value])
782                          : RegVTs[Value];
783 
784     Parts.resize(NumRegs);
785     for (unsigned i = 0; i != NumRegs; ++i) {
786       SDValue P;
787       if (!Flag) {
788         P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
789       } else {
790         P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
791         *Flag = P.getValue(2);
792       }
793 
794       Chain = P.getValue(1);
795       Parts[i] = P;
796 
797       // If the source register was virtual and if we know something about it,
798       // add an assert node.
799       if (!TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) ||
800           !RegisterVT.isInteger() || RegisterVT.isVector())
801         continue;
802 
803       const FunctionLoweringInfo::LiveOutInfo *LOI =
804         FuncInfo.GetLiveOutRegInfo(Regs[Part+i]);
805       if (!LOI)
806         continue;
807 
808       unsigned RegSize = RegisterVT.getSizeInBits();
809       unsigned NumSignBits = LOI->NumSignBits;
810       unsigned NumZeroBits = LOI->Known.countMinLeadingZeros();
811 
812       if (NumZeroBits == RegSize) {
813         // The current value is a zero.
814         // Explicitly express that as it would be easier for
815         // optimizations to kick in.
816         Parts[i] = DAG.getConstant(0, dl, RegisterVT);
817         continue;
818       }
819 
820       // FIXME: We capture more information than the dag can represent.  For
821       // now, just use the tightest assertzext/assertsext possible.
822       bool isSExt = true;
823       EVT FromVT(MVT::Other);
824       if (NumSignBits == RegSize) {
825         isSExt = true;   // ASSERT SEXT 1
826         FromVT = MVT::i1;
827       } else if (NumZeroBits >= RegSize - 1) {
828         isSExt = false;  // ASSERT ZEXT 1
829         FromVT = MVT::i1;
830       } else if (NumSignBits > RegSize - 8) {
831         isSExt = true;   // ASSERT SEXT 8
832         FromVT = MVT::i8;
833       } else if (NumZeroBits >= RegSize - 8) {
834         isSExt = false;  // ASSERT ZEXT 8
835         FromVT = MVT::i8;
836       } else if (NumSignBits > RegSize - 16) {
837         isSExt = true;   // ASSERT SEXT 16
838         FromVT = MVT::i16;
839       } else if (NumZeroBits >= RegSize - 16) {
840         isSExt = false;  // ASSERT ZEXT 16
841         FromVT = MVT::i16;
842       } else if (NumSignBits > RegSize - 32) {
843         isSExt = true;   // ASSERT SEXT 32
844         FromVT = MVT::i32;
845       } else if (NumZeroBits >= RegSize - 32) {
846         isSExt = false;  // ASSERT ZEXT 32
847         FromVT = MVT::i32;
848       } else {
849         continue;
850       }
851       // Add an assertion node.
852       assert(FromVT != MVT::Other);
853       Parts[i] = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
854                              RegisterVT, P, DAG.getValueType(FromVT));
855     }
856 
857     Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
858                                      NumRegs, RegisterVT, ValueVT, V);
859     Part += NumRegs;
860     Parts.clear();
861   }
862 
863   return DAG.getNode(ISD::MERGE_VALUES, dl, DAG.getVTList(ValueVTs), Values);
864 }
865 
866 void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
867                                  const SDLoc &dl, SDValue &Chain, SDValue *Flag,
868                                  const Value *V,
869                                  ISD::NodeType PreferredExtendType) const {
870   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
871   ISD::NodeType ExtendKind = PreferredExtendType;
872 
873   // Get the list of the values's legal parts.
874   unsigned NumRegs = Regs.size();
875   SmallVector<SDValue, 8> Parts(NumRegs);
876   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
877     unsigned NumParts = RegCount[Value];
878 
879     MVT RegisterVT = IsABIMangled
880                          ? TLI.getRegisterTypeForCallingConv(RegVTs[Value])
881                          : RegVTs[Value];
882 
883     if (ExtendKind == ISD::ANY_EXTEND && TLI.isZExtFree(Val, RegisterVT))
884       ExtendKind = ISD::ZERO_EXTEND;
885 
886     getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
887                    &Parts[Part], NumParts, RegisterVT, V, ExtendKind);
888     Part += NumParts;
889   }
890 
891   // Copy the parts into the registers.
892   SmallVector<SDValue, 8> Chains(NumRegs);
893   for (unsigned i = 0; i != NumRegs; ++i) {
894     SDValue Part;
895     if (!Flag) {
896       Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
897     } else {
898       Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
899       *Flag = Part.getValue(1);
900     }
901 
902     Chains[i] = Part.getValue(0);
903   }
904 
905   if (NumRegs == 1 || Flag)
906     // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
907     // flagged to it. That is the CopyToReg nodes and the user are considered
908     // a single scheduling unit. If we create a TokenFactor and return it as
909     // chain, then the TokenFactor is both a predecessor (operand) of the
910     // user as well as a successor (the TF operands are flagged to the user).
911     // c1, f1 = CopyToReg
912     // c2, f2 = CopyToReg
913     // c3     = TokenFactor c1, c2
914     // ...
915     //        = op c3, ..., f2
916     Chain = Chains[NumRegs-1];
917   else
918     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
919 }
920 
921 void RegsForValue::AddInlineAsmOperands(unsigned Code, bool HasMatching,
922                                         unsigned MatchingIdx, const SDLoc &dl,
923                                         SelectionDAG &DAG,
924                                         std::vector<SDValue> &Ops) const {
925   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
926 
927   unsigned Flag = InlineAsm::getFlagWord(Code, Regs.size());
928   if (HasMatching)
929     Flag = InlineAsm::getFlagWordForMatchingOp(Flag, MatchingIdx);
930   else if (!Regs.empty() &&
931            TargetRegisterInfo::isVirtualRegister(Regs.front())) {
932     // Put the register class of the virtual registers in the flag word.  That
933     // way, later passes can recompute register class constraints for inline
934     // assembly as well as normal instructions.
935     // Don't do this for tied operands that can use the regclass information
936     // from the def.
937     const MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
938     const TargetRegisterClass *RC = MRI.getRegClass(Regs.front());
939     Flag = InlineAsm::getFlagWordForRegClass(Flag, RC->getID());
940   }
941 
942   SDValue Res = DAG.getTargetConstant(Flag, dl, MVT::i32);
943   Ops.push_back(Res);
944 
945   if (Code == InlineAsm::Kind_Clobber) {
946     // Clobbers should always have a 1:1 mapping with registers, and may
947     // reference registers that have illegal (e.g. vector) types. Hence, we
948     // shouldn't try to apply any sort of splitting logic to them.
949     assert(Regs.size() == RegVTs.size() && Regs.size() == ValueVTs.size() &&
950            "No 1:1 mapping from clobbers to regs?");
951     unsigned SP = TLI.getStackPointerRegisterToSaveRestore();
952     (void)SP;
953     for (unsigned I = 0, E = ValueVTs.size(); I != E; ++I) {
954       Ops.push_back(DAG.getRegister(Regs[I], RegVTs[I]));
955       assert(
956           (Regs[I] != SP ||
957            DAG.getMachineFunction().getFrameInfo().hasOpaqueSPAdjustment()) &&
958           "If we clobbered the stack pointer, MFI should know about it.");
959     }
960     return;
961   }
962 
963   for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
964     unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
965     MVT RegisterVT = RegVTs[Value];
966     for (unsigned i = 0; i != NumRegs; ++i) {
967       assert(Reg < Regs.size() && "Mismatch in # registers expected");
968       unsigned TheReg = Regs[Reg++];
969       Ops.push_back(DAG.getRegister(TheReg, RegisterVT));
970     }
971   }
972 }
973 
974 SmallVector<std::pair<unsigned, unsigned>, 4>
975 RegsForValue::getRegsAndSizes() const {
976   SmallVector<std::pair<unsigned, unsigned>, 4> OutVec;
977   unsigned I = 0;
978   for (auto CountAndVT : zip_first(RegCount, RegVTs)) {
979     unsigned RegCount = std::get<0>(CountAndVT);
980     MVT RegisterVT = std::get<1>(CountAndVT);
981     unsigned RegisterSize = RegisterVT.getSizeInBits();
982     for (unsigned E = I + RegCount; I != E; ++I)
983       OutVec.push_back(std::make_pair(Regs[I], RegisterSize));
984   }
985   return OutVec;
986 }
987 
988 void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis *aa,
989                                const TargetLibraryInfo *li) {
990   AA = aa;
991   GFI = gfi;
992   LibInfo = li;
993   DL = &DAG.getDataLayout();
994   Context = DAG.getContext();
995   LPadToCallSiteMap.clear();
996 }
997 
998 void SelectionDAGBuilder::clear() {
999   NodeMap.clear();
1000   UnusedArgNodeMap.clear();
1001   PendingLoads.clear();
1002   PendingExports.clear();
1003   CurInst = nullptr;
1004   HasTailCall = false;
1005   SDNodeOrder = LowestSDNodeOrder;
1006   StatepointLowering.clear();
1007 }
1008 
1009 void SelectionDAGBuilder::clearDanglingDebugInfo() {
1010   DanglingDebugInfoMap.clear();
1011 }
1012 
1013 SDValue SelectionDAGBuilder::getRoot() {
1014   if (PendingLoads.empty())
1015     return DAG.getRoot();
1016 
1017   if (PendingLoads.size() == 1) {
1018     SDValue Root = PendingLoads[0];
1019     DAG.setRoot(Root);
1020     PendingLoads.clear();
1021     return Root;
1022   }
1023 
1024   // Otherwise, we have to make a token factor node.
1025   SDValue Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
1026                              PendingLoads);
1027   PendingLoads.clear();
1028   DAG.setRoot(Root);
1029   return Root;
1030 }
1031 
1032 SDValue SelectionDAGBuilder::getControlRoot() {
1033   SDValue Root = DAG.getRoot();
1034 
1035   if (PendingExports.empty())
1036     return Root;
1037 
1038   // Turn all of the CopyToReg chains into one factored node.
1039   if (Root.getOpcode() != ISD::EntryToken) {
1040     unsigned i = 0, e = PendingExports.size();
1041     for (; i != e; ++i) {
1042       assert(PendingExports[i].getNode()->getNumOperands() > 1);
1043       if (PendingExports[i].getNode()->getOperand(0) == Root)
1044         break;  // Don't add the root if we already indirectly depend on it.
1045     }
1046 
1047     if (i == e)
1048       PendingExports.push_back(Root);
1049   }
1050 
1051   Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
1052                      PendingExports);
1053   PendingExports.clear();
1054   DAG.setRoot(Root);
1055   return Root;
1056 }
1057 
1058 void SelectionDAGBuilder::visit(const Instruction &I) {
1059   // Set up outgoing PHI node register values before emitting the terminator.
1060   if (isa<TerminatorInst>(&I)) {
1061     HandlePHINodesInSuccessorBlocks(I.getParent());
1062   }
1063 
1064   // Increase the SDNodeOrder if dealing with a non-debug instruction.
1065   if (!isa<DbgInfoIntrinsic>(I))
1066     ++SDNodeOrder;
1067 
1068   CurInst = &I;
1069 
1070   visit(I.getOpcode(), I);
1071 
1072   if (auto *FPMO = dyn_cast<FPMathOperator>(&I)) {
1073     // Propagate the fast-math-flags of this IR instruction to the DAG node that
1074     // maps to this instruction.
1075     // TODO: We could handle all flags (nsw, etc) here.
1076     // TODO: If an IR instruction maps to >1 node, only the final node will have
1077     //       flags set.
1078     if (SDNode *Node = getNodeForIRValue(&I)) {
1079       SDNodeFlags IncomingFlags;
1080       IncomingFlags.copyFMF(*FPMO);
1081       if (!Node->getFlags().isDefined())
1082         Node->setFlags(IncomingFlags);
1083       else
1084         Node->intersectFlagsWith(IncomingFlags);
1085     }
1086   }
1087 
1088   if (!isa<TerminatorInst>(&I) && !HasTailCall &&
1089       !isStatepoint(&I)) // statepoints handle their exports internally
1090     CopyToExportRegsIfNeeded(&I);
1091 
1092   CurInst = nullptr;
1093 }
1094 
1095 void SelectionDAGBuilder::visitPHI(const PHINode &) {
1096   llvm_unreachable("SelectionDAGBuilder shouldn't visit PHI nodes!");
1097 }
1098 
1099 void SelectionDAGBuilder::visit(unsigned Opcode, const User &I) {
1100   // Note: this doesn't use InstVisitor, because it has to work with
1101   // ConstantExpr's in addition to instructions.
1102   switch (Opcode) {
1103   default: llvm_unreachable("Unknown instruction type encountered!");
1104     // Build the switch statement using the Instruction.def file.
1105 #define HANDLE_INST(NUM, OPCODE, CLASS) \
1106     case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break;
1107 #include "llvm/IR/Instruction.def"
1108   }
1109 }
1110 
1111 void SelectionDAGBuilder::dropDanglingDebugInfo(const DILocalVariable *Variable,
1112                                                 const DIExpression *Expr) {
1113   for (auto &DDIMI : DanglingDebugInfoMap)
1114     for (auto &DDI : DDIMI.second)
1115       if (DDI.getDI()) {
1116         const DbgValueInst *DI = DDI.getDI();
1117         DIVariable *DanglingVariable = DI->getVariable();
1118         DIExpression *DanglingExpr = DI->getExpression();
1119         if (DanglingVariable == Variable &&
1120             Expr->fragmentsOverlap(DanglingExpr)) {
1121           LLVM_DEBUG(dbgs()
1122                      << "Dropping dangling debug info for " << *DI << "\n");
1123           DDI = DanglingDebugInfo();
1124         }
1125       }
1126 }
1127 
1128 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
1129 // generate the debug data structures now that we've seen its definition.
1130 void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V,
1131                                                    SDValue Val) {
1132   DanglingDebugInfoVector &DDIV = DanglingDebugInfoMap[V];
1133   for (auto &DDI : DDIV) {
1134     if (!DDI.getDI())
1135       continue;
1136     const DbgValueInst *DI = DDI.getDI();
1137     DebugLoc dl = DDI.getdl();
1138     unsigned ValSDNodeOrder = Val.getNode()->getIROrder();
1139     unsigned DbgSDNodeOrder = DDI.getSDNodeOrder();
1140     DILocalVariable *Variable = DI->getVariable();
1141     DIExpression *Expr = DI->getExpression();
1142     assert(Variable->isValidLocationForIntrinsic(dl) &&
1143            "Expected inlined-at fields to agree");
1144     SDDbgValue *SDV;
1145     if (Val.getNode()) {
1146       if (!EmitFuncArgumentDbgValue(V, Variable, Expr, dl, false, Val)) {
1147         LLVM_DEBUG(dbgs() << "Resolve dangling debug info [order="
1148                           << DbgSDNodeOrder << "] for:\n  " << *DI << "\n");
1149         LLVM_DEBUG(dbgs() << "  By mapping to:\n    "; Val.dump());
1150         // Increase the SDNodeOrder for the DbgValue here to make sure it is
1151         // inserted after the definition of Val when emitting the instructions
1152         // after ISel. An alternative could be to teach
1153         // ScheduleDAGSDNodes::EmitSchedule to delay the insertion properly.
1154         LLVM_DEBUG(if (ValSDNodeOrder > DbgSDNodeOrder) dbgs()
1155                    << "changing SDNodeOrder from " << DbgSDNodeOrder << " to "
1156                    << ValSDNodeOrder << "\n");
1157         SDV = getDbgValue(Val, Variable, Expr, dl,
1158                           std::max(DbgSDNodeOrder, ValSDNodeOrder));
1159         DAG.AddDbgValue(SDV, Val.getNode(), false);
1160       } else
1161         LLVM_DEBUG(dbgs() << "Resolved dangling debug info for " << *DI
1162                           << "in EmitFuncArgumentDbgValue\n");
1163     } else
1164       LLVM_DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1165   }
1166   DanglingDebugInfoMap[V].clear();
1167 }
1168 
1169 /// getCopyFromRegs - If there was virtual register allocated for the value V
1170 /// emit CopyFromReg of the specified type Ty. Return empty SDValue() otherwise.
1171 SDValue SelectionDAGBuilder::getCopyFromRegs(const Value *V, Type *Ty) {
1172   DenseMap<const Value *, unsigned>::iterator It = FuncInfo.ValueMap.find(V);
1173   SDValue Result;
1174 
1175   if (It != FuncInfo.ValueMap.end()) {
1176     unsigned InReg = It->second;
1177 
1178     RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(),
1179                      DAG.getDataLayout(), InReg, Ty, isABIRegCopy(V));
1180     SDValue Chain = DAG.getEntryNode();
1181     Result = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr,
1182                                  V);
1183     resolveDanglingDebugInfo(V, Result);
1184   }
1185 
1186   return Result;
1187 }
1188 
1189 /// getValue - Return an SDValue for the given Value.
1190 SDValue SelectionDAGBuilder::getValue(const Value *V) {
1191   // If we already have an SDValue for this value, use it. It's important
1192   // to do this first, so that we don't create a CopyFromReg if we already
1193   // have a regular SDValue.
1194   SDValue &N = NodeMap[V];
1195   if (N.getNode()) return N;
1196 
1197   // If there's a virtual register allocated and initialized for this
1198   // value, use it.
1199   if (SDValue copyFromReg = getCopyFromRegs(V, V->getType()))
1200     return copyFromReg;
1201 
1202   // Otherwise create a new SDValue and remember it.
1203   SDValue Val = getValueImpl(V);
1204   NodeMap[V] = Val;
1205   resolveDanglingDebugInfo(V, Val);
1206   return Val;
1207 }
1208 
1209 // Return true if SDValue exists for the given Value
1210 bool SelectionDAGBuilder::findValue(const Value *V) const {
1211   return (NodeMap.find(V) != NodeMap.end()) ||
1212     (FuncInfo.ValueMap.find(V) != FuncInfo.ValueMap.end());
1213 }
1214 
1215 /// getNonRegisterValue - Return an SDValue for the given Value, but
1216 /// don't look in FuncInfo.ValueMap for a virtual register.
1217 SDValue SelectionDAGBuilder::getNonRegisterValue(const Value *V) {
1218   // If we already have an SDValue for this value, use it.
1219   SDValue &N = NodeMap[V];
1220   if (N.getNode()) {
1221     if (isa<ConstantSDNode>(N) || isa<ConstantFPSDNode>(N)) {
1222       // Remove the debug location from the node as the node is about to be used
1223       // in a location which may differ from the original debug location.  This
1224       // is relevant to Constant and ConstantFP nodes because they can appear
1225       // as constant expressions inside PHI nodes.
1226       N->setDebugLoc(DebugLoc());
1227     }
1228     return N;
1229   }
1230 
1231   // Otherwise create a new SDValue and remember it.
1232   SDValue Val = getValueImpl(V);
1233   NodeMap[V] = Val;
1234   resolveDanglingDebugInfo(V, Val);
1235   return Val;
1236 }
1237 
1238 /// getValueImpl - Helper function for getValue and getNonRegisterValue.
1239 /// Create an SDValue for the given value.
1240 SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
1241   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1242 
1243   if (const Constant *C = dyn_cast<Constant>(V)) {
1244     EVT VT = TLI.getValueType(DAG.getDataLayout(), V->getType(), true);
1245 
1246     if (const ConstantInt *CI = dyn_cast<ConstantInt>(C))
1247       return DAG.getConstant(*CI, getCurSDLoc(), VT);
1248 
1249     if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1250       return DAG.getGlobalAddress(GV, getCurSDLoc(), VT);
1251 
1252     if (isa<ConstantPointerNull>(C)) {
1253       unsigned AS = V->getType()->getPointerAddressSpace();
1254       return DAG.getConstant(0, getCurSDLoc(),
1255                              TLI.getPointerTy(DAG.getDataLayout(), AS));
1256     }
1257 
1258     if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1259       return DAG.getConstantFP(*CFP, getCurSDLoc(), VT);
1260 
1261     if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
1262       return DAG.getUNDEF(VT);
1263 
1264     if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1265       visit(CE->getOpcode(), *CE);
1266       SDValue N1 = NodeMap[V];
1267       assert(N1.getNode() && "visit didn't populate the NodeMap!");
1268       return N1;
1269     }
1270 
1271     if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1272       SmallVector<SDValue, 4> Constants;
1273       for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1274            OI != OE; ++OI) {
1275         SDNode *Val = getValue(*OI).getNode();
1276         // If the operand is an empty aggregate, there are no values.
1277         if (!Val) continue;
1278         // Add each leaf value from the operand to the Constants list
1279         // to form a flattened list of all the values.
1280         for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1281           Constants.push_back(SDValue(Val, i));
1282       }
1283 
1284       return DAG.getMergeValues(Constants, getCurSDLoc());
1285     }
1286 
1287     if (const ConstantDataSequential *CDS =
1288           dyn_cast<ConstantDataSequential>(C)) {
1289       SmallVector<SDValue, 4> Ops;
1290       for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1291         SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode();
1292         // Add each leaf value from the operand to the Constants list
1293         // to form a flattened list of all the values.
1294         for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1295           Ops.push_back(SDValue(Val, i));
1296       }
1297 
1298       if (isa<ArrayType>(CDS->getType()))
1299         return DAG.getMergeValues(Ops, getCurSDLoc());
1300       return NodeMap[V] = DAG.getBuildVector(VT, getCurSDLoc(), Ops);
1301     }
1302 
1303     if (C->getType()->isStructTy() || C->getType()->isArrayTy()) {
1304       assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1305              "Unknown struct or array constant!");
1306 
1307       SmallVector<EVT, 4> ValueVTs;
1308       ComputeValueVTs(TLI, DAG.getDataLayout(), C->getType(), ValueVTs);
1309       unsigned NumElts = ValueVTs.size();
1310       if (NumElts == 0)
1311         return SDValue(); // empty struct
1312       SmallVector<SDValue, 4> Constants(NumElts);
1313       for (unsigned i = 0; i != NumElts; ++i) {
1314         EVT EltVT = ValueVTs[i];
1315         if (isa<UndefValue>(C))
1316           Constants[i] = DAG.getUNDEF(EltVT);
1317         else if (EltVT.isFloatingPoint())
1318           Constants[i] = DAG.getConstantFP(0, getCurSDLoc(), EltVT);
1319         else
1320           Constants[i] = DAG.getConstant(0, getCurSDLoc(), EltVT);
1321       }
1322 
1323       return DAG.getMergeValues(Constants, getCurSDLoc());
1324     }
1325 
1326     if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
1327       return DAG.getBlockAddress(BA, VT);
1328 
1329     VectorType *VecTy = cast<VectorType>(V->getType());
1330     unsigned NumElements = VecTy->getNumElements();
1331 
1332     // Now that we know the number and type of the elements, get that number of
1333     // elements into the Ops array based on what kind of constant it is.
1334     SmallVector<SDValue, 16> Ops;
1335     if (const ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
1336       for (unsigned i = 0; i != NumElements; ++i)
1337         Ops.push_back(getValue(CV->getOperand(i)));
1338     } else {
1339       assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
1340       EVT EltVT =
1341           TLI.getValueType(DAG.getDataLayout(), VecTy->getElementType());
1342 
1343       SDValue Op;
1344       if (EltVT.isFloatingPoint())
1345         Op = DAG.getConstantFP(0, getCurSDLoc(), EltVT);
1346       else
1347         Op = DAG.getConstant(0, getCurSDLoc(), EltVT);
1348       Ops.assign(NumElements, Op);
1349     }
1350 
1351     // Create a BUILD_VECTOR node.
1352     return NodeMap[V] = DAG.getBuildVector(VT, getCurSDLoc(), Ops);
1353   }
1354 
1355   // If this is a static alloca, generate it as the frameindex instead of
1356   // computation.
1357   if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1358     DenseMap<const AllocaInst*, int>::iterator SI =
1359       FuncInfo.StaticAllocaMap.find(AI);
1360     if (SI != FuncInfo.StaticAllocaMap.end())
1361       return DAG.getFrameIndex(SI->second,
1362                                TLI.getFrameIndexTy(DAG.getDataLayout()));
1363   }
1364 
1365   // If this is an instruction which fast-isel has deferred, select it now.
1366   if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
1367     unsigned InReg = FuncInfo.InitializeRegForValue(Inst);
1368 
1369     RegsForValue RFV(*DAG.getContext(), TLI, DAG.getDataLayout(), InReg,
1370                      Inst->getType(), isABIRegCopy(V));
1371     SDValue Chain = DAG.getEntryNode();
1372     return RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr, V);
1373   }
1374 
1375   llvm_unreachable("Can't get register for value!");
1376 }
1377 
1378 void SelectionDAGBuilder::visitCatchPad(const CatchPadInst &I) {
1379   auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1380   bool IsMSVCCXX = Pers == EHPersonality::MSVC_CXX;
1381   bool IsCoreCLR = Pers == EHPersonality::CoreCLR;
1382   bool IsSEH = isAsynchronousEHPersonality(Pers);
1383   MachineBasicBlock *CatchPadMBB = FuncInfo.MBB;
1384   if (!IsSEH)
1385     CatchPadMBB->setIsEHScopeEntry();
1386   // In MSVC C++ and CoreCLR, catchblocks are funclets and need prologues.
1387   if (IsMSVCCXX || IsCoreCLR)
1388     CatchPadMBB->setIsEHFuncletEntry();
1389 
1390   DAG.setRoot(DAG.getNode(ISD::CATCHPAD, getCurSDLoc(), MVT::Other, getControlRoot()));
1391 }
1392 
1393 void SelectionDAGBuilder::visitCatchRet(const CatchReturnInst &I) {
1394   // Update machine-CFG edge.
1395   MachineBasicBlock *TargetMBB = FuncInfo.MBBMap[I.getSuccessor()];
1396   FuncInfo.MBB->addSuccessor(TargetMBB);
1397 
1398   auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1399   bool IsSEH = isAsynchronousEHPersonality(Pers);
1400   if (IsSEH) {
1401     // If this is not a fall-through branch or optimizations are switched off,
1402     // emit the branch.
1403     if (TargetMBB != NextBlock(FuncInfo.MBB) ||
1404         TM.getOptLevel() == CodeGenOpt::None)
1405       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other,
1406                               getControlRoot(), DAG.getBasicBlock(TargetMBB)));
1407     return;
1408   }
1409 
1410   // Figure out the funclet membership for the catchret's successor.
1411   // This will be used by the FuncletLayout pass to determine how to order the
1412   // BB's.
1413   // A 'catchret' returns to the outer scope's color.
1414   Value *ParentPad = I.getCatchSwitchParentPad();
1415   const BasicBlock *SuccessorColor;
1416   if (isa<ConstantTokenNone>(ParentPad))
1417     SuccessorColor = &FuncInfo.Fn->getEntryBlock();
1418   else
1419     SuccessorColor = cast<Instruction>(ParentPad)->getParent();
1420   assert(SuccessorColor && "No parent funclet for catchret!");
1421   MachineBasicBlock *SuccessorColorMBB = FuncInfo.MBBMap[SuccessorColor];
1422   assert(SuccessorColorMBB && "No MBB for SuccessorColor!");
1423 
1424   // Create the terminator node.
1425   SDValue Ret = DAG.getNode(ISD::CATCHRET, getCurSDLoc(), MVT::Other,
1426                             getControlRoot(), DAG.getBasicBlock(TargetMBB),
1427                             DAG.getBasicBlock(SuccessorColorMBB));
1428   DAG.setRoot(Ret);
1429 }
1430 
1431 void SelectionDAGBuilder::visitCleanupPad(const CleanupPadInst &CPI) {
1432   // Don't emit any special code for the cleanuppad instruction. It just marks
1433   // the start of an EH scope/funclet.
1434   FuncInfo.MBB->setIsEHScopeEntry();
1435   FuncInfo.MBB->setIsEHFuncletEntry();
1436   FuncInfo.MBB->setIsCleanupFuncletEntry();
1437 }
1438 
1439 /// When an invoke or a cleanupret unwinds to the next EH pad, there are
1440 /// many places it could ultimately go. In the IR, we have a single unwind
1441 /// destination, but in the machine CFG, we enumerate all the possible blocks.
1442 /// This function skips over imaginary basic blocks that hold catchswitch
1443 /// instructions, and finds all the "real" machine
1444 /// basic block destinations. As those destinations may not be successors of
1445 /// EHPadBB, here we also calculate the edge probability to those destinations.
1446 /// The passed-in Prob is the edge probability to EHPadBB.
1447 static void findUnwindDestinations(
1448     FunctionLoweringInfo &FuncInfo, const BasicBlock *EHPadBB,
1449     BranchProbability Prob,
1450     SmallVectorImpl<std::pair<MachineBasicBlock *, BranchProbability>>
1451         &UnwindDests) {
1452   EHPersonality Personality =
1453     classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1454   bool IsMSVCCXX = Personality == EHPersonality::MSVC_CXX;
1455   bool IsCoreCLR = Personality == EHPersonality::CoreCLR;
1456   bool IsSEH = isAsynchronousEHPersonality(Personality);
1457 
1458   while (EHPadBB) {
1459     const Instruction *Pad = EHPadBB->getFirstNonPHI();
1460     BasicBlock *NewEHPadBB = nullptr;
1461     if (isa<LandingPadInst>(Pad)) {
1462       // Stop on landingpads. They are not funclets.
1463       UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob);
1464       break;
1465     } else if (isa<CleanupPadInst>(Pad)) {
1466       // Stop on cleanup pads. Cleanups are always funclet entries for all known
1467       // personalities.
1468       UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob);
1469       UnwindDests.back().first->setIsEHScopeEntry();
1470       UnwindDests.back().first->setIsEHFuncletEntry();
1471       break;
1472     } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Pad)) {
1473       // Add the catchpad handlers to the possible destinations.
1474       for (const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
1475         UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob);
1476         // For MSVC++ and the CLR, catchblocks are funclets and need prologues.
1477         if (IsMSVCCXX || IsCoreCLR)
1478           UnwindDests.back().first->setIsEHFuncletEntry();
1479         if (!IsSEH)
1480           UnwindDests.back().first->setIsEHScopeEntry();
1481       }
1482       NewEHPadBB = CatchSwitch->getUnwindDest();
1483     } else {
1484       continue;
1485     }
1486 
1487     BranchProbabilityInfo *BPI = FuncInfo.BPI;
1488     if (BPI && NewEHPadBB)
1489       Prob *= BPI->getEdgeProbability(EHPadBB, NewEHPadBB);
1490     EHPadBB = NewEHPadBB;
1491   }
1492 }
1493 
1494 void SelectionDAGBuilder::visitCleanupRet(const CleanupReturnInst &I) {
1495   // Update successor info.
1496   SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests;
1497   auto UnwindDest = I.getUnwindDest();
1498   BranchProbabilityInfo *BPI = FuncInfo.BPI;
1499   BranchProbability UnwindDestProb =
1500       (BPI && UnwindDest)
1501           ? BPI->getEdgeProbability(FuncInfo.MBB->getBasicBlock(), UnwindDest)
1502           : BranchProbability::getZero();
1503   findUnwindDestinations(FuncInfo, UnwindDest, UnwindDestProb, UnwindDests);
1504   for (auto &UnwindDest : UnwindDests) {
1505     UnwindDest.first->setIsEHPad();
1506     addSuccessorWithProb(FuncInfo.MBB, UnwindDest.first, UnwindDest.second);
1507   }
1508   FuncInfo.MBB->normalizeSuccProbs();
1509 
1510   // Create the terminator node.
1511   SDValue Ret =
1512       DAG.getNode(ISD::CLEANUPRET, getCurSDLoc(), MVT::Other, getControlRoot());
1513   DAG.setRoot(Ret);
1514 }
1515 
1516 void SelectionDAGBuilder::visitCatchSwitch(const CatchSwitchInst &CSI) {
1517   report_fatal_error("visitCatchSwitch not yet implemented!");
1518 }
1519 
1520 void SelectionDAGBuilder::visitRet(const ReturnInst &I) {
1521   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1522   auto &DL = DAG.getDataLayout();
1523   SDValue Chain = getControlRoot();
1524   SmallVector<ISD::OutputArg, 8> Outs;
1525   SmallVector<SDValue, 8> OutVals;
1526 
1527   // Calls to @llvm.experimental.deoptimize don't generate a return value, so
1528   // lower
1529   //
1530   //   %val = call <ty> @llvm.experimental.deoptimize()
1531   //   ret <ty> %val
1532   //
1533   // differently.
1534   if (I.getParent()->getTerminatingDeoptimizeCall()) {
1535     LowerDeoptimizingReturn();
1536     return;
1537   }
1538 
1539   if (!FuncInfo.CanLowerReturn) {
1540     unsigned DemoteReg = FuncInfo.DemoteRegister;
1541     const Function *F = I.getParent()->getParent();
1542 
1543     // Emit a store of the return value through the virtual register.
1544     // Leave Outs empty so that LowerReturn won't try to load return
1545     // registers the usual way.
1546     SmallVector<EVT, 1> PtrValueVTs;
1547     ComputeValueVTs(TLI, DL,
1548                     F->getReturnType()->getPointerTo(
1549                         DAG.getDataLayout().getAllocaAddrSpace()),
1550                     PtrValueVTs);
1551 
1552     SDValue RetPtr = DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(),
1553                                         DemoteReg, PtrValueVTs[0]);
1554     SDValue RetOp = getValue(I.getOperand(0));
1555 
1556     SmallVector<EVT, 4> ValueVTs;
1557     SmallVector<uint64_t, 4> Offsets;
1558     ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs, &Offsets);
1559     unsigned NumValues = ValueVTs.size();
1560 
1561     SmallVector<SDValue, 4> Chains(NumValues);
1562     for (unsigned i = 0; i != NumValues; ++i) {
1563       // An aggregate return value cannot wrap around the address space, so
1564       // offsets to its parts don't wrap either.
1565       SDValue Ptr = DAG.getObjectPtrOffset(getCurSDLoc(), RetPtr, Offsets[i]);
1566       Chains[i] = DAG.getStore(
1567           Chain, getCurSDLoc(), SDValue(RetOp.getNode(), RetOp.getResNo() + i),
1568           // FIXME: better loc info would be nice.
1569           Ptr, MachinePointerInfo::getUnknownStack(DAG.getMachineFunction()));
1570     }
1571 
1572     Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
1573                         MVT::Other, Chains);
1574   } else if (I.getNumOperands() != 0) {
1575     SmallVector<EVT, 4> ValueVTs;
1576     ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs);
1577     unsigned NumValues = ValueVTs.size();
1578     if (NumValues) {
1579       SDValue RetOp = getValue(I.getOperand(0));
1580 
1581       const Function *F = I.getParent()->getParent();
1582 
1583       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1584       if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
1585                                           Attribute::SExt))
1586         ExtendKind = ISD::SIGN_EXTEND;
1587       else if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
1588                                                Attribute::ZExt))
1589         ExtendKind = ISD::ZERO_EXTEND;
1590 
1591       LLVMContext &Context = F->getContext();
1592       bool RetInReg = F->getAttributes().hasAttribute(
1593           AttributeList::ReturnIndex, Attribute::InReg);
1594 
1595       for (unsigned j = 0; j != NumValues; ++j) {
1596         EVT VT = ValueVTs[j];
1597 
1598         if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger())
1599           VT = TLI.getTypeForExtReturn(Context, VT, ExtendKind);
1600 
1601         unsigned NumParts = TLI.getNumRegistersForCallingConv(Context, VT);
1602         MVT PartVT = TLI.getRegisterTypeForCallingConv(Context, VT);
1603         SmallVector<SDValue, 4> Parts(NumParts);
1604         getCopyToParts(DAG, getCurSDLoc(),
1605                        SDValue(RetOp.getNode(), RetOp.getResNo() + j),
1606                        &Parts[0], NumParts, PartVT, &I, ExtendKind, true);
1607 
1608         // 'inreg' on function refers to return value
1609         ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
1610         if (RetInReg)
1611           Flags.setInReg();
1612 
1613         // Propagate extension type if any
1614         if (ExtendKind == ISD::SIGN_EXTEND)
1615           Flags.setSExt();
1616         else if (ExtendKind == ISD::ZERO_EXTEND)
1617           Flags.setZExt();
1618 
1619         for (unsigned i = 0; i < NumParts; ++i) {
1620           Outs.push_back(ISD::OutputArg(Flags, Parts[i].getValueType(),
1621                                         VT, /*isfixed=*/true, 0, 0));
1622           OutVals.push_back(Parts[i]);
1623         }
1624       }
1625     }
1626   }
1627 
1628   // Push in swifterror virtual register as the last element of Outs. This makes
1629   // sure swifterror virtual register will be returned in the swifterror
1630   // physical register.
1631   const Function *F = I.getParent()->getParent();
1632   if (TLI.supportSwiftError() &&
1633       F->getAttributes().hasAttrSomewhere(Attribute::SwiftError)) {
1634     assert(FuncInfo.SwiftErrorArg && "Need a swift error argument");
1635     ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
1636     Flags.setSwiftError();
1637     Outs.push_back(ISD::OutputArg(Flags, EVT(TLI.getPointerTy(DL)) /*vt*/,
1638                                   EVT(TLI.getPointerTy(DL)) /*argvt*/,
1639                                   true /*isfixed*/, 1 /*origidx*/,
1640                                   0 /*partOffs*/));
1641     // Create SDNode for the swifterror virtual register.
1642     OutVals.push_back(
1643         DAG.getRegister(FuncInfo.getOrCreateSwiftErrorVRegUseAt(
1644                             &I, FuncInfo.MBB, FuncInfo.SwiftErrorArg).first,
1645                         EVT(TLI.getPointerTy(DL))));
1646   }
1647 
1648   bool isVarArg = DAG.getMachineFunction().getFunction().isVarArg();
1649   CallingConv::ID CallConv =
1650     DAG.getMachineFunction().getFunction().getCallingConv();
1651   Chain = DAG.getTargetLoweringInfo().LowerReturn(
1652       Chain, CallConv, isVarArg, Outs, OutVals, getCurSDLoc(), DAG);
1653 
1654   // Verify that the target's LowerReturn behaved as expected.
1655   assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
1656          "LowerReturn didn't return a valid chain!");
1657 
1658   // Update the DAG with the new chain value resulting from return lowering.
1659   DAG.setRoot(Chain);
1660 }
1661 
1662 /// CopyToExportRegsIfNeeded - If the given value has virtual registers
1663 /// created for it, emit nodes to copy the value into the virtual
1664 /// registers.
1665 void SelectionDAGBuilder::CopyToExportRegsIfNeeded(const Value *V) {
1666   // Skip empty types
1667   if (V->getType()->isEmptyTy())
1668     return;
1669 
1670   DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1671   if (VMI != FuncInfo.ValueMap.end()) {
1672     assert(!V->use_empty() && "Unused value assigned virtual registers!");
1673     CopyValueToVirtualRegister(V, VMI->second);
1674   }
1675 }
1676 
1677 /// ExportFromCurrentBlock - If this condition isn't known to be exported from
1678 /// the current basic block, add it to ValueMap now so that we'll get a
1679 /// CopyTo/FromReg.
1680 void SelectionDAGBuilder::ExportFromCurrentBlock(const Value *V) {
1681   // No need to export constants.
1682   if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1683 
1684   // Already exported?
1685   if (FuncInfo.isExportedInst(V)) return;
1686 
1687   unsigned Reg = FuncInfo.InitializeRegForValue(V);
1688   CopyValueToVirtualRegister(V, Reg);
1689 }
1690 
1691 bool SelectionDAGBuilder::isExportableFromCurrentBlock(const Value *V,
1692                                                      const BasicBlock *FromBB) {
1693   // The operands of the setcc have to be in this block.  We don't know
1694   // how to export them from some other block.
1695   if (const Instruction *VI = dyn_cast<Instruction>(V)) {
1696     // Can export from current BB.
1697     if (VI->getParent() == FromBB)
1698       return true;
1699 
1700     // Is already exported, noop.
1701     return FuncInfo.isExportedInst(V);
1702   }
1703 
1704   // If this is an argument, we can export it if the BB is the entry block or
1705   // if it is already exported.
1706   if (isa<Argument>(V)) {
1707     if (FromBB == &FromBB->getParent()->getEntryBlock())
1708       return true;
1709 
1710     // Otherwise, can only export this if it is already exported.
1711     return FuncInfo.isExportedInst(V);
1712   }
1713 
1714   // Otherwise, constants can always be exported.
1715   return true;
1716 }
1717 
1718 /// Return branch probability calculated by BranchProbabilityInfo for IR blocks.
1719 BranchProbability
1720 SelectionDAGBuilder::getEdgeProbability(const MachineBasicBlock *Src,
1721                                         const MachineBasicBlock *Dst) const {
1722   BranchProbabilityInfo *BPI = FuncInfo.BPI;
1723   const BasicBlock *SrcBB = Src->getBasicBlock();
1724   const BasicBlock *DstBB = Dst->getBasicBlock();
1725   if (!BPI) {
1726     // If BPI is not available, set the default probability as 1 / N, where N is
1727     // the number of successors.
1728     auto SuccSize = std::max<uint32_t>(succ_size(SrcBB), 1);
1729     return BranchProbability(1, SuccSize);
1730   }
1731   return BPI->getEdgeProbability(SrcBB, DstBB);
1732 }
1733 
1734 void SelectionDAGBuilder::addSuccessorWithProb(MachineBasicBlock *Src,
1735                                                MachineBasicBlock *Dst,
1736                                                BranchProbability Prob) {
1737   if (!FuncInfo.BPI)
1738     Src->addSuccessorWithoutProb(Dst);
1739   else {
1740     if (Prob.isUnknown())
1741       Prob = getEdgeProbability(Src, Dst);
1742     Src->addSuccessor(Dst, Prob);
1743   }
1744 }
1745 
1746 static bool InBlock(const Value *V, const BasicBlock *BB) {
1747   if (const Instruction *I = dyn_cast<Instruction>(V))
1748     return I->getParent() == BB;
1749   return true;
1750 }
1751 
1752 /// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1753 /// This function emits a branch and is used at the leaves of an OR or an
1754 /// AND operator tree.
1755 void
1756 SelectionDAGBuilder::EmitBranchForMergedCondition(const Value *Cond,
1757                                                   MachineBasicBlock *TBB,
1758                                                   MachineBasicBlock *FBB,
1759                                                   MachineBasicBlock *CurBB,
1760                                                   MachineBasicBlock *SwitchBB,
1761                                                   BranchProbability TProb,
1762                                                   BranchProbability FProb,
1763                                                   bool InvertCond) {
1764   const BasicBlock *BB = CurBB->getBasicBlock();
1765 
1766   // If the leaf of the tree is a comparison, merge the condition into
1767   // the caseblock.
1768   if (const CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1769     // The operands of the cmp have to be in this block.  We don't know
1770     // how to export them from some other block.  If this is the first block
1771     // of the sequence, no exporting is needed.
1772     if (CurBB == SwitchBB ||
1773         (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1774          isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
1775       ISD::CondCode Condition;
1776       if (const ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1777         ICmpInst::Predicate Pred =
1778             InvertCond ? IC->getInversePredicate() : IC->getPredicate();
1779         Condition = getICmpCondCode(Pred);
1780       } else {
1781         const FCmpInst *FC = cast<FCmpInst>(Cond);
1782         FCmpInst::Predicate Pred =
1783             InvertCond ? FC->getInversePredicate() : FC->getPredicate();
1784         Condition = getFCmpCondCode(Pred);
1785         if (TM.Options.NoNaNsFPMath)
1786           Condition = getFCmpCodeWithoutNaN(Condition);
1787       }
1788 
1789       CaseBlock CB(Condition, BOp->getOperand(0), BOp->getOperand(1), nullptr,
1790                    TBB, FBB, CurBB, getCurSDLoc(), TProb, FProb);
1791       SwitchCases.push_back(CB);
1792       return;
1793     }
1794   }
1795 
1796   // Create a CaseBlock record representing this branch.
1797   ISD::CondCode Opc = InvertCond ? ISD::SETNE : ISD::SETEQ;
1798   CaseBlock CB(Opc, Cond, ConstantInt::getTrue(*DAG.getContext()),
1799                nullptr, TBB, FBB, CurBB, getCurSDLoc(), TProb, FProb);
1800   SwitchCases.push_back(CB);
1801 }
1802 
1803 /// FindMergedConditions - If Cond is an expression like
1804 void SelectionDAGBuilder::FindMergedConditions(const Value *Cond,
1805                                                MachineBasicBlock *TBB,
1806                                                MachineBasicBlock *FBB,
1807                                                MachineBasicBlock *CurBB,
1808                                                MachineBasicBlock *SwitchBB,
1809                                                Instruction::BinaryOps Opc,
1810                                                BranchProbability TProb,
1811                                                BranchProbability FProb,
1812                                                bool InvertCond) {
1813   // Skip over not part of the tree and remember to invert op and operands at
1814   // next level.
1815   if (BinaryOperator::isNot(Cond) && Cond->hasOneUse()) {
1816     const Value *CondOp = BinaryOperator::getNotArgument(Cond);
1817     if (InBlock(CondOp, CurBB->getBasicBlock())) {
1818       FindMergedConditions(CondOp, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb,
1819                            !InvertCond);
1820       return;
1821     }
1822   }
1823 
1824   const Instruction *BOp = dyn_cast<Instruction>(Cond);
1825   // Compute the effective opcode for Cond, taking into account whether it needs
1826   // to be inverted, e.g.
1827   //   and (not (or A, B)), C
1828   // gets lowered as
1829   //   and (and (not A, not B), C)
1830   unsigned BOpc = 0;
1831   if (BOp) {
1832     BOpc = BOp->getOpcode();
1833     if (InvertCond) {
1834       if (BOpc == Instruction::And)
1835         BOpc = Instruction::Or;
1836       else if (BOpc == Instruction::Or)
1837         BOpc = Instruction::And;
1838     }
1839   }
1840 
1841   // If this node is not part of the or/and tree, emit it as a branch.
1842   if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1843       BOpc != unsigned(Opc) || !BOp->hasOneUse() ||
1844       BOp->getParent() != CurBB->getBasicBlock() ||
1845       !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1846       !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1847     EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB, SwitchBB,
1848                                  TProb, FProb, InvertCond);
1849     return;
1850   }
1851 
1852   //  Create TmpBB after CurBB.
1853   MachineFunction::iterator BBI(CurBB);
1854   MachineFunction &MF = DAG.getMachineFunction();
1855   MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1856   CurBB->getParent()->insert(++BBI, TmpBB);
1857 
1858   if (Opc == Instruction::Or) {
1859     // Codegen X | Y as:
1860     // BB1:
1861     //   jmp_if_X TBB
1862     //   jmp TmpBB
1863     // TmpBB:
1864     //   jmp_if_Y TBB
1865     //   jmp FBB
1866     //
1867 
1868     // We have flexibility in setting Prob for BB1 and Prob for TmpBB.
1869     // The requirement is that
1870     //   TrueProb for BB1 + (FalseProb for BB1 * TrueProb for TmpBB)
1871     //     = TrueProb for original BB.
1872     // Assuming the original probabilities are A and B, one choice is to set
1873     // BB1's probabilities to A/2 and A/2+B, and set TmpBB's probabilities to
1874     // A/(1+B) and 2B/(1+B). This choice assumes that
1875     //   TrueProb for BB1 == FalseProb for BB1 * TrueProb for TmpBB.
1876     // Another choice is to assume TrueProb for BB1 equals to TrueProb for
1877     // TmpBB, but the math is more complicated.
1878 
1879     auto NewTrueProb = TProb / 2;
1880     auto NewFalseProb = TProb / 2 + FProb;
1881     // Emit the LHS condition.
1882     FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc,
1883                          NewTrueProb, NewFalseProb, InvertCond);
1884 
1885     // Normalize A/2 and B to get A/(1+B) and 2B/(1+B).
1886     SmallVector<BranchProbability, 2> Probs{TProb / 2, FProb};
1887     BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end());
1888     // Emit the RHS condition into TmpBB.
1889     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc,
1890                          Probs[0], Probs[1], InvertCond);
1891   } else {
1892     assert(Opc == Instruction::And && "Unknown merge op!");
1893     // Codegen X & Y as:
1894     // BB1:
1895     //   jmp_if_X TmpBB
1896     //   jmp FBB
1897     // TmpBB:
1898     //   jmp_if_Y TBB
1899     //   jmp FBB
1900     //
1901     //  This requires creation of TmpBB after CurBB.
1902 
1903     // We have flexibility in setting Prob for BB1 and Prob for TmpBB.
1904     // The requirement is that
1905     //   FalseProb for BB1 + (TrueProb for BB1 * FalseProb for TmpBB)
1906     //     = FalseProb for original BB.
1907     // Assuming the original probabilities are A and B, one choice is to set
1908     // BB1's probabilities to A+B/2 and B/2, and set TmpBB's probabilities to
1909     // 2A/(1+A) and B/(1+A). This choice assumes that FalseProb for BB1 ==
1910     // TrueProb for BB1 * FalseProb for TmpBB.
1911 
1912     auto NewTrueProb = TProb + FProb / 2;
1913     auto NewFalseProb = FProb / 2;
1914     // Emit the LHS condition.
1915     FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc,
1916                          NewTrueProb, NewFalseProb, InvertCond);
1917 
1918     // Normalize A and B/2 to get 2A/(1+A) and B/(1+A).
1919     SmallVector<BranchProbability, 2> Probs{TProb, FProb / 2};
1920     BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end());
1921     // Emit the RHS condition into TmpBB.
1922     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc,
1923                          Probs[0], Probs[1], InvertCond);
1924   }
1925 }
1926 
1927 /// If the set of cases should be emitted as a series of branches, return true.
1928 /// If we should emit this as a bunch of and/or'd together conditions, return
1929 /// false.
1930 bool
1931 SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases) {
1932   if (Cases.size() != 2) return true;
1933 
1934   // If this is two comparisons of the same values or'd or and'd together, they
1935   // will get folded into a single comparison, so don't emit two blocks.
1936   if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1937        Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1938       (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1939        Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1940     return false;
1941   }
1942 
1943   // Handle: (X != null) | (Y != null) --> (X|Y) != 0
1944   // Handle: (X == null) & (Y == null) --> (X|Y) == 0
1945   if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
1946       Cases[0].CC == Cases[1].CC &&
1947       isa<Constant>(Cases[0].CmpRHS) &&
1948       cast<Constant>(Cases[0].CmpRHS)->isNullValue()) {
1949     if (Cases[0].CC == ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
1950       return false;
1951     if (Cases[0].CC == ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
1952       return false;
1953   }
1954 
1955   return true;
1956 }
1957 
1958 void SelectionDAGBuilder::visitBr(const BranchInst &I) {
1959   MachineBasicBlock *BrMBB = FuncInfo.MBB;
1960 
1961   // Update machine-CFG edges.
1962   MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1963 
1964   if (I.isUnconditional()) {
1965     // Update machine-CFG edges.
1966     BrMBB->addSuccessor(Succ0MBB);
1967 
1968     // If this is not a fall-through branch or optimizations are switched off,
1969     // emit the branch.
1970     if (Succ0MBB != NextBlock(BrMBB) || TM.getOptLevel() == CodeGenOpt::None)
1971       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
1972                               MVT::Other, getControlRoot(),
1973                               DAG.getBasicBlock(Succ0MBB)));
1974 
1975     return;
1976   }
1977 
1978   // If this condition is one of the special cases we handle, do special stuff
1979   // now.
1980   const Value *CondVal = I.getCondition();
1981   MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1982 
1983   // If this is a series of conditions that are or'd or and'd together, emit
1984   // this as a sequence of branches instead of setcc's with and/or operations.
1985   // As long as jumps are not expensive, this should improve performance.
1986   // For example, instead of something like:
1987   //     cmp A, B
1988   //     C = seteq
1989   //     cmp D, E
1990   //     F = setle
1991   //     or C, F
1992   //     jnz foo
1993   // Emit:
1994   //     cmp A, B
1995   //     je foo
1996   //     cmp D, E
1997   //     jle foo
1998   if (const BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1999     Instruction::BinaryOps Opcode = BOp->getOpcode();
2000     if (!DAG.getTargetLoweringInfo().isJumpExpensive() && BOp->hasOneUse() &&
2001         !I.getMetadata(LLVMContext::MD_unpredictable) &&
2002         (Opcode == Instruction::And || Opcode == Instruction::Or)) {
2003       FindMergedConditions(BOp, Succ0MBB, Succ1MBB, BrMBB, BrMBB,
2004                            Opcode,
2005                            getEdgeProbability(BrMBB, Succ0MBB),
2006                            getEdgeProbability(BrMBB, Succ1MBB),
2007                            /*InvertCond=*/false);
2008       // If the compares in later blocks need to use values not currently
2009       // exported from this block, export them now.  This block should always
2010       // be the first entry.
2011       assert(SwitchCases[0].ThisBB == BrMBB && "Unexpected lowering!");
2012 
2013       // Allow some cases to be rejected.
2014       if (ShouldEmitAsBranches(SwitchCases)) {
2015         for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
2016           ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
2017           ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
2018         }
2019 
2020         // Emit the branch for this block.
2021         visitSwitchCase(SwitchCases[0], BrMBB);
2022         SwitchCases.erase(SwitchCases.begin());
2023         return;
2024       }
2025 
2026       // Okay, we decided not to do this, remove any inserted MBB's and clear
2027       // SwitchCases.
2028       for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
2029         FuncInfo.MF->erase(SwitchCases[i].ThisBB);
2030 
2031       SwitchCases.clear();
2032     }
2033   }
2034 
2035   // Create a CaseBlock record representing this branch.
2036   CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
2037                nullptr, Succ0MBB, Succ1MBB, BrMBB, getCurSDLoc());
2038 
2039   // Use visitSwitchCase to actually insert the fast branch sequence for this
2040   // cond branch.
2041   visitSwitchCase(CB, BrMBB);
2042 }
2043 
2044 /// visitSwitchCase - Emits the necessary code to represent a single node in
2045 /// the binary search tree resulting from lowering a switch instruction.
2046 void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB,
2047                                           MachineBasicBlock *SwitchBB) {
2048   SDValue Cond;
2049   SDValue CondLHS = getValue(CB.CmpLHS);
2050   SDLoc dl = CB.DL;
2051 
2052   // Build the setcc now.
2053   if (!CB.CmpMHS) {
2054     // Fold "(X == true)" to X and "(X == false)" to !X to
2055     // handle common cases produced by branch lowering.
2056     if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
2057         CB.CC == ISD::SETEQ)
2058       Cond = CondLHS;
2059     else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
2060              CB.CC == ISD::SETEQ) {
2061       SDValue True = DAG.getConstant(1, dl, CondLHS.getValueType());
2062       Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
2063     } else
2064       Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
2065   } else {
2066     assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
2067 
2068     const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
2069     const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
2070 
2071     SDValue CmpOp = getValue(CB.CmpMHS);
2072     EVT VT = CmpOp.getValueType();
2073 
2074     if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
2075       Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, dl, VT),
2076                           ISD::SETLE);
2077     } else {
2078       SDValue SUB = DAG.getNode(ISD::SUB, dl,
2079                                 VT, CmpOp, DAG.getConstant(Low, dl, VT));
2080       Cond = DAG.getSetCC(dl, MVT::i1, SUB,
2081                           DAG.getConstant(High-Low, dl, VT), ISD::SETULE);
2082     }
2083   }
2084 
2085   // Update successor info
2086   addSuccessorWithProb(SwitchBB, CB.TrueBB, CB.TrueProb);
2087   // TrueBB and FalseBB are always different unless the incoming IR is
2088   // degenerate. This only happens when running llc on weird IR.
2089   if (CB.TrueBB != CB.FalseBB)
2090     addSuccessorWithProb(SwitchBB, CB.FalseBB, CB.FalseProb);
2091   SwitchBB->normalizeSuccProbs();
2092 
2093   // If the lhs block is the next block, invert the condition so that we can
2094   // fall through to the lhs instead of the rhs block.
2095   if (CB.TrueBB == NextBlock(SwitchBB)) {
2096     std::swap(CB.TrueBB, CB.FalseBB);
2097     SDValue True = DAG.getConstant(1, dl, Cond.getValueType());
2098     Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
2099   }
2100 
2101   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
2102                                MVT::Other, getControlRoot(), Cond,
2103                                DAG.getBasicBlock(CB.TrueBB));
2104 
2105   // Insert the false branch. Do this even if it's a fall through branch,
2106   // this makes it easier to do DAG optimizations which require inverting
2107   // the branch condition.
2108   BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
2109                        DAG.getBasicBlock(CB.FalseBB));
2110 
2111   DAG.setRoot(BrCond);
2112 }
2113 
2114 /// visitJumpTable - Emit JumpTable node in the current MBB
2115 void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) {
2116   // Emit the code for the jump table
2117   assert(JT.Reg != -1U && "Should lower JT Header first!");
2118   EVT PTy = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2119   SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurSDLoc(),
2120                                      JT.Reg, PTy);
2121   SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
2122   SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurSDLoc(),
2123                                     MVT::Other, Index.getValue(1),
2124                                     Table, Index);
2125   DAG.setRoot(BrJumpTable);
2126 }
2127 
2128 /// visitJumpTableHeader - This function emits necessary code to produce index
2129 /// in the JumpTable from switch case.
2130 void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT,
2131                                                JumpTableHeader &JTH,
2132                                                MachineBasicBlock *SwitchBB) {
2133   SDLoc dl = getCurSDLoc();
2134 
2135   // Subtract the lowest switch case value from the value being switched on and
2136   // conditional branch to default mbb if the result is greater than the
2137   // difference between smallest and largest cases.
2138   SDValue SwitchOp = getValue(JTH.SValue);
2139   EVT VT = SwitchOp.getValueType();
2140   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp,
2141                             DAG.getConstant(JTH.First, dl, VT));
2142 
2143   // The SDNode we just created, which holds the value being switched on minus
2144   // the smallest case value, needs to be copied to a virtual register so it
2145   // can be used as an index into the jump table in a subsequent basic block.
2146   // This value may be smaller or larger than the target's pointer type, and
2147   // therefore require extension or truncating.
2148   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2149   SwitchOp = DAG.getZExtOrTrunc(Sub, dl, TLI.getPointerTy(DAG.getDataLayout()));
2150 
2151   unsigned JumpTableReg =
2152       FuncInfo.CreateReg(TLI.getPointerTy(DAG.getDataLayout()));
2153   SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl,
2154                                     JumpTableReg, SwitchOp);
2155   JT.Reg = JumpTableReg;
2156 
2157   // Emit the range check for the jump table, and branch to the default block
2158   // for the switch statement if the value being switched on exceeds the largest
2159   // case in the switch.
2160   SDValue CMP = DAG.getSetCC(
2161       dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
2162                                  Sub.getValueType()),
2163       Sub, DAG.getConstant(JTH.Last - JTH.First, dl, VT), ISD::SETUGT);
2164 
2165   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
2166                                MVT::Other, CopyTo, CMP,
2167                                DAG.getBasicBlock(JT.Default));
2168 
2169   // Avoid emitting unnecessary branches to the next block.
2170   if (JT.MBB != NextBlock(SwitchBB))
2171     BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
2172                          DAG.getBasicBlock(JT.MBB));
2173 
2174   DAG.setRoot(BrCond);
2175 }
2176 
2177 /// Create a LOAD_STACK_GUARD node, and let it carry the target specific global
2178 /// variable if there exists one.
2179 static SDValue getLoadStackGuard(SelectionDAG &DAG, const SDLoc &DL,
2180                                  SDValue &Chain) {
2181   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2182   EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
2183   MachineFunction &MF = DAG.getMachineFunction();
2184   Value *Global = TLI.getSDagStackGuard(*MF.getFunction().getParent());
2185   MachineSDNode *Node =
2186       DAG.getMachineNode(TargetOpcode::LOAD_STACK_GUARD, DL, PtrTy, Chain);
2187   if (Global) {
2188     MachinePointerInfo MPInfo(Global);
2189     MachineInstr::mmo_iterator MemRefs = MF.allocateMemRefsArray(1);
2190     auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant |
2191                  MachineMemOperand::MODereferenceable;
2192     *MemRefs = MF.getMachineMemOperand(MPInfo, Flags, PtrTy.getSizeInBits() / 8,
2193                                        DAG.getEVTAlignment(PtrTy));
2194     Node->setMemRefs(MemRefs, MemRefs + 1);
2195   }
2196   return SDValue(Node, 0);
2197 }
2198 
2199 /// Codegen a new tail for a stack protector check ParentMBB which has had its
2200 /// tail spliced into a stack protector check success bb.
2201 ///
2202 /// For a high level explanation of how this fits into the stack protector
2203 /// generation see the comment on the declaration of class
2204 /// StackProtectorDescriptor.
2205 void SelectionDAGBuilder::visitSPDescriptorParent(StackProtectorDescriptor &SPD,
2206                                                   MachineBasicBlock *ParentBB) {
2207 
2208   // First create the loads to the guard/stack slot for the comparison.
2209   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2210   EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
2211 
2212   MachineFrameInfo &MFI = ParentBB->getParent()->getFrameInfo();
2213   int FI = MFI.getStackProtectorIndex();
2214 
2215   SDValue Guard;
2216   SDLoc dl = getCurSDLoc();
2217   SDValue StackSlotPtr = DAG.getFrameIndex(FI, PtrTy);
2218   const Module &M = *ParentBB->getParent()->getFunction().getParent();
2219   unsigned Align = DL->getPrefTypeAlignment(Type::getInt8PtrTy(M.getContext()));
2220 
2221   // Generate code to load the content of the guard slot.
2222   SDValue GuardVal = DAG.getLoad(
2223       PtrTy, dl, DAG.getEntryNode(), StackSlotPtr,
2224       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), Align,
2225       MachineMemOperand::MOVolatile);
2226 
2227   if (TLI.useStackGuardXorFP())
2228     GuardVal = TLI.emitStackGuardXorFP(DAG, GuardVal, dl);
2229 
2230   // Retrieve guard check function, nullptr if instrumentation is inlined.
2231   if (const Value *GuardCheck = TLI.getSSPStackGuardCheck(M)) {
2232     // The target provides a guard check function to validate the guard value.
2233     // Generate a call to that function with the content of the guard slot as
2234     // argument.
2235     auto *Fn = cast<Function>(GuardCheck);
2236     FunctionType *FnTy = Fn->getFunctionType();
2237     assert(FnTy->getNumParams() == 1 && "Invalid function signature");
2238 
2239     TargetLowering::ArgListTy Args;
2240     TargetLowering::ArgListEntry Entry;
2241     Entry.Node = GuardVal;
2242     Entry.Ty = FnTy->getParamType(0);
2243     if (Fn->hasAttribute(1, Attribute::AttrKind::InReg))
2244       Entry.IsInReg = true;
2245     Args.push_back(Entry);
2246 
2247     TargetLowering::CallLoweringInfo CLI(DAG);
2248     CLI.setDebugLoc(getCurSDLoc())
2249       .setChain(DAG.getEntryNode())
2250       .setCallee(Fn->getCallingConv(), FnTy->getReturnType(),
2251                  getValue(GuardCheck), std::move(Args));
2252 
2253     std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
2254     DAG.setRoot(Result.second);
2255     return;
2256   }
2257 
2258   // If useLoadStackGuardNode returns true, generate LOAD_STACK_GUARD.
2259   // Otherwise, emit a volatile load to retrieve the stack guard value.
2260   SDValue Chain = DAG.getEntryNode();
2261   if (TLI.useLoadStackGuardNode()) {
2262     Guard = getLoadStackGuard(DAG, dl, Chain);
2263   } else {
2264     const Value *IRGuard = TLI.getSDagStackGuard(M);
2265     SDValue GuardPtr = getValue(IRGuard);
2266 
2267     Guard =
2268         DAG.getLoad(PtrTy, dl, Chain, GuardPtr, MachinePointerInfo(IRGuard, 0),
2269                     Align, MachineMemOperand::MOVolatile);
2270   }
2271 
2272   // Perform the comparison via a subtract/getsetcc.
2273   EVT VT = Guard.getValueType();
2274   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, Guard, GuardVal);
2275 
2276   SDValue Cmp = DAG.getSetCC(dl, TLI.getSetCCResultType(DAG.getDataLayout(),
2277                                                         *DAG.getContext(),
2278                                                         Sub.getValueType()),
2279                              Sub, DAG.getConstant(0, dl, VT), ISD::SETNE);
2280 
2281   // If the sub is not 0, then we know the guard/stackslot do not equal, so
2282   // branch to failure MBB.
2283   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
2284                                MVT::Other, GuardVal.getOperand(0),
2285                                Cmp, DAG.getBasicBlock(SPD.getFailureMBB()));
2286   // Otherwise branch to success MBB.
2287   SDValue Br = DAG.getNode(ISD::BR, dl,
2288                            MVT::Other, BrCond,
2289                            DAG.getBasicBlock(SPD.getSuccessMBB()));
2290 
2291   DAG.setRoot(Br);
2292 }
2293 
2294 /// Codegen the failure basic block for a stack protector check.
2295 ///
2296 /// A failure stack protector machine basic block consists simply of a call to
2297 /// __stack_chk_fail().
2298 ///
2299 /// For a high level explanation of how this fits into the stack protector
2300 /// generation see the comment on the declaration of class
2301 /// StackProtectorDescriptor.
2302 void
2303 SelectionDAGBuilder::visitSPDescriptorFailure(StackProtectorDescriptor &SPD) {
2304   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2305   SDValue Chain =
2306       TLI.makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid,
2307                       None, false, getCurSDLoc(), false, false).second;
2308   DAG.setRoot(Chain);
2309 }
2310 
2311 /// visitBitTestHeader - This function emits necessary code to produce value
2312 /// suitable for "bit tests"
2313 void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B,
2314                                              MachineBasicBlock *SwitchBB) {
2315   SDLoc dl = getCurSDLoc();
2316 
2317   // Subtract the minimum value
2318   SDValue SwitchOp = getValue(B.SValue);
2319   EVT VT = SwitchOp.getValueType();
2320   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp,
2321                             DAG.getConstant(B.First, dl, VT));
2322 
2323   // Check range
2324   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2325   SDValue RangeCmp = DAG.getSetCC(
2326       dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
2327                                  Sub.getValueType()),
2328       Sub, DAG.getConstant(B.Range, dl, VT), ISD::SETUGT);
2329 
2330   // Determine the type of the test operands.
2331   bool UsePtrType = false;
2332   if (!TLI.isTypeLegal(VT))
2333     UsePtrType = true;
2334   else {
2335     for (unsigned i = 0, e = B.Cases.size(); i != e; ++i)
2336       if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) {
2337         // Switch table case range are encoded into series of masks.
2338         // Just use pointer type, it's guaranteed to fit.
2339         UsePtrType = true;
2340         break;
2341       }
2342   }
2343   if (UsePtrType) {
2344     VT = TLI.getPointerTy(DAG.getDataLayout());
2345     Sub = DAG.getZExtOrTrunc(Sub, dl, VT);
2346   }
2347 
2348   B.RegVT = VT.getSimpleVT();
2349   B.Reg = FuncInfo.CreateReg(B.RegVT);
2350   SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl, B.Reg, Sub);
2351 
2352   MachineBasicBlock* MBB = B.Cases[0].ThisBB;
2353 
2354   addSuccessorWithProb(SwitchBB, B.Default, B.DefaultProb);
2355   addSuccessorWithProb(SwitchBB, MBB, B.Prob);
2356   SwitchBB->normalizeSuccProbs();
2357 
2358   SDValue BrRange = DAG.getNode(ISD::BRCOND, dl,
2359                                 MVT::Other, CopyTo, RangeCmp,
2360                                 DAG.getBasicBlock(B.Default));
2361 
2362   // Avoid emitting unnecessary branches to the next block.
2363   if (MBB != NextBlock(SwitchBB))
2364     BrRange = DAG.getNode(ISD::BR, dl, MVT::Other, BrRange,
2365                           DAG.getBasicBlock(MBB));
2366 
2367   DAG.setRoot(BrRange);
2368 }
2369 
2370 /// visitBitTestCase - this function produces one "bit test"
2371 void SelectionDAGBuilder::visitBitTestCase(BitTestBlock &BB,
2372                                            MachineBasicBlock* NextMBB,
2373                                            BranchProbability BranchProbToNext,
2374                                            unsigned Reg,
2375                                            BitTestCase &B,
2376                                            MachineBasicBlock *SwitchBB) {
2377   SDLoc dl = getCurSDLoc();
2378   MVT VT = BB.RegVT;
2379   SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), dl, Reg, VT);
2380   SDValue Cmp;
2381   unsigned PopCount = countPopulation(B.Mask);
2382   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2383   if (PopCount == 1) {
2384     // Testing for a single bit; just compare the shift count with what it
2385     // would need to be to shift a 1 bit in that position.
2386     Cmp = DAG.getSetCC(
2387         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2388         ShiftOp, DAG.getConstant(countTrailingZeros(B.Mask), dl, VT),
2389         ISD::SETEQ);
2390   } else if (PopCount == BB.Range) {
2391     // There is only one zero bit in the range, test for it directly.
2392     Cmp = DAG.getSetCC(
2393         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2394         ShiftOp, DAG.getConstant(countTrailingOnes(B.Mask), dl, VT),
2395         ISD::SETNE);
2396   } else {
2397     // Make desired shift
2398     SDValue SwitchVal = DAG.getNode(ISD::SHL, dl, VT,
2399                                     DAG.getConstant(1, dl, VT), ShiftOp);
2400 
2401     // Emit bit tests and jumps
2402     SDValue AndOp = DAG.getNode(ISD::AND, dl,
2403                                 VT, SwitchVal, DAG.getConstant(B.Mask, dl, VT));
2404     Cmp = DAG.getSetCC(
2405         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2406         AndOp, DAG.getConstant(0, dl, VT), ISD::SETNE);
2407   }
2408 
2409   // The branch probability from SwitchBB to B.TargetBB is B.ExtraProb.
2410   addSuccessorWithProb(SwitchBB, B.TargetBB, B.ExtraProb);
2411   // The branch probability from SwitchBB to NextMBB is BranchProbToNext.
2412   addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext);
2413   // It is not guaranteed that the sum of B.ExtraProb and BranchProbToNext is
2414   // one as they are relative probabilities (and thus work more like weights),
2415   // and hence we need to normalize them to let the sum of them become one.
2416   SwitchBB->normalizeSuccProbs();
2417 
2418   SDValue BrAnd = DAG.getNode(ISD::BRCOND, dl,
2419                               MVT::Other, getControlRoot(),
2420                               Cmp, DAG.getBasicBlock(B.TargetBB));
2421 
2422   // Avoid emitting unnecessary branches to the next block.
2423   if (NextMBB != NextBlock(SwitchBB))
2424     BrAnd = DAG.getNode(ISD::BR, dl, MVT::Other, BrAnd,
2425                         DAG.getBasicBlock(NextMBB));
2426 
2427   DAG.setRoot(BrAnd);
2428 }
2429 
2430 void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) {
2431   MachineBasicBlock *InvokeMBB = FuncInfo.MBB;
2432 
2433   // Retrieve successors. Look through artificial IR level blocks like
2434   // catchswitch for successors.
2435   MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
2436   const BasicBlock *EHPadBB = I.getSuccessor(1);
2437 
2438   // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't
2439   // have to do anything here to lower funclet bundles.
2440   assert(!I.hasOperandBundlesOtherThan(
2441              {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) &&
2442          "Cannot lower invokes with arbitrary operand bundles yet!");
2443 
2444   const Value *Callee(I.getCalledValue());
2445   const Function *Fn = dyn_cast<Function>(Callee);
2446   if (isa<InlineAsm>(Callee))
2447     visitInlineAsm(&I);
2448   else if (Fn && Fn->isIntrinsic()) {
2449     switch (Fn->getIntrinsicID()) {
2450     default:
2451       llvm_unreachable("Cannot invoke this intrinsic");
2452     case Intrinsic::donothing:
2453       // Ignore invokes to @llvm.donothing: jump directly to the next BB.
2454       break;
2455     case Intrinsic::experimental_patchpoint_void:
2456     case Intrinsic::experimental_patchpoint_i64:
2457       visitPatchpoint(&I, EHPadBB);
2458       break;
2459     case Intrinsic::experimental_gc_statepoint:
2460       LowerStatepoint(ImmutableStatepoint(&I), EHPadBB);
2461       break;
2462     }
2463   } else if (I.countOperandBundlesOfType(LLVMContext::OB_deopt)) {
2464     // Currently we do not lower any intrinsic calls with deopt operand bundles.
2465     // Eventually we will support lowering the @llvm.experimental.deoptimize
2466     // intrinsic, and right now there are no plans to support other intrinsics
2467     // with deopt state.
2468     LowerCallSiteWithDeoptBundle(&I, getValue(Callee), EHPadBB);
2469   } else {
2470     LowerCallTo(&I, getValue(Callee), false, EHPadBB);
2471   }
2472 
2473   // If the value of the invoke is used outside of its defining block, make it
2474   // available as a virtual register.
2475   // We already took care of the exported value for the statepoint instruction
2476   // during call to the LowerStatepoint.
2477   if (!isStatepoint(I)) {
2478     CopyToExportRegsIfNeeded(&I);
2479   }
2480 
2481   SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests;
2482   BranchProbabilityInfo *BPI = FuncInfo.BPI;
2483   BranchProbability EHPadBBProb =
2484       BPI ? BPI->getEdgeProbability(InvokeMBB->getBasicBlock(), EHPadBB)
2485           : BranchProbability::getZero();
2486   findUnwindDestinations(FuncInfo, EHPadBB, EHPadBBProb, UnwindDests);
2487 
2488   // Update successor info.
2489   addSuccessorWithProb(InvokeMBB, Return);
2490   for (auto &UnwindDest : UnwindDests) {
2491     UnwindDest.first->setIsEHPad();
2492     addSuccessorWithProb(InvokeMBB, UnwindDest.first, UnwindDest.second);
2493   }
2494   InvokeMBB->normalizeSuccProbs();
2495 
2496   // Drop into normal successor.
2497   DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
2498                           MVT::Other, getControlRoot(),
2499                           DAG.getBasicBlock(Return)));
2500 }
2501 
2502 void SelectionDAGBuilder::visitResume(const ResumeInst &RI) {
2503   llvm_unreachable("SelectionDAGBuilder shouldn't visit resume instructions!");
2504 }
2505 
2506 void SelectionDAGBuilder::visitLandingPad(const LandingPadInst &LP) {
2507   assert(FuncInfo.MBB->isEHPad() &&
2508          "Call to landingpad not in landing pad!");
2509 
2510   MachineBasicBlock *MBB = FuncInfo.MBB;
2511   addLandingPadInfo(LP, *MBB);
2512 
2513   // If there aren't registers to copy the values into (e.g., during SjLj
2514   // exceptions), then don't bother to create these DAG nodes.
2515   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2516   const Constant *PersonalityFn = FuncInfo.Fn->getPersonalityFn();
2517   if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 &&
2518       TLI.getExceptionSelectorRegister(PersonalityFn) == 0)
2519     return;
2520 
2521   // If landingpad's return type is token type, we don't create DAG nodes
2522   // for its exception pointer and selector value. The extraction of exception
2523   // pointer or selector value from token type landingpads is not currently
2524   // supported.
2525   if (LP.getType()->isTokenTy())
2526     return;
2527 
2528   SmallVector<EVT, 2> ValueVTs;
2529   SDLoc dl = getCurSDLoc();
2530   ComputeValueVTs(TLI, DAG.getDataLayout(), LP.getType(), ValueVTs);
2531   assert(ValueVTs.size() == 2 && "Only two-valued landingpads are supported");
2532 
2533   // Get the two live-in registers as SDValues. The physregs have already been
2534   // copied into virtual registers.
2535   SDValue Ops[2];
2536   if (FuncInfo.ExceptionPointerVirtReg) {
2537     Ops[0] = DAG.getZExtOrTrunc(
2538         DAG.getCopyFromReg(DAG.getEntryNode(), dl,
2539                            FuncInfo.ExceptionPointerVirtReg,
2540                            TLI.getPointerTy(DAG.getDataLayout())),
2541         dl, ValueVTs[0]);
2542   } else {
2543     Ops[0] = DAG.getConstant(0, dl, TLI.getPointerTy(DAG.getDataLayout()));
2544   }
2545   Ops[1] = DAG.getZExtOrTrunc(
2546       DAG.getCopyFromReg(DAG.getEntryNode(), dl,
2547                          FuncInfo.ExceptionSelectorVirtReg,
2548                          TLI.getPointerTy(DAG.getDataLayout())),
2549       dl, ValueVTs[1]);
2550 
2551   // Merge into one.
2552   SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
2553                             DAG.getVTList(ValueVTs), Ops);
2554   setValue(&LP, Res);
2555 }
2556 
2557 void SelectionDAGBuilder::sortAndRangeify(CaseClusterVector &Clusters) {
2558 #ifndef NDEBUG
2559   for (const CaseCluster &CC : Clusters)
2560     assert(CC.Low == CC.High && "Input clusters must be single-case");
2561 #endif
2562 
2563   llvm::sort(Clusters.begin(), Clusters.end(),
2564              [](const CaseCluster &a, const CaseCluster &b) {
2565     return a.Low->getValue().slt(b.Low->getValue());
2566   });
2567 
2568   // Merge adjacent clusters with the same destination.
2569   const unsigned N = Clusters.size();
2570   unsigned DstIndex = 0;
2571   for (unsigned SrcIndex = 0; SrcIndex < N; ++SrcIndex) {
2572     CaseCluster &CC = Clusters[SrcIndex];
2573     const ConstantInt *CaseVal = CC.Low;
2574     MachineBasicBlock *Succ = CC.MBB;
2575 
2576     if (DstIndex != 0 && Clusters[DstIndex - 1].MBB == Succ &&
2577         (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) {
2578       // If this case has the same successor and is a neighbour, merge it into
2579       // the previous cluster.
2580       Clusters[DstIndex - 1].High = CaseVal;
2581       Clusters[DstIndex - 1].Prob += CC.Prob;
2582     } else {
2583       std::memmove(&Clusters[DstIndex++], &Clusters[SrcIndex],
2584                    sizeof(Clusters[SrcIndex]));
2585     }
2586   }
2587   Clusters.resize(DstIndex);
2588 }
2589 
2590 void SelectionDAGBuilder::UpdateSplitBlock(MachineBasicBlock *First,
2591                                            MachineBasicBlock *Last) {
2592   // Update JTCases.
2593   for (unsigned i = 0, e = JTCases.size(); i != e; ++i)
2594     if (JTCases[i].first.HeaderBB == First)
2595       JTCases[i].first.HeaderBB = Last;
2596 
2597   // Update BitTestCases.
2598   for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i)
2599     if (BitTestCases[i].Parent == First)
2600       BitTestCases[i].Parent = Last;
2601 }
2602 
2603 void SelectionDAGBuilder::visitIndirectBr(const IndirectBrInst &I) {
2604   MachineBasicBlock *IndirectBrMBB = FuncInfo.MBB;
2605 
2606   // Update machine-CFG edges with unique successors.
2607   SmallSet<BasicBlock*, 32> Done;
2608   for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i) {
2609     BasicBlock *BB = I.getSuccessor(i);
2610     bool Inserted = Done.insert(BB).second;
2611     if (!Inserted)
2612         continue;
2613 
2614     MachineBasicBlock *Succ = FuncInfo.MBBMap[BB];
2615     addSuccessorWithProb(IndirectBrMBB, Succ);
2616   }
2617   IndirectBrMBB->normalizeSuccProbs();
2618 
2619   DAG.setRoot(DAG.getNode(ISD::BRIND, getCurSDLoc(),
2620                           MVT::Other, getControlRoot(),
2621                           getValue(I.getAddress())));
2622 }
2623 
2624 void SelectionDAGBuilder::visitUnreachable(const UnreachableInst &I) {
2625   if (DAG.getTarget().Options.TrapUnreachable)
2626     DAG.setRoot(
2627         DAG.getNode(ISD::TRAP, getCurSDLoc(), MVT::Other, DAG.getRoot()));
2628 }
2629 
2630 void SelectionDAGBuilder::visitFSub(const User &I) {
2631   // -0.0 - X --> fneg
2632   Type *Ty = I.getType();
2633   if (isa<Constant>(I.getOperand(0)) &&
2634       I.getOperand(0) == ConstantFP::getZeroValueForNegation(Ty)) {
2635     SDValue Op2 = getValue(I.getOperand(1));
2636     setValue(&I, DAG.getNode(ISD::FNEG, getCurSDLoc(),
2637                              Op2.getValueType(), Op2));
2638     return;
2639   }
2640 
2641   visitBinary(I, ISD::FSUB);
2642 }
2643 
2644 /// Checks if the given instruction performs a vector reduction, in which case
2645 /// we have the freedom to alter the elements in the result as long as the
2646 /// reduction of them stays unchanged.
2647 static bool isVectorReductionOp(const User *I) {
2648   const Instruction *Inst = dyn_cast<Instruction>(I);
2649   if (!Inst || !Inst->getType()->isVectorTy())
2650     return false;
2651 
2652   auto OpCode = Inst->getOpcode();
2653   switch (OpCode) {
2654   case Instruction::Add:
2655   case Instruction::Mul:
2656   case Instruction::And:
2657   case Instruction::Or:
2658   case Instruction::Xor:
2659     break;
2660   case Instruction::FAdd:
2661   case Instruction::FMul:
2662     if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst))
2663       if (FPOp->getFastMathFlags().isFast())
2664         break;
2665     LLVM_FALLTHROUGH;
2666   default:
2667     return false;
2668   }
2669 
2670   unsigned ElemNum = Inst->getType()->getVectorNumElements();
2671   unsigned ElemNumToReduce = ElemNum;
2672 
2673   // Do DFS search on the def-use chain from the given instruction. We only
2674   // allow four kinds of operations during the search until we reach the
2675   // instruction that extracts the first element from the vector:
2676   //
2677   //   1. The reduction operation of the same opcode as the given instruction.
2678   //
2679   //   2. PHI node.
2680   //
2681   //   3. ShuffleVector instruction together with a reduction operation that
2682   //      does a partial reduction.
2683   //
2684   //   4. ExtractElement that extracts the first element from the vector, and we
2685   //      stop searching the def-use chain here.
2686   //
2687   // 3 & 4 above perform a reduction on all elements of the vector. We push defs
2688   // from 1-3 to the stack to continue the DFS. The given instruction is not
2689   // a reduction operation if we meet any other instructions other than those
2690   // listed above.
2691 
2692   SmallVector<const User *, 16> UsersToVisit{Inst};
2693   SmallPtrSet<const User *, 16> Visited;
2694   bool ReduxExtracted = false;
2695 
2696   while (!UsersToVisit.empty()) {
2697     auto User = UsersToVisit.back();
2698     UsersToVisit.pop_back();
2699     if (!Visited.insert(User).second)
2700       continue;
2701 
2702     for (const auto &U : User->users()) {
2703       auto Inst = dyn_cast<Instruction>(U);
2704       if (!Inst)
2705         return false;
2706 
2707       if (Inst->getOpcode() == OpCode || isa<PHINode>(U)) {
2708         if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst))
2709           if (!isa<PHINode>(FPOp) && !FPOp->getFastMathFlags().isFast())
2710             return false;
2711         UsersToVisit.push_back(U);
2712       } else if (const ShuffleVectorInst *ShufInst =
2713                      dyn_cast<ShuffleVectorInst>(U)) {
2714         // Detect the following pattern: A ShuffleVector instruction together
2715         // with a reduction that do partial reduction on the first and second
2716         // ElemNumToReduce / 2 elements, and store the result in
2717         // ElemNumToReduce / 2 elements in another vector.
2718 
2719         unsigned ResultElements = ShufInst->getType()->getVectorNumElements();
2720         if (ResultElements < ElemNum)
2721           return false;
2722 
2723         if (ElemNumToReduce == 1)
2724           return false;
2725         if (!isa<UndefValue>(U->getOperand(1)))
2726           return false;
2727         for (unsigned i = 0; i < ElemNumToReduce / 2; ++i)
2728           if (ShufInst->getMaskValue(i) != int(i + ElemNumToReduce / 2))
2729             return false;
2730         for (unsigned i = ElemNumToReduce / 2; i < ElemNum; ++i)
2731           if (ShufInst->getMaskValue(i) != -1)
2732             return false;
2733 
2734         // There is only one user of this ShuffleVector instruction, which
2735         // must be a reduction operation.
2736         if (!U->hasOneUse())
2737           return false;
2738 
2739         auto U2 = dyn_cast<Instruction>(*U->user_begin());
2740         if (!U2 || U2->getOpcode() != OpCode)
2741           return false;
2742 
2743         // Check operands of the reduction operation.
2744         if ((U2->getOperand(0) == U->getOperand(0) && U2->getOperand(1) == U) ||
2745             (U2->getOperand(1) == U->getOperand(0) && U2->getOperand(0) == U)) {
2746           UsersToVisit.push_back(U2);
2747           ElemNumToReduce /= 2;
2748         } else
2749           return false;
2750       } else if (isa<ExtractElementInst>(U)) {
2751         // At this moment we should have reduced all elements in the vector.
2752         if (ElemNumToReduce != 1)
2753           return false;
2754 
2755         const ConstantInt *Val = dyn_cast<ConstantInt>(U->getOperand(1));
2756         if (!Val || Val->getZExtValue() != 0)
2757           return false;
2758 
2759         ReduxExtracted = true;
2760       } else
2761         return false;
2762     }
2763   }
2764   return ReduxExtracted;
2765 }
2766 
2767 void SelectionDAGBuilder::visitBinary(const User &I, unsigned Opcode) {
2768   SDNodeFlags Flags;
2769   if (auto *OFBinOp = dyn_cast<OverflowingBinaryOperator>(&I)) {
2770     Flags.setNoSignedWrap(OFBinOp->hasNoSignedWrap());
2771     Flags.setNoUnsignedWrap(OFBinOp->hasNoUnsignedWrap());
2772   }
2773   if (auto *ExactOp = dyn_cast<PossiblyExactOperator>(&I)) {
2774     Flags.setExact(ExactOp->isExact());
2775   }
2776   if (isVectorReductionOp(&I)) {
2777     Flags.setVectorReduction(true);
2778     LLVM_DEBUG(dbgs() << "Detected a reduction operation:" << I << "\n");
2779   }
2780 
2781   SDValue Op1 = getValue(I.getOperand(0));
2782   SDValue Op2 = getValue(I.getOperand(1));
2783   SDValue BinNodeValue = DAG.getNode(Opcode, getCurSDLoc(), Op1.getValueType(),
2784                                      Op1, Op2, Flags);
2785   setValue(&I, BinNodeValue);
2786 }
2787 
2788 void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) {
2789   SDValue Op1 = getValue(I.getOperand(0));
2790   SDValue Op2 = getValue(I.getOperand(1));
2791 
2792   EVT ShiftTy = DAG.getTargetLoweringInfo().getShiftAmountTy(
2793       Op2.getValueType(), DAG.getDataLayout());
2794 
2795   // Coerce the shift amount to the right type if we can.
2796   if (!I.getType()->isVectorTy() && Op2.getValueType() != ShiftTy) {
2797     unsigned ShiftSize = ShiftTy.getSizeInBits();
2798     unsigned Op2Size = Op2.getValueSizeInBits();
2799     SDLoc DL = getCurSDLoc();
2800 
2801     // If the operand is smaller than the shift count type, promote it.
2802     if (ShiftSize > Op2Size)
2803       Op2 = DAG.getNode(ISD::ZERO_EXTEND, DL, ShiftTy, Op2);
2804 
2805     // If the operand is larger than the shift count type but the shift
2806     // count type has enough bits to represent any shift value, truncate
2807     // it now. This is a common case and it exposes the truncate to
2808     // optimization early.
2809     else if (ShiftSize >= Log2_32_Ceil(Op2.getValueSizeInBits()))
2810       Op2 = DAG.getNode(ISD::TRUNCATE, DL, ShiftTy, Op2);
2811     // Otherwise we'll need to temporarily settle for some other convenient
2812     // type.  Type legalization will make adjustments once the shiftee is split.
2813     else
2814       Op2 = DAG.getZExtOrTrunc(Op2, DL, MVT::i32);
2815   }
2816 
2817   bool nuw = false;
2818   bool nsw = false;
2819   bool exact = false;
2820 
2821   if (Opcode == ISD::SRL || Opcode == ISD::SRA || Opcode == ISD::SHL) {
2822 
2823     if (const OverflowingBinaryOperator *OFBinOp =
2824             dyn_cast<const OverflowingBinaryOperator>(&I)) {
2825       nuw = OFBinOp->hasNoUnsignedWrap();
2826       nsw = OFBinOp->hasNoSignedWrap();
2827     }
2828     if (const PossiblyExactOperator *ExactOp =
2829             dyn_cast<const PossiblyExactOperator>(&I))
2830       exact = ExactOp->isExact();
2831   }
2832   SDNodeFlags Flags;
2833   Flags.setExact(exact);
2834   Flags.setNoSignedWrap(nsw);
2835   Flags.setNoUnsignedWrap(nuw);
2836   SDValue Res = DAG.getNode(Opcode, getCurSDLoc(), Op1.getValueType(), Op1, Op2,
2837                             Flags);
2838   setValue(&I, Res);
2839 }
2840 
2841 void SelectionDAGBuilder::visitSDiv(const User &I) {
2842   SDValue Op1 = getValue(I.getOperand(0));
2843   SDValue Op2 = getValue(I.getOperand(1));
2844 
2845   SDNodeFlags Flags;
2846   Flags.setExact(isa<PossiblyExactOperator>(&I) &&
2847                  cast<PossiblyExactOperator>(&I)->isExact());
2848   setValue(&I, DAG.getNode(ISD::SDIV, getCurSDLoc(), Op1.getValueType(), Op1,
2849                            Op2, Flags));
2850 }
2851 
2852 void SelectionDAGBuilder::visitICmp(const User &I) {
2853   ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2854   if (const ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2855     predicate = IC->getPredicate();
2856   else if (const ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2857     predicate = ICmpInst::Predicate(IC->getPredicate());
2858   SDValue Op1 = getValue(I.getOperand(0));
2859   SDValue Op2 = getValue(I.getOperand(1));
2860   ISD::CondCode Opcode = getICmpCondCode(predicate);
2861 
2862   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2863                                                         I.getType());
2864   setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Opcode));
2865 }
2866 
2867 void SelectionDAGBuilder::visitFCmp(const User &I) {
2868   FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2869   if (const FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2870     predicate = FC->getPredicate();
2871   else if (const ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2872     predicate = FCmpInst::Predicate(FC->getPredicate());
2873   SDValue Op1 = getValue(I.getOperand(0));
2874   SDValue Op2 = getValue(I.getOperand(1));
2875 
2876   ISD::CondCode Condition = getFCmpCondCode(predicate);
2877   auto *FPMO = dyn_cast<FPMathOperator>(&I);
2878   if ((FPMO && FPMO->hasNoNaNs()) || TM.Options.NoNaNsFPMath)
2879     Condition = getFCmpCodeWithoutNaN(Condition);
2880 
2881   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2882                                                         I.getType());
2883   setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Condition));
2884 }
2885 
2886 // Check if the condition of the select has one use or two users that are both
2887 // selects with the same condition.
2888 static bool hasOnlySelectUsers(const Value *Cond) {
2889   return llvm::all_of(Cond->users(), [](const Value *V) {
2890     return isa<SelectInst>(V);
2891   });
2892 }
2893 
2894 void SelectionDAGBuilder::visitSelect(const User &I) {
2895   SmallVector<EVT, 4> ValueVTs;
2896   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), I.getType(),
2897                   ValueVTs);
2898   unsigned NumValues = ValueVTs.size();
2899   if (NumValues == 0) return;
2900 
2901   SmallVector<SDValue, 4> Values(NumValues);
2902   SDValue Cond     = getValue(I.getOperand(0));
2903   SDValue LHSVal   = getValue(I.getOperand(1));
2904   SDValue RHSVal   = getValue(I.getOperand(2));
2905   auto BaseOps = {Cond};
2906   ISD::NodeType OpCode = Cond.getValueType().isVector() ?
2907     ISD::VSELECT : ISD::SELECT;
2908 
2909   // Min/max matching is only viable if all output VTs are the same.
2910   if (std::equal(ValueVTs.begin(), ValueVTs.end(), ValueVTs.begin())) {
2911     EVT VT = ValueVTs[0];
2912     LLVMContext &Ctx = *DAG.getContext();
2913     auto &TLI = DAG.getTargetLoweringInfo();
2914 
2915     // We care about the legality of the operation after it has been type
2916     // legalized.
2917     while (TLI.getTypeAction(Ctx, VT) != TargetLoweringBase::TypeLegal &&
2918            VT != TLI.getTypeToTransformTo(Ctx, VT))
2919       VT = TLI.getTypeToTransformTo(Ctx, VT);
2920 
2921     // If the vselect is legal, assume we want to leave this as a vector setcc +
2922     // vselect. Otherwise, if this is going to be scalarized, we want to see if
2923     // min/max is legal on the scalar type.
2924     bool UseScalarMinMax = VT.isVector() &&
2925       !TLI.isOperationLegalOrCustom(ISD::VSELECT, VT);
2926 
2927     Value *LHS, *RHS;
2928     auto SPR = matchSelectPattern(const_cast<User*>(&I), LHS, RHS);
2929     ISD::NodeType Opc = ISD::DELETED_NODE;
2930     switch (SPR.Flavor) {
2931     case SPF_UMAX:    Opc = ISD::UMAX; break;
2932     case SPF_UMIN:    Opc = ISD::UMIN; break;
2933     case SPF_SMAX:    Opc = ISD::SMAX; break;
2934     case SPF_SMIN:    Opc = ISD::SMIN; break;
2935     case SPF_FMINNUM:
2936       switch (SPR.NaNBehavior) {
2937       case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?");
2938       case SPNB_RETURNS_NAN:   Opc = ISD::FMINNAN; break;
2939       case SPNB_RETURNS_OTHER: Opc = ISD::FMINNUM; break;
2940       case SPNB_RETURNS_ANY: {
2941         if (TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT))
2942           Opc = ISD::FMINNUM;
2943         else if (TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT))
2944           Opc = ISD::FMINNAN;
2945         else if (UseScalarMinMax)
2946           Opc = TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT.getScalarType()) ?
2947             ISD::FMINNUM : ISD::FMINNAN;
2948         break;
2949       }
2950       }
2951       break;
2952     case SPF_FMAXNUM:
2953       switch (SPR.NaNBehavior) {
2954       case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?");
2955       case SPNB_RETURNS_NAN:   Opc = ISD::FMAXNAN; break;
2956       case SPNB_RETURNS_OTHER: Opc = ISD::FMAXNUM; break;
2957       case SPNB_RETURNS_ANY:
2958 
2959         if (TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT))
2960           Opc = ISD::FMAXNUM;
2961         else if (TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT))
2962           Opc = ISD::FMAXNAN;
2963         else if (UseScalarMinMax)
2964           Opc = TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT.getScalarType()) ?
2965             ISD::FMAXNUM : ISD::FMAXNAN;
2966         break;
2967       }
2968       break;
2969     default: break;
2970     }
2971 
2972     if (Opc != ISD::DELETED_NODE &&
2973         (TLI.isOperationLegalOrCustom(Opc, VT) ||
2974          (UseScalarMinMax &&
2975           TLI.isOperationLegalOrCustom(Opc, VT.getScalarType()))) &&
2976         // If the underlying comparison instruction is used by any other
2977         // instruction, the consumed instructions won't be destroyed, so it is
2978         // not profitable to convert to a min/max.
2979         hasOnlySelectUsers(cast<SelectInst>(I).getCondition())) {
2980       OpCode = Opc;
2981       LHSVal = getValue(LHS);
2982       RHSVal = getValue(RHS);
2983       BaseOps = {};
2984     }
2985   }
2986 
2987   for (unsigned i = 0; i != NumValues; ++i) {
2988     SmallVector<SDValue, 3> Ops(BaseOps.begin(), BaseOps.end());
2989     Ops.push_back(SDValue(LHSVal.getNode(), LHSVal.getResNo() + i));
2990     Ops.push_back(SDValue(RHSVal.getNode(), RHSVal.getResNo() + i));
2991     Values[i] = DAG.getNode(OpCode, getCurSDLoc(),
2992                             LHSVal.getNode()->getValueType(LHSVal.getResNo()+i),
2993                             Ops);
2994   }
2995 
2996   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
2997                            DAG.getVTList(ValueVTs), Values));
2998 }
2999 
3000 void SelectionDAGBuilder::visitTrunc(const User &I) {
3001   // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
3002   SDValue N = getValue(I.getOperand(0));
3003   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3004                                                         I.getType());
3005   setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), DestVT, N));
3006 }
3007 
3008 void SelectionDAGBuilder::visitZExt(const User &I) {
3009   // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
3010   // ZExt also can't be a cast to bool for same reason. So, nothing much to do
3011   SDValue N = getValue(I.getOperand(0));
3012   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3013                                                         I.getType());
3014   setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurSDLoc(), DestVT, N));
3015 }
3016 
3017 void SelectionDAGBuilder::visitSExt(const User &I) {
3018   // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
3019   // SExt also can't be a cast to bool for same reason. So, nothing much to do
3020   SDValue N = getValue(I.getOperand(0));
3021   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3022                                                         I.getType());
3023   setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurSDLoc(), DestVT, N));
3024 }
3025 
3026 void SelectionDAGBuilder::visitFPTrunc(const User &I) {
3027   // FPTrunc is never a no-op cast, no need to check
3028   SDValue N = getValue(I.getOperand(0));
3029   SDLoc dl = getCurSDLoc();
3030   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3031   EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3032   setValue(&I, DAG.getNode(ISD::FP_ROUND, dl, DestVT, N,
3033                            DAG.getTargetConstant(
3034                                0, dl, TLI.getPointerTy(DAG.getDataLayout()))));
3035 }
3036 
3037 void SelectionDAGBuilder::visitFPExt(const User &I) {
3038   // FPExt is never a no-op cast, no need to check
3039   SDValue N = getValue(I.getOperand(0));
3040   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3041                                                         I.getType());
3042   setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurSDLoc(), DestVT, N));
3043 }
3044 
3045 void SelectionDAGBuilder::visitFPToUI(const User &I) {
3046   // FPToUI is never a no-op cast, no need to check
3047   SDValue N = getValue(I.getOperand(0));
3048   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3049                                                         I.getType());
3050   setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurSDLoc(), DestVT, N));
3051 }
3052 
3053 void SelectionDAGBuilder::visitFPToSI(const User &I) {
3054   // FPToSI is never a no-op cast, no need to check
3055   SDValue N = getValue(I.getOperand(0));
3056   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3057                                                         I.getType());
3058   setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurSDLoc(), DestVT, N));
3059 }
3060 
3061 void SelectionDAGBuilder::visitUIToFP(const User &I) {
3062   // UIToFP is never a no-op cast, no need to check
3063   SDValue N = getValue(I.getOperand(0));
3064   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3065                                                         I.getType());
3066   setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurSDLoc(), DestVT, N));
3067 }
3068 
3069 void SelectionDAGBuilder::visitSIToFP(const User &I) {
3070   // SIToFP is never a no-op cast, no need to check
3071   SDValue N = getValue(I.getOperand(0));
3072   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3073                                                         I.getType());
3074   setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurSDLoc(), DestVT, N));
3075 }
3076 
3077 void SelectionDAGBuilder::visitPtrToInt(const User &I) {
3078   // What to do depends on the size of the integer and the size of the pointer.
3079   // We can either truncate, zero extend, or no-op, accordingly.
3080   SDValue N = getValue(I.getOperand(0));
3081   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3082                                                         I.getType());
3083   setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
3084 }
3085 
3086 void SelectionDAGBuilder::visitIntToPtr(const User &I) {
3087   // What to do depends on the size of the integer and the size of the pointer.
3088   // We can either truncate, zero extend, or no-op, accordingly.
3089   SDValue N = getValue(I.getOperand(0));
3090   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3091                                                         I.getType());
3092   setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
3093 }
3094 
3095 void SelectionDAGBuilder::visitBitCast(const User &I) {
3096   SDValue N = getValue(I.getOperand(0));
3097   SDLoc dl = getCurSDLoc();
3098   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
3099                                                         I.getType());
3100 
3101   // BitCast assures us that source and destination are the same size so this is
3102   // either a BITCAST or a no-op.
3103   if (DestVT != N.getValueType())
3104     setValue(&I, DAG.getNode(ISD::BITCAST, dl,
3105                              DestVT, N)); // convert types.
3106   // Check if the original LLVM IR Operand was a ConstantInt, because getValue()
3107   // might fold any kind of constant expression to an integer constant and that
3108   // is not what we are looking for. Only recognize a bitcast of a genuine
3109   // constant integer as an opaque constant.
3110   else if(ConstantInt *C = dyn_cast<ConstantInt>(I.getOperand(0)))
3111     setValue(&I, DAG.getConstant(C->getValue(), dl, DestVT, /*isTarget=*/false,
3112                                  /*isOpaque*/true));
3113   else
3114     setValue(&I, N);            // noop cast.
3115 }
3116 
3117 void SelectionDAGBuilder::visitAddrSpaceCast(const User &I) {
3118   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3119   const Value *SV = I.getOperand(0);
3120   SDValue N = getValue(SV);
3121   EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3122 
3123   unsigned SrcAS = SV->getType()->getPointerAddressSpace();
3124   unsigned DestAS = I.getType()->getPointerAddressSpace();
3125 
3126   if (!TLI.isNoopAddrSpaceCast(SrcAS, DestAS))
3127     N = DAG.getAddrSpaceCast(getCurSDLoc(), DestVT, N, SrcAS, DestAS);
3128 
3129   setValue(&I, N);
3130 }
3131 
3132 void SelectionDAGBuilder::visitInsertElement(const User &I) {
3133   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3134   SDValue InVec = getValue(I.getOperand(0));
3135   SDValue InVal = getValue(I.getOperand(1));
3136   SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(2)), getCurSDLoc(),
3137                                      TLI.getVectorIdxTy(DAG.getDataLayout()));
3138   setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurSDLoc(),
3139                            TLI.getValueType(DAG.getDataLayout(), I.getType()),
3140                            InVec, InVal, InIdx));
3141 }
3142 
3143 void SelectionDAGBuilder::visitExtractElement(const User &I) {
3144   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3145   SDValue InVec = getValue(I.getOperand(0));
3146   SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), getCurSDLoc(),
3147                                      TLI.getVectorIdxTy(DAG.getDataLayout()));
3148   setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurSDLoc(),
3149                            TLI.getValueType(DAG.getDataLayout(), I.getType()),
3150                            InVec, InIdx));
3151 }
3152 
3153 void SelectionDAGBuilder::visitShuffleVector(const User &I) {
3154   SDValue Src1 = getValue(I.getOperand(0));
3155   SDValue Src2 = getValue(I.getOperand(1));
3156   SDLoc DL = getCurSDLoc();
3157 
3158   SmallVector<int, 8> Mask;
3159   ShuffleVectorInst::getShuffleMask(cast<Constant>(I.getOperand(2)), Mask);
3160   unsigned MaskNumElts = Mask.size();
3161 
3162   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3163   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3164   EVT SrcVT = Src1.getValueType();
3165   unsigned SrcNumElts = SrcVT.getVectorNumElements();
3166 
3167   if (SrcNumElts == MaskNumElts) {
3168     setValue(&I, DAG.getVectorShuffle(VT, DL, Src1, Src2, Mask));
3169     return;
3170   }
3171 
3172   // Normalize the shuffle vector since mask and vector length don't match.
3173   if (SrcNumElts < MaskNumElts) {
3174     // Mask is longer than the source vectors. We can use concatenate vector to
3175     // make the mask and vectors lengths match.
3176 
3177     if (MaskNumElts % SrcNumElts == 0) {
3178       // Mask length is a multiple of the source vector length.
3179       // Check if the shuffle is some kind of concatenation of the input
3180       // vectors.
3181       unsigned NumConcat = MaskNumElts / SrcNumElts;
3182       bool IsConcat = true;
3183       SmallVector<int, 8> ConcatSrcs(NumConcat, -1);
3184       for (unsigned i = 0; i != MaskNumElts; ++i) {
3185         int Idx = Mask[i];
3186         if (Idx < 0)
3187           continue;
3188         // Ensure the indices in each SrcVT sized piece are sequential and that
3189         // the same source is used for the whole piece.
3190         if ((Idx % SrcNumElts != (i % SrcNumElts)) ||
3191             (ConcatSrcs[i / SrcNumElts] >= 0 &&
3192              ConcatSrcs[i / SrcNumElts] != (int)(Idx / SrcNumElts))) {
3193           IsConcat = false;
3194           break;
3195         }
3196         // Remember which source this index came from.
3197         ConcatSrcs[i / SrcNumElts] = Idx / SrcNumElts;
3198       }
3199 
3200       // The shuffle is concatenating multiple vectors together. Just emit
3201       // a CONCAT_VECTORS operation.
3202       if (IsConcat) {
3203         SmallVector<SDValue, 8> ConcatOps;
3204         for (auto Src : ConcatSrcs) {
3205           if (Src < 0)
3206             ConcatOps.push_back(DAG.getUNDEF(SrcVT));
3207           else if (Src == 0)
3208             ConcatOps.push_back(Src1);
3209           else
3210             ConcatOps.push_back(Src2);
3211         }
3212         setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, ConcatOps));
3213         return;
3214       }
3215     }
3216 
3217     unsigned PaddedMaskNumElts = alignTo(MaskNumElts, SrcNumElts);
3218     unsigned NumConcat = PaddedMaskNumElts / SrcNumElts;
3219     EVT PaddedVT = EVT::getVectorVT(*DAG.getContext(), VT.getScalarType(),
3220                                     PaddedMaskNumElts);
3221 
3222     // Pad both vectors with undefs to make them the same length as the mask.
3223     SDValue UndefVal = DAG.getUNDEF(SrcVT);
3224 
3225     SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
3226     SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
3227     MOps1[0] = Src1;
3228     MOps2[0] = Src2;
3229 
3230     Src1 = Src1.isUndef()
3231                ? DAG.getUNDEF(PaddedVT)
3232                : DAG.getNode(ISD::CONCAT_VECTORS, DL, PaddedVT, MOps1);
3233     Src2 = Src2.isUndef()
3234                ? DAG.getUNDEF(PaddedVT)
3235                : DAG.getNode(ISD::CONCAT_VECTORS, DL, PaddedVT, MOps2);
3236 
3237     // Readjust mask for new input vector length.
3238     SmallVector<int, 8> MappedOps(PaddedMaskNumElts, -1);
3239     for (unsigned i = 0; i != MaskNumElts; ++i) {
3240       int Idx = Mask[i];
3241       if (Idx >= (int)SrcNumElts)
3242         Idx -= SrcNumElts - PaddedMaskNumElts;
3243       MappedOps[i] = Idx;
3244     }
3245 
3246     SDValue Result = DAG.getVectorShuffle(PaddedVT, DL, Src1, Src2, MappedOps);
3247 
3248     // If the concatenated vector was padded, extract a subvector with the
3249     // correct number of elements.
3250     if (MaskNumElts != PaddedMaskNumElts)
3251       Result = DAG.getNode(
3252           ISD::EXTRACT_SUBVECTOR, DL, VT, Result,
3253           DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
3254 
3255     setValue(&I, Result);
3256     return;
3257   }
3258 
3259   if (SrcNumElts > MaskNumElts) {
3260     // Analyze the access pattern of the vector to see if we can extract
3261     // two subvectors and do the shuffle.
3262     int StartIdx[2] = { -1, -1 };  // StartIdx to extract from
3263     bool CanExtract = true;
3264     for (int Idx : Mask) {
3265       unsigned Input = 0;
3266       if (Idx < 0)
3267         continue;
3268 
3269       if (Idx >= (int)SrcNumElts) {
3270         Input = 1;
3271         Idx -= SrcNumElts;
3272       }
3273 
3274       // If all the indices come from the same MaskNumElts sized portion of
3275       // the sources we can use extract. Also make sure the extract wouldn't
3276       // extract past the end of the source.
3277       int NewStartIdx = alignDown(Idx, MaskNumElts);
3278       if (NewStartIdx + MaskNumElts > SrcNumElts ||
3279           (StartIdx[Input] >= 0 && StartIdx[Input] != NewStartIdx))
3280         CanExtract = false;
3281       // Make sure we always update StartIdx as we use it to track if all
3282       // elements are undef.
3283       StartIdx[Input] = NewStartIdx;
3284     }
3285 
3286     if (StartIdx[0] < 0 && StartIdx[1] < 0) {
3287       setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
3288       return;
3289     }
3290     if (CanExtract) {
3291       // Extract appropriate subvector and generate a vector shuffle
3292       for (unsigned Input = 0; Input < 2; ++Input) {
3293         SDValue &Src = Input == 0 ? Src1 : Src2;
3294         if (StartIdx[Input] < 0)
3295           Src = DAG.getUNDEF(VT);
3296         else {
3297           Src = DAG.getNode(
3298               ISD::EXTRACT_SUBVECTOR, DL, VT, Src,
3299               DAG.getConstant(StartIdx[Input], DL,
3300                               TLI.getVectorIdxTy(DAG.getDataLayout())));
3301         }
3302       }
3303 
3304       // Calculate new mask.
3305       SmallVector<int, 8> MappedOps(Mask.begin(), Mask.end());
3306       for (int &Idx : MappedOps) {
3307         if (Idx >= (int)SrcNumElts)
3308           Idx -= SrcNumElts + StartIdx[1] - MaskNumElts;
3309         else if (Idx >= 0)
3310           Idx -= StartIdx[0];
3311       }
3312 
3313       setValue(&I, DAG.getVectorShuffle(VT, DL, Src1, Src2, MappedOps));
3314       return;
3315     }
3316   }
3317 
3318   // We can't use either concat vectors or extract subvectors so fall back to
3319   // replacing the shuffle with extract and build vector.
3320   // to insert and build vector.
3321   EVT EltVT = VT.getVectorElementType();
3322   EVT IdxVT = TLI.getVectorIdxTy(DAG.getDataLayout());
3323   SmallVector<SDValue,8> Ops;
3324   for (int Idx : Mask) {
3325     SDValue Res;
3326 
3327     if (Idx < 0) {
3328       Res = DAG.getUNDEF(EltVT);
3329     } else {
3330       SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2;
3331       if (Idx >= (int)SrcNumElts) Idx -= SrcNumElts;
3332 
3333       Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
3334                         EltVT, Src, DAG.getConstant(Idx, DL, IdxVT));
3335     }
3336 
3337     Ops.push_back(Res);
3338   }
3339 
3340   setValue(&I, DAG.getBuildVector(VT, DL, Ops));
3341 }
3342 
3343 void SelectionDAGBuilder::visitInsertValue(const User &I) {
3344   ArrayRef<unsigned> Indices;
3345   if (const InsertValueInst *IV = dyn_cast<InsertValueInst>(&I))
3346     Indices = IV->getIndices();
3347   else
3348     Indices = cast<ConstantExpr>(&I)->getIndices();
3349 
3350   const Value *Op0 = I.getOperand(0);
3351   const Value *Op1 = I.getOperand(1);
3352   Type *AggTy = I.getType();
3353   Type *ValTy = Op1->getType();
3354   bool IntoUndef = isa<UndefValue>(Op0);
3355   bool FromUndef = isa<UndefValue>(Op1);
3356 
3357   unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
3358 
3359   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3360   SmallVector<EVT, 4> AggValueVTs;
3361   ComputeValueVTs(TLI, DAG.getDataLayout(), AggTy, AggValueVTs);
3362   SmallVector<EVT, 4> ValValueVTs;
3363   ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs);
3364 
3365   unsigned NumAggValues = AggValueVTs.size();
3366   unsigned NumValValues = ValValueVTs.size();
3367   SmallVector<SDValue, 4> Values(NumAggValues);
3368 
3369   // Ignore an insertvalue that produces an empty object
3370   if (!NumAggValues) {
3371     setValue(&I, DAG.getUNDEF(MVT(MVT::Other)));
3372     return;
3373   }
3374 
3375   SDValue Agg = getValue(Op0);
3376   unsigned i = 0;
3377   // Copy the beginning value(s) from the original aggregate.
3378   for (; i != LinearIndex; ++i)
3379     Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3380                 SDValue(Agg.getNode(), Agg.getResNo() + i);
3381   // Copy values from the inserted value(s).
3382   if (NumValValues) {
3383     SDValue Val = getValue(Op1);
3384     for (; i != LinearIndex + NumValValues; ++i)
3385       Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3386                   SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
3387   }
3388   // Copy remaining value(s) from the original aggregate.
3389   for (; i != NumAggValues; ++i)
3390     Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3391                 SDValue(Agg.getNode(), Agg.getResNo() + i);
3392 
3393   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
3394                            DAG.getVTList(AggValueVTs), Values));
3395 }
3396 
3397 void SelectionDAGBuilder::visitExtractValue(const User &I) {
3398   ArrayRef<unsigned> Indices;
3399   if (const ExtractValueInst *EV = dyn_cast<ExtractValueInst>(&I))
3400     Indices = EV->getIndices();
3401   else
3402     Indices = cast<ConstantExpr>(&I)->getIndices();
3403 
3404   const Value *Op0 = I.getOperand(0);
3405   Type *AggTy = Op0->getType();
3406   Type *ValTy = I.getType();
3407   bool OutOfUndef = isa<UndefValue>(Op0);
3408 
3409   unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
3410 
3411   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3412   SmallVector<EVT, 4> ValValueVTs;
3413   ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs);
3414 
3415   unsigned NumValValues = ValValueVTs.size();
3416 
3417   // Ignore a extractvalue that produces an empty object
3418   if (!NumValValues) {
3419     setValue(&I, DAG.getUNDEF(MVT(MVT::Other)));
3420     return;
3421   }
3422 
3423   SmallVector<SDValue, 4> Values(NumValValues);
3424 
3425   SDValue Agg = getValue(Op0);
3426   // Copy out the selected value(s).
3427   for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
3428     Values[i - LinearIndex] =
3429       OutOfUndef ?
3430         DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
3431         SDValue(Agg.getNode(), Agg.getResNo() + i);
3432 
3433   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
3434                            DAG.getVTList(ValValueVTs), Values));
3435 }
3436 
3437 void SelectionDAGBuilder::visitGetElementPtr(const User &I) {
3438   Value *Op0 = I.getOperand(0);
3439   // Note that the pointer operand may be a vector of pointers. Take the scalar
3440   // element which holds a pointer.
3441   unsigned AS = Op0->getType()->getScalarType()->getPointerAddressSpace();
3442   SDValue N = getValue(Op0);
3443   SDLoc dl = getCurSDLoc();
3444 
3445   // Normalize Vector GEP - all scalar operands should be converted to the
3446   // splat vector.
3447   unsigned VectorWidth = I.getType()->isVectorTy() ?
3448     cast<VectorType>(I.getType())->getVectorNumElements() : 0;
3449 
3450   if (VectorWidth && !N.getValueType().isVector()) {
3451     LLVMContext &Context = *DAG.getContext();
3452     EVT VT = EVT::getVectorVT(Context, N.getValueType(), VectorWidth);
3453     N = DAG.getSplatBuildVector(VT, dl, N);
3454   }
3455 
3456   for (gep_type_iterator GTI = gep_type_begin(&I), E = gep_type_end(&I);
3457        GTI != E; ++GTI) {
3458     const Value *Idx = GTI.getOperand();
3459     if (StructType *StTy = GTI.getStructTypeOrNull()) {
3460       unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
3461       if (Field) {
3462         // N = N + Offset
3463         uint64_t Offset = DL->getStructLayout(StTy)->getElementOffset(Field);
3464 
3465         // In an inbounds GEP with an offset that is nonnegative even when
3466         // interpreted as signed, assume there is no unsigned overflow.
3467         SDNodeFlags Flags;
3468         if (int64_t(Offset) >= 0 && cast<GEPOperator>(I).isInBounds())
3469           Flags.setNoUnsignedWrap(true);
3470 
3471         N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N,
3472                         DAG.getConstant(Offset, dl, N.getValueType()), Flags);
3473       }
3474     } else {
3475       unsigned IdxSize = DAG.getDataLayout().getIndexSizeInBits(AS);
3476       MVT IdxTy = MVT::getIntegerVT(IdxSize);
3477       APInt ElementSize(IdxSize, DL->getTypeAllocSize(GTI.getIndexedType()));
3478 
3479       // If this is a scalar constant or a splat vector of constants,
3480       // handle it quickly.
3481       const auto *CI = dyn_cast<ConstantInt>(Idx);
3482       if (!CI && isa<ConstantDataVector>(Idx) &&
3483           cast<ConstantDataVector>(Idx)->getSplatValue())
3484         CI = cast<ConstantInt>(cast<ConstantDataVector>(Idx)->getSplatValue());
3485 
3486       if (CI) {
3487         if (CI->isZero())
3488           continue;
3489         APInt Offs = ElementSize * CI->getValue().sextOrTrunc(IdxSize);
3490         LLVMContext &Context = *DAG.getContext();
3491         SDValue OffsVal = VectorWidth ?
3492           DAG.getConstant(Offs, dl, EVT::getVectorVT(Context, IdxTy, VectorWidth)) :
3493           DAG.getConstant(Offs, dl, IdxTy);
3494 
3495         // In an inbouds GEP with an offset that is nonnegative even when
3496         // interpreted as signed, assume there is no unsigned overflow.
3497         SDNodeFlags Flags;
3498         if (Offs.isNonNegative() && cast<GEPOperator>(I).isInBounds())
3499           Flags.setNoUnsignedWrap(true);
3500 
3501         N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N, OffsVal, Flags);
3502         continue;
3503       }
3504 
3505       // N = N + Idx * ElementSize;
3506       SDValue IdxN = getValue(Idx);
3507 
3508       if (!IdxN.getValueType().isVector() && VectorWidth) {
3509         EVT VT = EVT::getVectorVT(*Context, IdxN.getValueType(), VectorWidth);
3510         IdxN = DAG.getSplatBuildVector(VT, dl, IdxN);
3511       }
3512 
3513       // If the index is smaller or larger than intptr_t, truncate or extend
3514       // it.
3515       IdxN = DAG.getSExtOrTrunc(IdxN, dl, N.getValueType());
3516 
3517       // If this is a multiply by a power of two, turn it into a shl
3518       // immediately.  This is a very common case.
3519       if (ElementSize != 1) {
3520         if (ElementSize.isPowerOf2()) {
3521           unsigned Amt = ElementSize.logBase2();
3522           IdxN = DAG.getNode(ISD::SHL, dl,
3523                              N.getValueType(), IdxN,
3524                              DAG.getConstant(Amt, dl, IdxN.getValueType()));
3525         } else {
3526           SDValue Scale = DAG.getConstant(ElementSize, dl, IdxN.getValueType());
3527           IdxN = DAG.getNode(ISD::MUL, dl,
3528                              N.getValueType(), IdxN, Scale);
3529         }
3530       }
3531 
3532       N = DAG.getNode(ISD::ADD, dl,
3533                       N.getValueType(), N, IdxN);
3534     }
3535   }
3536 
3537   setValue(&I, N);
3538 }
3539 
3540 void SelectionDAGBuilder::visitAlloca(const AllocaInst &I) {
3541   // If this is a fixed sized alloca in the entry block of the function,
3542   // allocate it statically on the stack.
3543   if (FuncInfo.StaticAllocaMap.count(&I))
3544     return;   // getValue will auto-populate this.
3545 
3546   SDLoc dl = getCurSDLoc();
3547   Type *Ty = I.getAllocatedType();
3548   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3549   auto &DL = DAG.getDataLayout();
3550   uint64_t TySize = DL.getTypeAllocSize(Ty);
3551   unsigned Align =
3552       std::max((unsigned)DL.getPrefTypeAlignment(Ty), I.getAlignment());
3553 
3554   SDValue AllocSize = getValue(I.getArraySize());
3555 
3556   EVT IntPtr = TLI.getPointerTy(DAG.getDataLayout(), DL.getAllocaAddrSpace());
3557   if (AllocSize.getValueType() != IntPtr)
3558     AllocSize = DAG.getZExtOrTrunc(AllocSize, dl, IntPtr);
3559 
3560   AllocSize = DAG.getNode(ISD::MUL, dl, IntPtr,
3561                           AllocSize,
3562                           DAG.getConstant(TySize, dl, IntPtr));
3563 
3564   // Handle alignment.  If the requested alignment is less than or equal to
3565   // the stack alignment, ignore it.  If the size is greater than or equal to
3566   // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
3567   unsigned StackAlign =
3568       DAG.getSubtarget().getFrameLowering()->getStackAlignment();
3569   if (Align <= StackAlign)
3570     Align = 0;
3571 
3572   // Round the size of the allocation up to the stack alignment size
3573   // by add SA-1 to the size. This doesn't overflow because we're computing
3574   // an address inside an alloca.
3575   SDNodeFlags Flags;
3576   Flags.setNoUnsignedWrap(true);
3577   AllocSize = DAG.getNode(ISD::ADD, dl, AllocSize.getValueType(), AllocSize,
3578                           DAG.getConstant(StackAlign - 1, dl, IntPtr), Flags);
3579 
3580   // Mask out the low bits for alignment purposes.
3581   AllocSize =
3582       DAG.getNode(ISD::AND, dl, AllocSize.getValueType(), AllocSize,
3583                   DAG.getConstant(~(uint64_t)(StackAlign - 1), dl, IntPtr));
3584 
3585   SDValue Ops[] = {getRoot(), AllocSize, DAG.getConstant(Align, dl, IntPtr)};
3586   SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
3587   SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, dl, VTs, Ops);
3588   setValue(&I, DSA);
3589   DAG.setRoot(DSA.getValue(1));
3590 
3591   assert(FuncInfo.MF->getFrameInfo().hasVarSizedObjects());
3592 }
3593 
3594 void SelectionDAGBuilder::visitLoad(const LoadInst &I) {
3595   if (I.isAtomic())
3596     return visitAtomicLoad(I);
3597 
3598   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3599   const Value *SV = I.getOperand(0);
3600   if (TLI.supportSwiftError()) {
3601     // Swifterror values can come from either a function parameter with
3602     // swifterror attribute or an alloca with swifterror attribute.
3603     if (const Argument *Arg = dyn_cast<Argument>(SV)) {
3604       if (Arg->hasSwiftErrorAttr())
3605         return visitLoadFromSwiftError(I);
3606     }
3607 
3608     if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) {
3609       if (Alloca->isSwiftError())
3610         return visitLoadFromSwiftError(I);
3611     }
3612   }
3613 
3614   SDValue Ptr = getValue(SV);
3615 
3616   Type *Ty = I.getType();
3617 
3618   bool isVolatile = I.isVolatile();
3619   bool isNonTemporal = I.getMetadata(LLVMContext::MD_nontemporal) != nullptr;
3620   bool isInvariant = I.getMetadata(LLVMContext::MD_invariant_load) != nullptr;
3621   bool isDereferenceable = isDereferenceablePointer(SV, DAG.getDataLayout());
3622   unsigned Alignment = I.getAlignment();
3623 
3624   AAMDNodes AAInfo;
3625   I.getAAMetadata(AAInfo);
3626   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
3627 
3628   SmallVector<EVT, 4> ValueVTs;
3629   SmallVector<uint64_t, 4> Offsets;
3630   ComputeValueVTs(TLI, DAG.getDataLayout(), Ty, ValueVTs, &Offsets);
3631   unsigned NumValues = ValueVTs.size();
3632   if (NumValues == 0)
3633     return;
3634 
3635   SDValue Root;
3636   bool ConstantMemory = false;
3637   if (isVolatile || NumValues > MaxParallelChains)
3638     // Serialize volatile loads with other side effects.
3639     Root = getRoot();
3640   else if (AA && AA->pointsToConstantMemory(MemoryLocation(
3641                SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo))) {
3642     // Do not serialize (non-volatile) loads of constant memory with anything.
3643     Root = DAG.getEntryNode();
3644     ConstantMemory = true;
3645   } else {
3646     // Do not serialize non-volatile loads against each other.
3647     Root = DAG.getRoot();
3648   }
3649 
3650   SDLoc dl = getCurSDLoc();
3651 
3652   if (isVolatile)
3653     Root = TLI.prepareVolatileOrAtomicLoad(Root, dl, DAG);
3654 
3655   // An aggregate load cannot wrap around the address space, so offsets to its
3656   // parts don't wrap either.
3657   SDNodeFlags Flags;
3658   Flags.setNoUnsignedWrap(true);
3659 
3660   SmallVector<SDValue, 4> Values(NumValues);
3661   SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues));
3662   EVT PtrVT = Ptr.getValueType();
3663   unsigned ChainI = 0;
3664   for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3665     // Serializing loads here may result in excessive register pressure, and
3666     // TokenFactor places arbitrary choke points on the scheduler. SD scheduling
3667     // could recover a bit by hoisting nodes upward in the chain by recognizing
3668     // they are side-effect free or do not alias. The optimizer should really
3669     // avoid this case by converting large object/array copies to llvm.memcpy
3670     // (MaxParallelChains should always remain as failsafe).
3671     if (ChainI == MaxParallelChains) {
3672       assert(PendingLoads.empty() && "PendingLoads must be serialized first");
3673       SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3674                                   makeArrayRef(Chains.data(), ChainI));
3675       Root = Chain;
3676       ChainI = 0;
3677     }
3678     SDValue A = DAG.getNode(ISD::ADD, dl,
3679                             PtrVT, Ptr,
3680                             DAG.getConstant(Offsets[i], dl, PtrVT),
3681                             Flags);
3682     auto MMOFlags = MachineMemOperand::MONone;
3683     if (isVolatile)
3684       MMOFlags |= MachineMemOperand::MOVolatile;
3685     if (isNonTemporal)
3686       MMOFlags |= MachineMemOperand::MONonTemporal;
3687     if (isInvariant)
3688       MMOFlags |= MachineMemOperand::MOInvariant;
3689     if (isDereferenceable)
3690       MMOFlags |= MachineMemOperand::MODereferenceable;
3691     MMOFlags |= TLI.getMMOFlags(I);
3692 
3693     SDValue L = DAG.getLoad(ValueVTs[i], dl, Root, A,
3694                             MachinePointerInfo(SV, Offsets[i]), Alignment,
3695                             MMOFlags, AAInfo, Ranges);
3696 
3697     Values[i] = L;
3698     Chains[ChainI] = L.getValue(1);
3699   }
3700 
3701   if (!ConstantMemory) {
3702     SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3703                                 makeArrayRef(Chains.data(), ChainI));
3704     if (isVolatile)
3705       DAG.setRoot(Chain);
3706     else
3707       PendingLoads.push_back(Chain);
3708   }
3709 
3710   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, dl,
3711                            DAG.getVTList(ValueVTs), Values));
3712 }
3713 
3714 void SelectionDAGBuilder::visitStoreToSwiftError(const StoreInst &I) {
3715   assert(DAG.getTargetLoweringInfo().supportSwiftError() &&
3716          "call visitStoreToSwiftError when backend supports swifterror");
3717 
3718   SmallVector<EVT, 4> ValueVTs;
3719   SmallVector<uint64_t, 4> Offsets;
3720   const Value *SrcV = I.getOperand(0);
3721   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(),
3722                   SrcV->getType(), ValueVTs, &Offsets);
3723   assert(ValueVTs.size() == 1 && Offsets[0] == 0 &&
3724          "expect a single EVT for swifterror");
3725 
3726   SDValue Src = getValue(SrcV);
3727   // Create a virtual register, then update the virtual register.
3728   unsigned VReg; bool CreatedVReg;
3729   std::tie(VReg, CreatedVReg) = FuncInfo.getOrCreateSwiftErrorVRegDefAt(&I);
3730   // Chain, DL, Reg, N or Chain, DL, Reg, N, Glue
3731   // Chain can be getRoot or getControlRoot.
3732   SDValue CopyNode = DAG.getCopyToReg(getRoot(), getCurSDLoc(), VReg,
3733                                       SDValue(Src.getNode(), Src.getResNo()));
3734   DAG.setRoot(CopyNode);
3735   if (CreatedVReg)
3736     FuncInfo.setCurrentSwiftErrorVReg(FuncInfo.MBB, I.getOperand(1), VReg);
3737 }
3738 
3739 void SelectionDAGBuilder::visitLoadFromSwiftError(const LoadInst &I) {
3740   assert(DAG.getTargetLoweringInfo().supportSwiftError() &&
3741          "call visitLoadFromSwiftError when backend supports swifterror");
3742 
3743   assert(!I.isVolatile() &&
3744          I.getMetadata(LLVMContext::MD_nontemporal) == nullptr &&
3745          I.getMetadata(LLVMContext::MD_invariant_load) == nullptr &&
3746          "Support volatile, non temporal, invariant for load_from_swift_error");
3747 
3748   const Value *SV = I.getOperand(0);
3749   Type *Ty = I.getType();
3750   AAMDNodes AAInfo;
3751   I.getAAMetadata(AAInfo);
3752   assert((!AA || !AA->pointsToConstantMemory(MemoryLocation(
3753              SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo))) &&
3754          "load_from_swift_error should not be constant memory");
3755 
3756   SmallVector<EVT, 4> ValueVTs;
3757   SmallVector<uint64_t, 4> Offsets;
3758   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), Ty,
3759                   ValueVTs, &Offsets);
3760   assert(ValueVTs.size() == 1 && Offsets[0] == 0 &&
3761          "expect a single EVT for swifterror");
3762 
3763   // Chain, DL, Reg, VT, Glue or Chain, DL, Reg, VT
3764   SDValue L = DAG.getCopyFromReg(
3765       getRoot(), getCurSDLoc(),
3766       FuncInfo.getOrCreateSwiftErrorVRegUseAt(&I, FuncInfo.MBB, SV).first,
3767       ValueVTs[0]);
3768 
3769   setValue(&I, L);
3770 }
3771 
3772 void SelectionDAGBuilder::visitStore(const StoreInst &I) {
3773   if (I.isAtomic())
3774     return visitAtomicStore(I);
3775 
3776   const Value *SrcV = I.getOperand(0);
3777   const Value *PtrV = I.getOperand(1);
3778 
3779   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3780   if (TLI.supportSwiftError()) {
3781     // Swifterror values can come from either a function parameter with
3782     // swifterror attribute or an alloca with swifterror attribute.
3783     if (const Argument *Arg = dyn_cast<Argument>(PtrV)) {
3784       if (Arg->hasSwiftErrorAttr())
3785         return visitStoreToSwiftError(I);
3786     }
3787 
3788     if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) {
3789       if (Alloca->isSwiftError())
3790         return visitStoreToSwiftError(I);
3791     }
3792   }
3793 
3794   SmallVector<EVT, 4> ValueVTs;
3795   SmallVector<uint64_t, 4> Offsets;
3796   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(),
3797                   SrcV->getType(), ValueVTs, &Offsets);
3798   unsigned NumValues = ValueVTs.size();
3799   if (NumValues == 0)
3800     return;
3801 
3802   // Get the lowered operands. Note that we do this after
3803   // checking if NumResults is zero, because with zero results
3804   // the operands won't have values in the map.
3805   SDValue Src = getValue(SrcV);
3806   SDValue Ptr = getValue(PtrV);
3807 
3808   SDValue Root = getRoot();
3809   SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues));
3810   SDLoc dl = getCurSDLoc();
3811   EVT PtrVT = Ptr.getValueType();
3812   unsigned Alignment = I.getAlignment();
3813   AAMDNodes AAInfo;
3814   I.getAAMetadata(AAInfo);
3815 
3816   auto MMOFlags = MachineMemOperand::MONone;
3817   if (I.isVolatile())
3818     MMOFlags |= MachineMemOperand::MOVolatile;
3819   if (I.getMetadata(LLVMContext::MD_nontemporal) != nullptr)
3820     MMOFlags |= MachineMemOperand::MONonTemporal;
3821   MMOFlags |= TLI.getMMOFlags(I);
3822 
3823   // An aggregate load cannot wrap around the address space, so offsets to its
3824   // parts don't wrap either.
3825   SDNodeFlags Flags;
3826   Flags.setNoUnsignedWrap(true);
3827 
3828   unsigned ChainI = 0;
3829   for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3830     // See visitLoad comments.
3831     if (ChainI == MaxParallelChains) {
3832       SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3833                                   makeArrayRef(Chains.data(), ChainI));
3834       Root = Chain;
3835       ChainI = 0;
3836     }
3837     SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, Ptr,
3838                               DAG.getConstant(Offsets[i], dl, PtrVT), Flags);
3839     SDValue St = DAG.getStore(
3840         Root, dl, SDValue(Src.getNode(), Src.getResNo() + i), Add,
3841         MachinePointerInfo(PtrV, Offsets[i]), Alignment, MMOFlags, AAInfo);
3842     Chains[ChainI] = St;
3843   }
3844 
3845   SDValue StoreNode = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3846                                   makeArrayRef(Chains.data(), ChainI));
3847   DAG.setRoot(StoreNode);
3848 }
3849 
3850 void SelectionDAGBuilder::visitMaskedStore(const CallInst &I,
3851                                            bool IsCompressing) {
3852   SDLoc sdl = getCurSDLoc();
3853 
3854   auto getMaskedStoreOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3855                            unsigned& Alignment) {
3856     // llvm.masked.store.*(Src0, Ptr, alignment, Mask)
3857     Src0 = I.getArgOperand(0);
3858     Ptr = I.getArgOperand(1);
3859     Alignment = cast<ConstantInt>(I.getArgOperand(2))->getZExtValue();
3860     Mask = I.getArgOperand(3);
3861   };
3862   auto getCompressingStoreOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3863                            unsigned& Alignment) {
3864     // llvm.masked.compressstore.*(Src0, Ptr, Mask)
3865     Src0 = I.getArgOperand(0);
3866     Ptr = I.getArgOperand(1);
3867     Mask = I.getArgOperand(2);
3868     Alignment = 0;
3869   };
3870 
3871   Value  *PtrOperand, *MaskOperand, *Src0Operand;
3872   unsigned Alignment;
3873   if (IsCompressing)
3874     getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3875   else
3876     getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3877 
3878   SDValue Ptr = getValue(PtrOperand);
3879   SDValue Src0 = getValue(Src0Operand);
3880   SDValue Mask = getValue(MaskOperand);
3881 
3882   EVT VT = Src0.getValueType();
3883   if (!Alignment)
3884     Alignment = DAG.getEVTAlignment(VT);
3885 
3886   AAMDNodes AAInfo;
3887   I.getAAMetadata(AAInfo);
3888 
3889   MachineMemOperand *MMO =
3890     DAG.getMachineFunction().
3891     getMachineMemOperand(MachinePointerInfo(PtrOperand),
3892                           MachineMemOperand::MOStore,  VT.getStoreSize(),
3893                           Alignment, AAInfo);
3894   SDValue StoreNode = DAG.getMaskedStore(getRoot(), sdl, Src0, Ptr, Mask, VT,
3895                                          MMO, false /* Truncating */,
3896                                          IsCompressing);
3897   DAG.setRoot(StoreNode);
3898   setValue(&I, StoreNode);
3899 }
3900 
3901 // Get a uniform base for the Gather/Scatter intrinsic.
3902 // The first argument of the Gather/Scatter intrinsic is a vector of pointers.
3903 // We try to represent it as a base pointer + vector of indices.
3904 // Usually, the vector of pointers comes from a 'getelementptr' instruction.
3905 // The first operand of the GEP may be a single pointer or a vector of pointers
3906 // Example:
3907 //   %gep.ptr = getelementptr i32, <8 x i32*> %vptr, <8 x i32> %ind
3908 //  or
3909 //   %gep.ptr = getelementptr i32, i32* %ptr,        <8 x i32> %ind
3910 // %res = call <8 x i32> @llvm.masked.gather.v8i32(<8 x i32*> %gep.ptr, ..
3911 //
3912 // When the first GEP operand is a single pointer - it is the uniform base we
3913 // are looking for. If first operand of the GEP is a splat vector - we
3914 // extract the splat value and use it as a uniform base.
3915 // In all other cases the function returns 'false'.
3916 static bool getUniformBase(const Value* &Ptr, SDValue& Base, SDValue& Index,
3917                            SDValue &Scale, SelectionDAGBuilder* SDB) {
3918   SelectionDAG& DAG = SDB->DAG;
3919   LLVMContext &Context = *DAG.getContext();
3920 
3921   assert(Ptr->getType()->isVectorTy() && "Uexpected pointer type");
3922   const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr);
3923   if (!GEP)
3924     return false;
3925 
3926   const Value *GEPPtr = GEP->getPointerOperand();
3927   if (!GEPPtr->getType()->isVectorTy())
3928     Ptr = GEPPtr;
3929   else if (!(Ptr = getSplatValue(GEPPtr)))
3930     return false;
3931 
3932   unsigned FinalIndex = GEP->getNumOperands() - 1;
3933   Value *IndexVal = GEP->getOperand(FinalIndex);
3934 
3935   // Ensure all the other indices are 0.
3936   for (unsigned i = 1; i < FinalIndex; ++i) {
3937     auto *C = dyn_cast<ConstantInt>(GEP->getOperand(i));
3938     if (!C || !C->isZero())
3939       return false;
3940   }
3941 
3942   // The operands of the GEP may be defined in another basic block.
3943   // In this case we'll not find nodes for the operands.
3944   if (!SDB->findValue(Ptr) || !SDB->findValue(IndexVal))
3945     return false;
3946 
3947   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3948   const DataLayout &DL = DAG.getDataLayout();
3949   Scale = DAG.getTargetConstant(DL.getTypeAllocSize(GEP->getResultElementType()),
3950                                 SDB->getCurSDLoc(), TLI.getPointerTy(DL));
3951   Base = SDB->getValue(Ptr);
3952   Index = SDB->getValue(IndexVal);
3953 
3954   if (!Index.getValueType().isVector()) {
3955     unsigned GEPWidth = GEP->getType()->getVectorNumElements();
3956     EVT VT = EVT::getVectorVT(Context, Index.getValueType(), GEPWidth);
3957     Index = DAG.getSplatBuildVector(VT, SDLoc(Index), Index);
3958   }
3959   return true;
3960 }
3961 
3962 void SelectionDAGBuilder::visitMaskedScatter(const CallInst &I) {
3963   SDLoc sdl = getCurSDLoc();
3964 
3965   // llvm.masked.scatter.*(Src0, Ptrs, alignemt, Mask)
3966   const Value *Ptr = I.getArgOperand(1);
3967   SDValue Src0 = getValue(I.getArgOperand(0));
3968   SDValue Mask = getValue(I.getArgOperand(3));
3969   EVT VT = Src0.getValueType();
3970   unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(2)))->getZExtValue();
3971   if (!Alignment)
3972     Alignment = DAG.getEVTAlignment(VT);
3973   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3974 
3975   AAMDNodes AAInfo;
3976   I.getAAMetadata(AAInfo);
3977 
3978   SDValue Base;
3979   SDValue Index;
3980   SDValue Scale;
3981   const Value *BasePtr = Ptr;
3982   bool UniformBase = getUniformBase(BasePtr, Base, Index, Scale, this);
3983 
3984   const Value *MemOpBasePtr = UniformBase ? BasePtr : nullptr;
3985   MachineMemOperand *MMO = DAG.getMachineFunction().
3986     getMachineMemOperand(MachinePointerInfo(MemOpBasePtr),
3987                          MachineMemOperand::MOStore,  VT.getStoreSize(),
3988                          Alignment, AAInfo);
3989   if (!UniformBase) {
3990     Base = DAG.getConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout()));
3991     Index = getValue(Ptr);
3992     Scale = DAG.getTargetConstant(1, sdl, TLI.getPointerTy(DAG.getDataLayout()));
3993   }
3994   SDValue Ops[] = { getRoot(), Src0, Mask, Base, Index, Scale };
3995   SDValue Scatter = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), VT, sdl,
3996                                          Ops, MMO);
3997   DAG.setRoot(Scatter);
3998   setValue(&I, Scatter);
3999 }
4000 
4001 void SelectionDAGBuilder::visitMaskedLoad(const CallInst &I, bool IsExpanding) {
4002   SDLoc sdl = getCurSDLoc();
4003 
4004   auto getMaskedLoadOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
4005                            unsigned& Alignment) {
4006     // @llvm.masked.load.*(Ptr, alignment, Mask, Src0)
4007     Ptr = I.getArgOperand(0);
4008     Alignment = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue();
4009     Mask = I.getArgOperand(2);
4010     Src0 = I.getArgOperand(3);
4011   };
4012   auto getExpandingLoadOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
4013                            unsigned& Alignment) {
4014     // @llvm.masked.expandload.*(Ptr, Mask, Src0)
4015     Ptr = I.getArgOperand(0);
4016     Alignment = 0;
4017     Mask = I.getArgOperand(1);
4018     Src0 = I.getArgOperand(2);
4019   };
4020 
4021   Value  *PtrOperand, *MaskOperand, *Src0Operand;
4022   unsigned Alignment;
4023   if (IsExpanding)
4024     getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4025   else
4026     getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4027 
4028   SDValue Ptr = getValue(PtrOperand);
4029   SDValue Src0 = getValue(Src0Operand);
4030   SDValue Mask = getValue(MaskOperand);
4031 
4032   EVT VT = Src0.getValueType();
4033   if (!Alignment)
4034     Alignment = DAG.getEVTAlignment(VT);
4035 
4036   AAMDNodes AAInfo;
4037   I.getAAMetadata(AAInfo);
4038   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
4039 
4040   // Do not serialize masked loads of constant memory with anything.
4041   bool AddToChain = !AA || !AA->pointsToConstantMemory(MemoryLocation(
4042       PtrOperand, DAG.getDataLayout().getTypeStoreSize(I.getType()), AAInfo));
4043   SDValue InChain = AddToChain ? DAG.getRoot() : DAG.getEntryNode();
4044 
4045   MachineMemOperand *MMO =
4046     DAG.getMachineFunction().
4047     getMachineMemOperand(MachinePointerInfo(PtrOperand),
4048                           MachineMemOperand::MOLoad,  VT.getStoreSize(),
4049                           Alignment, AAInfo, Ranges);
4050 
4051   SDValue Load = DAG.getMaskedLoad(VT, sdl, InChain, Ptr, Mask, Src0, VT, MMO,
4052                                    ISD::NON_EXTLOAD, IsExpanding);
4053   if (AddToChain) {
4054     SDValue OutChain = Load.getValue(1);
4055     DAG.setRoot(OutChain);
4056   }
4057   setValue(&I, Load);
4058 }
4059 
4060 void SelectionDAGBuilder::visitMaskedGather(const CallInst &I) {
4061   SDLoc sdl = getCurSDLoc();
4062 
4063   // @llvm.masked.gather.*(Ptrs, alignment, Mask, Src0)
4064   const Value *Ptr = I.getArgOperand(0);
4065   SDValue Src0 = getValue(I.getArgOperand(3));
4066   SDValue Mask = getValue(I.getArgOperand(2));
4067 
4068   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4069   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
4070   unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(1)))->getZExtValue();
4071   if (!Alignment)
4072     Alignment = DAG.getEVTAlignment(VT);
4073 
4074   AAMDNodes AAInfo;
4075   I.getAAMetadata(AAInfo);
4076   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
4077 
4078   SDValue Root = DAG.getRoot();
4079   SDValue Base;
4080   SDValue Index;
4081   SDValue Scale;
4082   const Value *BasePtr = Ptr;
4083   bool UniformBase = getUniformBase(BasePtr, Base, Index, Scale, this);
4084   bool ConstantMemory = false;
4085   if (UniformBase &&
4086       AA && AA->pointsToConstantMemory(MemoryLocation(
4087           BasePtr, DAG.getDataLayout().getTypeStoreSize(I.getType()),
4088           AAInfo))) {
4089     // Do not serialize (non-volatile) loads of constant memory with anything.
4090     Root = DAG.getEntryNode();
4091     ConstantMemory = true;
4092   }
4093 
4094   MachineMemOperand *MMO =
4095     DAG.getMachineFunction().
4096     getMachineMemOperand(MachinePointerInfo(UniformBase ? BasePtr : nullptr),
4097                          MachineMemOperand::MOLoad,  VT.getStoreSize(),
4098                          Alignment, AAInfo, Ranges);
4099 
4100   if (!UniformBase) {
4101     Base = DAG.getConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout()));
4102     Index = getValue(Ptr);
4103     Scale = DAG.getTargetConstant(1, sdl, TLI.getPointerTy(DAG.getDataLayout()));
4104   }
4105   SDValue Ops[] = { Root, Src0, Mask, Base, Index, Scale };
4106   SDValue Gather = DAG.getMaskedGather(DAG.getVTList(VT, MVT::Other), VT, sdl,
4107                                        Ops, MMO);
4108 
4109   SDValue OutChain = Gather.getValue(1);
4110   if (!ConstantMemory)
4111     PendingLoads.push_back(OutChain);
4112   setValue(&I, Gather);
4113 }
4114 
4115 void SelectionDAGBuilder::visitAtomicCmpXchg(const AtomicCmpXchgInst &I) {
4116   SDLoc dl = getCurSDLoc();
4117   AtomicOrdering SuccessOrder = I.getSuccessOrdering();
4118   AtomicOrdering FailureOrder = I.getFailureOrdering();
4119   SyncScope::ID SSID = I.getSyncScopeID();
4120 
4121   SDValue InChain = getRoot();
4122 
4123   MVT MemVT = getValue(I.getCompareOperand()).getSimpleValueType();
4124   SDVTList VTs = DAG.getVTList(MemVT, MVT::i1, MVT::Other);
4125   SDValue L = DAG.getAtomicCmpSwap(
4126       ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl, MemVT, VTs, InChain,
4127       getValue(I.getPointerOperand()), getValue(I.getCompareOperand()),
4128       getValue(I.getNewValOperand()), MachinePointerInfo(I.getPointerOperand()),
4129       /*Alignment=*/ 0, SuccessOrder, FailureOrder, SSID);
4130 
4131   SDValue OutChain = L.getValue(2);
4132 
4133   setValue(&I, L);
4134   DAG.setRoot(OutChain);
4135 }
4136 
4137 void SelectionDAGBuilder::visitAtomicRMW(const AtomicRMWInst &I) {
4138   SDLoc dl = getCurSDLoc();
4139   ISD::NodeType NT;
4140   switch (I.getOperation()) {
4141   default: llvm_unreachable("Unknown atomicrmw operation");
4142   case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break;
4143   case AtomicRMWInst::Add:  NT = ISD::ATOMIC_LOAD_ADD; break;
4144   case AtomicRMWInst::Sub:  NT = ISD::ATOMIC_LOAD_SUB; break;
4145   case AtomicRMWInst::And:  NT = ISD::ATOMIC_LOAD_AND; break;
4146   case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break;
4147   case AtomicRMWInst::Or:   NT = ISD::ATOMIC_LOAD_OR; break;
4148   case AtomicRMWInst::Xor:  NT = ISD::ATOMIC_LOAD_XOR; break;
4149   case AtomicRMWInst::Max:  NT = ISD::ATOMIC_LOAD_MAX; break;
4150   case AtomicRMWInst::Min:  NT = ISD::ATOMIC_LOAD_MIN; break;
4151   case AtomicRMWInst::UMax: NT = ISD::ATOMIC_LOAD_UMAX; break;
4152   case AtomicRMWInst::UMin: NT = ISD::ATOMIC_LOAD_UMIN; break;
4153   }
4154   AtomicOrdering Order = I.getOrdering();
4155   SyncScope::ID SSID = I.getSyncScopeID();
4156 
4157   SDValue InChain = getRoot();
4158 
4159   SDValue L =
4160     DAG.getAtomic(NT, dl,
4161                   getValue(I.getValOperand()).getSimpleValueType(),
4162                   InChain,
4163                   getValue(I.getPointerOperand()),
4164                   getValue(I.getValOperand()),
4165                   I.getPointerOperand(),
4166                   /* Alignment=*/ 0, Order, SSID);
4167 
4168   SDValue OutChain = L.getValue(1);
4169 
4170   setValue(&I, L);
4171   DAG.setRoot(OutChain);
4172 }
4173 
4174 void SelectionDAGBuilder::visitFence(const FenceInst &I) {
4175   SDLoc dl = getCurSDLoc();
4176   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4177   SDValue Ops[3];
4178   Ops[0] = getRoot();
4179   Ops[1] = DAG.getConstant((unsigned)I.getOrdering(), dl,
4180                            TLI.getFenceOperandTy(DAG.getDataLayout()));
4181   Ops[2] = DAG.getConstant(I.getSyncScopeID(), dl,
4182                            TLI.getFenceOperandTy(DAG.getDataLayout()));
4183   DAG.setRoot(DAG.getNode(ISD::ATOMIC_FENCE, dl, MVT::Other, Ops));
4184 }
4185 
4186 void SelectionDAGBuilder::visitAtomicLoad(const LoadInst &I) {
4187   SDLoc dl = getCurSDLoc();
4188   AtomicOrdering Order = I.getOrdering();
4189   SyncScope::ID SSID = I.getSyncScopeID();
4190 
4191   SDValue InChain = getRoot();
4192 
4193   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4194   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
4195 
4196   if (!TLI.supportsUnalignedAtomics() &&
4197       I.getAlignment() < VT.getStoreSize())
4198     report_fatal_error("Cannot generate unaligned atomic load");
4199 
4200   MachineMemOperand *MMO =
4201       DAG.getMachineFunction().
4202       getMachineMemOperand(MachinePointerInfo(I.getPointerOperand()),
4203                            MachineMemOperand::MOVolatile |
4204                            MachineMemOperand::MOLoad,
4205                            VT.getStoreSize(),
4206                            I.getAlignment() ? I.getAlignment() :
4207                                               DAG.getEVTAlignment(VT),
4208                            AAMDNodes(), nullptr, SSID, Order);
4209 
4210   InChain = TLI.prepareVolatileOrAtomicLoad(InChain, dl, DAG);
4211   SDValue L =
4212       DAG.getAtomic(ISD::ATOMIC_LOAD, dl, VT, VT, InChain,
4213                     getValue(I.getPointerOperand()), MMO);
4214 
4215   SDValue OutChain = L.getValue(1);
4216 
4217   setValue(&I, L);
4218   DAG.setRoot(OutChain);
4219 }
4220 
4221 void SelectionDAGBuilder::visitAtomicStore(const StoreInst &I) {
4222   SDLoc dl = getCurSDLoc();
4223 
4224   AtomicOrdering Order = I.getOrdering();
4225   SyncScope::ID SSID = I.getSyncScopeID();
4226 
4227   SDValue InChain = getRoot();
4228 
4229   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4230   EVT VT =
4231       TLI.getValueType(DAG.getDataLayout(), I.getValueOperand()->getType());
4232 
4233   if (I.getAlignment() < VT.getStoreSize())
4234     report_fatal_error("Cannot generate unaligned atomic store");
4235 
4236   SDValue OutChain =
4237     DAG.getAtomic(ISD::ATOMIC_STORE, dl, VT,
4238                   InChain,
4239                   getValue(I.getPointerOperand()),
4240                   getValue(I.getValueOperand()),
4241                   I.getPointerOperand(), I.getAlignment(),
4242                   Order, SSID);
4243 
4244   DAG.setRoot(OutChain);
4245 }
4246 
4247 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
4248 /// node.
4249 void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I,
4250                                                unsigned Intrinsic) {
4251   // Ignore the callsite's attributes. A specific call site may be marked with
4252   // readnone, but the lowering code will expect the chain based on the
4253   // definition.
4254   const Function *F = I.getCalledFunction();
4255   bool HasChain = !F->doesNotAccessMemory();
4256   bool OnlyLoad = HasChain && F->onlyReadsMemory();
4257 
4258   // Build the operand list.
4259   SmallVector<SDValue, 8> Ops;
4260   if (HasChain) {  // If this intrinsic has side-effects, chainify it.
4261     if (OnlyLoad) {
4262       // We don't need to serialize loads against other loads.
4263       Ops.push_back(DAG.getRoot());
4264     } else {
4265       Ops.push_back(getRoot());
4266     }
4267   }
4268 
4269   // Info is set by getTgtMemInstrinsic
4270   TargetLowering::IntrinsicInfo Info;
4271   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4272   bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I,
4273                                                DAG.getMachineFunction(),
4274                                                Intrinsic);
4275 
4276   // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
4277   if (!IsTgtIntrinsic || Info.opc == ISD::INTRINSIC_VOID ||
4278       Info.opc == ISD::INTRINSIC_W_CHAIN)
4279     Ops.push_back(DAG.getTargetConstant(Intrinsic, getCurSDLoc(),
4280                                         TLI.getPointerTy(DAG.getDataLayout())));
4281 
4282   // Add all operands of the call to the operand list.
4283   for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) {
4284     SDValue Op = getValue(I.getArgOperand(i));
4285     Ops.push_back(Op);
4286   }
4287 
4288   SmallVector<EVT, 4> ValueVTs;
4289   ComputeValueVTs(TLI, DAG.getDataLayout(), I.getType(), ValueVTs);
4290 
4291   if (HasChain)
4292     ValueVTs.push_back(MVT::Other);
4293 
4294   SDVTList VTs = DAG.getVTList(ValueVTs);
4295 
4296   // Create the node.
4297   SDValue Result;
4298   if (IsTgtIntrinsic) {
4299     // This is target intrinsic that touches memory
4300     Result = DAG.getMemIntrinsicNode(Info.opc, getCurSDLoc(), VTs,
4301       Ops, Info.memVT,
4302       MachinePointerInfo(Info.ptrVal, Info.offset), Info.align,
4303       Info.flags, Info.size);
4304   } else if (!HasChain) {
4305     Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurSDLoc(), VTs, Ops);
4306   } else if (!I.getType()->isVoidTy()) {
4307     Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurSDLoc(), VTs, Ops);
4308   } else {
4309     Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurSDLoc(), VTs, Ops);
4310   }
4311 
4312   if (HasChain) {
4313     SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
4314     if (OnlyLoad)
4315       PendingLoads.push_back(Chain);
4316     else
4317       DAG.setRoot(Chain);
4318   }
4319 
4320   if (!I.getType()->isVoidTy()) {
4321     if (VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
4322       EVT VT = TLI.getValueType(DAG.getDataLayout(), PTy);
4323       Result = DAG.getNode(ISD::BITCAST, getCurSDLoc(), VT, Result);
4324     } else
4325       Result = lowerRangeToAssertZExt(DAG, I, Result);
4326 
4327     setValue(&I, Result);
4328   }
4329 }
4330 
4331 /// GetSignificand - Get the significand and build it into a floating-point
4332 /// number with exponent of 1:
4333 ///
4334 ///   Op = (Op & 0x007fffff) | 0x3f800000;
4335 ///
4336 /// where Op is the hexadecimal representation of floating point value.
4337 static SDValue GetSignificand(SelectionDAG &DAG, SDValue Op, const SDLoc &dl) {
4338   SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
4339                            DAG.getConstant(0x007fffff, dl, MVT::i32));
4340   SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
4341                            DAG.getConstant(0x3f800000, dl, MVT::i32));
4342   return DAG.getNode(ISD::BITCAST, dl, MVT::f32, t2);
4343 }
4344 
4345 /// GetExponent - Get the exponent:
4346 ///
4347 ///   (float)(int)(((Op & 0x7f800000) >> 23) - 127);
4348 ///
4349 /// where Op is the hexadecimal representation of floating point value.
4350 static SDValue GetExponent(SelectionDAG &DAG, SDValue Op,
4351                            const TargetLowering &TLI, const SDLoc &dl) {
4352   SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
4353                            DAG.getConstant(0x7f800000, dl, MVT::i32));
4354   SDValue t1 = DAG.getNode(
4355       ISD::SRL, dl, MVT::i32, t0,
4356       DAG.getConstant(23, dl, TLI.getPointerTy(DAG.getDataLayout())));
4357   SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
4358                            DAG.getConstant(127, dl, MVT::i32));
4359   return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
4360 }
4361 
4362 /// getF32Constant - Get 32-bit floating point constant.
4363 static SDValue getF32Constant(SelectionDAG &DAG, unsigned Flt,
4364                               const SDLoc &dl) {
4365   return DAG.getConstantFP(APFloat(APFloat::IEEEsingle(), APInt(32, Flt)), dl,
4366                            MVT::f32);
4367 }
4368 
4369 static SDValue getLimitedPrecisionExp2(SDValue t0, const SDLoc &dl,
4370                                        SelectionDAG &DAG) {
4371   // TODO: What fast-math-flags should be set on the floating-point nodes?
4372 
4373   //   IntegerPartOfX = ((int32_t)(t0);
4374   SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
4375 
4376   //   FractionalPartOfX = t0 - (float)IntegerPartOfX;
4377   SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
4378   SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
4379 
4380   //   IntegerPartOfX <<= 23;
4381   IntegerPartOfX = DAG.getNode(
4382       ISD::SHL, dl, MVT::i32, IntegerPartOfX,
4383       DAG.getConstant(23, dl, DAG.getTargetLoweringInfo().getPointerTy(
4384                                   DAG.getDataLayout())));
4385 
4386   SDValue TwoToFractionalPartOfX;
4387   if (LimitFloatPrecision <= 6) {
4388     // For floating-point precision of 6:
4389     //
4390     //   TwoToFractionalPartOfX =
4391     //     0.997535578f +
4392     //       (0.735607626f + 0.252464424f * x) * x;
4393     //
4394     // error 0.0144103317, which is 6 bits
4395     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4396                              getF32Constant(DAG, 0x3e814304, dl));
4397     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4398                              getF32Constant(DAG, 0x3f3c50c8, dl));
4399     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4400     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4401                                          getF32Constant(DAG, 0x3f7f5e7e, dl));
4402   } else if (LimitFloatPrecision <= 12) {
4403     // For floating-point precision of 12:
4404     //
4405     //   TwoToFractionalPartOfX =
4406     //     0.999892986f +
4407     //       (0.696457318f +
4408     //         (0.224338339f + 0.792043434e-1f * x) * x) * x;
4409     //
4410     // error 0.000107046256, which is 13 to 14 bits
4411     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4412                              getF32Constant(DAG, 0x3da235e3, dl));
4413     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4414                              getF32Constant(DAG, 0x3e65b8f3, dl));
4415     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4416     SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4417                              getF32Constant(DAG, 0x3f324b07, dl));
4418     SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4419     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4420                                          getF32Constant(DAG, 0x3f7ff8fd, dl));
4421   } else { // LimitFloatPrecision <= 18
4422     // For floating-point precision of 18:
4423     //
4424     //   TwoToFractionalPartOfX =
4425     //     0.999999982f +
4426     //       (0.693148872f +
4427     //         (0.240227044f +
4428     //           (0.554906021e-1f +
4429     //             (0.961591928e-2f +
4430     //               (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4431     // error 2.47208000*10^(-7), which is better than 18 bits
4432     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4433                              getF32Constant(DAG, 0x3924b03e, dl));
4434     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4435                              getF32Constant(DAG, 0x3ab24b87, dl));
4436     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4437     SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4438                              getF32Constant(DAG, 0x3c1d8c17, dl));
4439     SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4440     SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4441                              getF32Constant(DAG, 0x3d634a1d, dl));
4442     SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4443     SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4444                              getF32Constant(DAG, 0x3e75fe14, dl));
4445     SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4446     SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
4447                               getF32Constant(DAG, 0x3f317234, dl));
4448     SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
4449     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
4450                                          getF32Constant(DAG, 0x3f800000, dl));
4451   }
4452 
4453   // Add the exponent into the result in integer domain.
4454   SDValue t13 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, TwoToFractionalPartOfX);
4455   return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4456                      DAG.getNode(ISD::ADD, dl, MVT::i32, t13, IntegerPartOfX));
4457 }
4458 
4459 /// expandExp - Lower an exp intrinsic. Handles the special sequences for
4460 /// limited-precision mode.
4461 static SDValue expandExp(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4462                          const TargetLowering &TLI) {
4463   if (Op.getValueType() == MVT::f32 &&
4464       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4465 
4466     // Put the exponent in the right bit position for later addition to the
4467     // final result:
4468     //
4469     //   #define LOG2OFe 1.4426950f
4470     //   t0 = Op * LOG2OFe
4471 
4472     // TODO: What fast-math-flags should be set here?
4473     SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
4474                              getF32Constant(DAG, 0x3fb8aa3b, dl));
4475     return getLimitedPrecisionExp2(t0, dl, DAG);
4476   }
4477 
4478   // No special expansion.
4479   return DAG.getNode(ISD::FEXP, dl, Op.getValueType(), Op);
4480 }
4481 
4482 /// expandLog - Lower a log intrinsic. Handles the special sequences for
4483 /// limited-precision mode.
4484 static SDValue expandLog(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4485                          const TargetLowering &TLI) {
4486   // TODO: What fast-math-flags should be set on the floating-point nodes?
4487 
4488   if (Op.getValueType() == MVT::f32 &&
4489       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4490     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4491 
4492     // Scale the exponent by log(2) [0.69314718f].
4493     SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
4494     SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
4495                                         getF32Constant(DAG, 0x3f317218, dl));
4496 
4497     // Get the significand and build it into a floating-point number with
4498     // exponent of 1.
4499     SDValue X = GetSignificand(DAG, Op1, dl);
4500 
4501     SDValue LogOfMantissa;
4502     if (LimitFloatPrecision <= 6) {
4503       // For floating-point precision of 6:
4504       //
4505       //   LogofMantissa =
4506       //     -1.1609546f +
4507       //       (1.4034025f - 0.23903021f * x) * x;
4508       //
4509       // error 0.0034276066, which is better than 8 bits
4510       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4511                                getF32Constant(DAG, 0xbe74c456, dl));
4512       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4513                                getF32Constant(DAG, 0x3fb3a2b1, dl));
4514       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4515       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4516                                   getF32Constant(DAG, 0x3f949a29, dl));
4517     } else if (LimitFloatPrecision <= 12) {
4518       // For floating-point precision of 12:
4519       //
4520       //   LogOfMantissa =
4521       //     -1.7417939f +
4522       //       (2.8212026f +
4523       //         (-1.4699568f +
4524       //           (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
4525       //
4526       // error 0.000061011436, which is 14 bits
4527       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4528                                getF32Constant(DAG, 0xbd67b6d6, dl));
4529       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4530                                getF32Constant(DAG, 0x3ee4f4b8, dl));
4531       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4532       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4533                                getF32Constant(DAG, 0x3fbc278b, dl));
4534       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4535       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4536                                getF32Constant(DAG, 0x40348e95, dl));
4537       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4538       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4539                                   getF32Constant(DAG, 0x3fdef31a, dl));
4540     } else { // LimitFloatPrecision <= 18
4541       // For floating-point precision of 18:
4542       //
4543       //   LogOfMantissa =
4544       //     -2.1072184f +
4545       //       (4.2372794f +
4546       //         (-3.7029485f +
4547       //           (2.2781945f +
4548       //             (-0.87823314f +
4549       //               (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
4550       //
4551       // error 0.0000023660568, which is better than 18 bits
4552       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4553                                getF32Constant(DAG, 0xbc91e5ac, dl));
4554       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4555                                getF32Constant(DAG, 0x3e4350aa, dl));
4556       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4557       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4558                                getF32Constant(DAG, 0x3f60d3e3, dl));
4559       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4560       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4561                                getF32Constant(DAG, 0x4011cdf0, dl));
4562       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4563       SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4564                                getF32Constant(DAG, 0x406cfd1c, dl));
4565       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4566       SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4567                                getF32Constant(DAG, 0x408797cb, dl));
4568       SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4569       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
4570                                   getF32Constant(DAG, 0x4006dcab, dl));
4571     }
4572 
4573     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, LogOfMantissa);
4574   }
4575 
4576   // No special expansion.
4577   return DAG.getNode(ISD::FLOG, dl, Op.getValueType(), Op);
4578 }
4579 
4580 /// expandLog2 - Lower a log2 intrinsic. Handles the special sequences for
4581 /// limited-precision mode.
4582 static SDValue expandLog2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4583                           const TargetLowering &TLI) {
4584   // TODO: What fast-math-flags should be set on the floating-point nodes?
4585 
4586   if (Op.getValueType() == MVT::f32 &&
4587       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4588     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4589 
4590     // Get the exponent.
4591     SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
4592 
4593     // Get the significand and build it into a floating-point number with
4594     // exponent of 1.
4595     SDValue X = GetSignificand(DAG, Op1, dl);
4596 
4597     // Different possible minimax approximations of significand in
4598     // floating-point for various degrees of accuracy over [1,2].
4599     SDValue Log2ofMantissa;
4600     if (LimitFloatPrecision <= 6) {
4601       // For floating-point precision of 6:
4602       //
4603       //   Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
4604       //
4605       // error 0.0049451742, which is more than 7 bits
4606       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4607                                getF32Constant(DAG, 0xbeb08fe0, dl));
4608       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4609                                getF32Constant(DAG, 0x40019463, dl));
4610       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4611       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4612                                    getF32Constant(DAG, 0x3fd6633d, dl));
4613     } else if (LimitFloatPrecision <= 12) {
4614       // For floating-point precision of 12:
4615       //
4616       //   Log2ofMantissa =
4617       //     -2.51285454f +
4618       //       (4.07009056f +
4619       //         (-2.12067489f +
4620       //           (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
4621       //
4622       // error 0.0000876136000, which is better than 13 bits
4623       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4624                                getF32Constant(DAG, 0xbda7262e, dl));
4625       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4626                                getF32Constant(DAG, 0x3f25280b, dl));
4627       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4628       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4629                                getF32Constant(DAG, 0x4007b923, dl));
4630       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4631       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4632                                getF32Constant(DAG, 0x40823e2f, dl));
4633       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4634       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4635                                    getF32Constant(DAG, 0x4020d29c, dl));
4636     } else { // LimitFloatPrecision <= 18
4637       // For floating-point precision of 18:
4638       //
4639       //   Log2ofMantissa =
4640       //     -3.0400495f +
4641       //       (6.1129976f +
4642       //         (-5.3420409f +
4643       //           (3.2865683f +
4644       //             (-1.2669343f +
4645       //               (0.27515199f -
4646       //                 0.25691327e-1f * x) * x) * x) * x) * x) * x;
4647       //
4648       // error 0.0000018516, which is better than 18 bits
4649       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4650                                getF32Constant(DAG, 0xbcd2769e, dl));
4651       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4652                                getF32Constant(DAG, 0x3e8ce0b9, dl));
4653       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4654       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4655                                getF32Constant(DAG, 0x3fa22ae7, dl));
4656       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4657       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4658                                getF32Constant(DAG, 0x40525723, dl));
4659       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4660       SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4661                                getF32Constant(DAG, 0x40aaf200, dl));
4662       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4663       SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4664                                getF32Constant(DAG, 0x40c39dad, dl));
4665       SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4666       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
4667                                    getF32Constant(DAG, 0x4042902c, dl));
4668     }
4669 
4670     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa);
4671   }
4672 
4673   // No special expansion.
4674   return DAG.getNode(ISD::FLOG2, dl, Op.getValueType(), Op);
4675 }
4676 
4677 /// expandLog10 - Lower a log10 intrinsic. Handles the special sequences for
4678 /// limited-precision mode.
4679 static SDValue expandLog10(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4680                            const TargetLowering &TLI) {
4681   // TODO: What fast-math-flags should be set on the floating-point nodes?
4682 
4683   if (Op.getValueType() == MVT::f32 &&
4684       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4685     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4686 
4687     // Scale the exponent by log10(2) [0.30102999f].
4688     SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
4689     SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
4690                                         getF32Constant(DAG, 0x3e9a209a, dl));
4691 
4692     // Get the significand and build it into a floating-point number with
4693     // exponent of 1.
4694     SDValue X = GetSignificand(DAG, Op1, dl);
4695 
4696     SDValue Log10ofMantissa;
4697     if (LimitFloatPrecision <= 6) {
4698       // For floating-point precision of 6:
4699       //
4700       //   Log10ofMantissa =
4701       //     -0.50419619f +
4702       //       (0.60948995f - 0.10380950f * x) * x;
4703       //
4704       // error 0.0014886165, which is 6 bits
4705       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4706                                getF32Constant(DAG, 0xbdd49a13, dl));
4707       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4708                                getF32Constant(DAG, 0x3f1c0789, dl));
4709       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4710       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4711                                     getF32Constant(DAG, 0x3f011300, dl));
4712     } else if (LimitFloatPrecision <= 12) {
4713       // For floating-point precision of 12:
4714       //
4715       //   Log10ofMantissa =
4716       //     -0.64831180f +
4717       //       (0.91751397f +
4718       //         (-0.31664806f + 0.47637168e-1f * x) * x) * x;
4719       //
4720       // error 0.00019228036, which is better than 12 bits
4721       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4722                                getF32Constant(DAG, 0x3d431f31, dl));
4723       SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
4724                                getF32Constant(DAG, 0x3ea21fb2, dl));
4725       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4726       SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4727                                getF32Constant(DAG, 0x3f6ae232, dl));
4728       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4729       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
4730                                     getF32Constant(DAG, 0x3f25f7c3, dl));
4731     } else { // LimitFloatPrecision <= 18
4732       // For floating-point precision of 18:
4733       //
4734       //   Log10ofMantissa =
4735       //     -0.84299375f +
4736       //       (1.5327582f +
4737       //         (-1.0688956f +
4738       //           (0.49102474f +
4739       //             (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
4740       //
4741       // error 0.0000037995730, which is better than 18 bits
4742       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4743                                getF32Constant(DAG, 0x3c5d51ce, dl));
4744       SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
4745                                getF32Constant(DAG, 0x3e00685a, dl));
4746       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4747       SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4748                                getF32Constant(DAG, 0x3efb6798, dl));
4749       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4750       SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
4751                                getF32Constant(DAG, 0x3f88d192, dl));
4752       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4753       SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4754                                getF32Constant(DAG, 0x3fc4316c, dl));
4755       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4756       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
4757                                     getF32Constant(DAG, 0x3f57ce70, dl));
4758     }
4759 
4760     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa);
4761   }
4762 
4763   // No special expansion.
4764   return DAG.getNode(ISD::FLOG10, dl, Op.getValueType(), Op);
4765 }
4766 
4767 /// expandExp2 - Lower an exp2 intrinsic. Handles the special sequences for
4768 /// limited-precision mode.
4769 static SDValue expandExp2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4770                           const TargetLowering &TLI) {
4771   if (Op.getValueType() == MVT::f32 &&
4772       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18)
4773     return getLimitedPrecisionExp2(Op, dl, DAG);
4774 
4775   // No special expansion.
4776   return DAG.getNode(ISD::FEXP2, dl, Op.getValueType(), Op);
4777 }
4778 
4779 /// visitPow - Lower a pow intrinsic. Handles the special sequences for
4780 /// limited-precision mode with x == 10.0f.
4781 static SDValue expandPow(const SDLoc &dl, SDValue LHS, SDValue RHS,
4782                          SelectionDAG &DAG, const TargetLowering &TLI) {
4783   bool IsExp10 = false;
4784   if (LHS.getValueType() == MVT::f32 && RHS.getValueType() == MVT::f32 &&
4785       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4786     if (ConstantFPSDNode *LHSC = dyn_cast<ConstantFPSDNode>(LHS)) {
4787       APFloat Ten(10.0f);
4788       IsExp10 = LHSC->isExactlyValue(Ten);
4789     }
4790   }
4791 
4792   // TODO: What fast-math-flags should be set on the FMUL node?
4793   if (IsExp10) {
4794     // Put the exponent in the right bit position for later addition to the
4795     // final result:
4796     //
4797     //   #define LOG2OF10 3.3219281f
4798     //   t0 = Op * LOG2OF10;
4799     SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, RHS,
4800                              getF32Constant(DAG, 0x40549a78, dl));
4801     return getLimitedPrecisionExp2(t0, dl, DAG);
4802   }
4803 
4804   // No special expansion.
4805   return DAG.getNode(ISD::FPOW, dl, LHS.getValueType(), LHS, RHS);
4806 }
4807 
4808 /// ExpandPowI - Expand a llvm.powi intrinsic.
4809 static SDValue ExpandPowI(const SDLoc &DL, SDValue LHS, SDValue RHS,
4810                           SelectionDAG &DAG) {
4811   // If RHS is a constant, we can expand this out to a multiplication tree,
4812   // otherwise we end up lowering to a call to __powidf2 (for example).  When
4813   // optimizing for size, we only want to do this if the expansion would produce
4814   // a small number of multiplies, otherwise we do the full expansion.
4815   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
4816     // Get the exponent as a positive value.
4817     unsigned Val = RHSC->getSExtValue();
4818     if ((int)Val < 0) Val = -Val;
4819 
4820     // powi(x, 0) -> 1.0
4821     if (Val == 0)
4822       return DAG.getConstantFP(1.0, DL, LHS.getValueType());
4823 
4824     const Function &F = DAG.getMachineFunction().getFunction();
4825     if (!F.optForSize() ||
4826         // If optimizing for size, don't insert too many multiplies.
4827         // This inserts up to 5 multiplies.
4828         countPopulation(Val) + Log2_32(Val) < 7) {
4829       // We use the simple binary decomposition method to generate the multiply
4830       // sequence.  There are more optimal ways to do this (for example,
4831       // powi(x,15) generates one more multiply than it should), but this has
4832       // the benefit of being both really simple and much better than a libcall.
4833       SDValue Res;  // Logically starts equal to 1.0
4834       SDValue CurSquare = LHS;
4835       // TODO: Intrinsics should have fast-math-flags that propagate to these
4836       // nodes.
4837       while (Val) {
4838         if (Val & 1) {
4839           if (Res.getNode())
4840             Res = DAG.getNode(ISD::FMUL, DL,Res.getValueType(), Res, CurSquare);
4841           else
4842             Res = CurSquare;  // 1.0*CurSquare.
4843         }
4844 
4845         CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(),
4846                                 CurSquare, CurSquare);
4847         Val >>= 1;
4848       }
4849 
4850       // If the original was negative, invert the result, producing 1/(x*x*x).
4851       if (RHSC->getSExtValue() < 0)
4852         Res = DAG.getNode(ISD::FDIV, DL, LHS.getValueType(),
4853                           DAG.getConstantFP(1.0, DL, LHS.getValueType()), Res);
4854       return Res;
4855     }
4856   }
4857 
4858   // Otherwise, expand to a libcall.
4859   return DAG.getNode(ISD::FPOWI, DL, LHS.getValueType(), LHS, RHS);
4860 }
4861 
4862 // getUnderlyingArgReg - Find underlying register used for a truncated or
4863 // bitcasted argument.
4864 static unsigned getUnderlyingArgReg(const SDValue &N) {
4865   switch (N.getOpcode()) {
4866   case ISD::CopyFromReg:
4867     return cast<RegisterSDNode>(N.getOperand(1))->getReg();
4868   case ISD::BITCAST:
4869   case ISD::AssertZext:
4870   case ISD::AssertSext:
4871   case ISD::TRUNCATE:
4872     return getUnderlyingArgReg(N.getOperand(0));
4873   default:
4874     return 0;
4875   }
4876 }
4877 
4878 /// If the DbgValueInst is a dbg_value of a function argument, create the
4879 /// corresponding DBG_VALUE machine instruction for it now.  At the end of
4880 /// instruction selection, they will be inserted to the entry BB.
4881 bool SelectionDAGBuilder::EmitFuncArgumentDbgValue(
4882     const Value *V, DILocalVariable *Variable, DIExpression *Expr,
4883     DILocation *DL, bool IsDbgDeclare, const SDValue &N) {
4884   const Argument *Arg = dyn_cast<Argument>(V);
4885   if (!Arg)
4886     return false;
4887 
4888   MachineFunction &MF = DAG.getMachineFunction();
4889   const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo();
4890 
4891   bool IsIndirect = false;
4892   Optional<MachineOperand> Op;
4893   // Some arguments' frame index is recorded during argument lowering.
4894   int FI = FuncInfo.getArgumentFrameIndex(Arg);
4895   if (FI != std::numeric_limits<int>::max())
4896     Op = MachineOperand::CreateFI(FI);
4897 
4898   if (!Op && N.getNode()) {
4899     unsigned Reg = getUnderlyingArgReg(N);
4900     if (Reg && TargetRegisterInfo::isVirtualRegister(Reg)) {
4901       MachineRegisterInfo &RegInfo = MF.getRegInfo();
4902       unsigned PR = RegInfo.getLiveInPhysReg(Reg);
4903       if (PR)
4904         Reg = PR;
4905     }
4906     if (Reg) {
4907       Op = MachineOperand::CreateReg(Reg, false);
4908       IsIndirect = IsDbgDeclare;
4909     }
4910   }
4911 
4912   if (!Op && N.getNode())
4913     // Check if frame index is available.
4914     if (LoadSDNode *LNode = dyn_cast<LoadSDNode>(N.getNode()))
4915       if (FrameIndexSDNode *FINode =
4916           dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
4917         Op = MachineOperand::CreateFI(FINode->getIndex());
4918 
4919   if (!Op) {
4920     // Check if ValueMap has reg number.
4921     DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
4922     if (VMI != FuncInfo.ValueMap.end()) {
4923       const auto &TLI = DAG.getTargetLoweringInfo();
4924       RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), VMI->second,
4925                        V->getType(), isABIRegCopy(V));
4926       if (RFV.occupiesMultipleRegs()) {
4927         unsigned Offset = 0;
4928         for (auto RegAndSize : RFV.getRegsAndSizes()) {
4929           Op = MachineOperand::CreateReg(RegAndSize.first, false);
4930           auto FragmentExpr = DIExpression::createFragmentExpression(
4931               Expr, Offset, RegAndSize.second);
4932           if (!FragmentExpr)
4933             continue;
4934           FuncInfo.ArgDbgValues.push_back(
4935               BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsDbgDeclare,
4936                       Op->getReg(), Variable, *FragmentExpr));
4937           Offset += RegAndSize.second;
4938         }
4939         return true;
4940       }
4941       Op = MachineOperand::CreateReg(VMI->second, false);
4942       IsIndirect = IsDbgDeclare;
4943     }
4944   }
4945 
4946   if (!Op)
4947     return false;
4948 
4949   assert(Variable->isValidLocationForIntrinsic(DL) &&
4950          "Expected inlined-at fields to agree");
4951   if (Op->isReg())
4952     FuncInfo.ArgDbgValues.push_back(
4953         BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsIndirect,
4954                 Op->getReg(), Variable, Expr));
4955   else
4956     FuncInfo.ArgDbgValues.push_back(
4957         BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE))
4958             .add(*Op)
4959             .addImm(0)
4960             .addMetadata(Variable)
4961             .addMetadata(Expr));
4962 
4963   return true;
4964 }
4965 
4966 /// Return the appropriate SDDbgValue based on N.
4967 SDDbgValue *SelectionDAGBuilder::getDbgValue(SDValue N,
4968                                              DILocalVariable *Variable,
4969                                              DIExpression *Expr,
4970                                              const DebugLoc &dl,
4971                                              unsigned DbgSDNodeOrder) {
4972   if (auto *FISDN = dyn_cast<FrameIndexSDNode>(N.getNode())) {
4973     // Construct a FrameIndexDbgValue for FrameIndexSDNodes so we can describe
4974     // stack slot locations as such instead of as indirectly addressed
4975     // locations.
4976     return DAG.getFrameIndexDbgValue(Variable, Expr, FISDN->getIndex(), dl,
4977                                      DbgSDNodeOrder);
4978   }
4979   return DAG.getDbgValue(Variable, Expr, N.getNode(), N.getResNo(), false, dl,
4980                          DbgSDNodeOrder);
4981 }
4982 
4983 // VisualStudio defines setjmp as _setjmp
4984 #if defined(_MSC_VER) && defined(setjmp) && \
4985                          !defined(setjmp_undefined_for_msvc)
4986 #  pragma push_macro("setjmp")
4987 #  undef setjmp
4988 #  define setjmp_undefined_for_msvc
4989 #endif
4990 
4991 /// Lower the call to the specified intrinsic function. If we want to emit this
4992 /// as a call to a named external function, return the name. Otherwise, lower it
4993 /// and return null.
4994 const char *
4995 SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
4996   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4997   SDLoc sdl = getCurSDLoc();
4998   DebugLoc dl = getCurDebugLoc();
4999   SDValue Res;
5000 
5001   switch (Intrinsic) {
5002   default:
5003     // By default, turn this into a target intrinsic node.
5004     visitTargetIntrinsic(I, Intrinsic);
5005     return nullptr;
5006   case Intrinsic::vastart:  visitVAStart(I); return nullptr;
5007   case Intrinsic::vaend:    visitVAEnd(I); return nullptr;
5008   case Intrinsic::vacopy:   visitVACopy(I); return nullptr;
5009   case Intrinsic::returnaddress:
5010     setValue(&I, DAG.getNode(ISD::RETURNADDR, sdl,
5011                              TLI.getPointerTy(DAG.getDataLayout()),
5012                              getValue(I.getArgOperand(0))));
5013     return nullptr;
5014   case Intrinsic::addressofreturnaddress:
5015     setValue(&I, DAG.getNode(ISD::ADDROFRETURNADDR, sdl,
5016                              TLI.getPointerTy(DAG.getDataLayout())));
5017     return nullptr;
5018   case Intrinsic::frameaddress:
5019     setValue(&I, DAG.getNode(ISD::FRAMEADDR, sdl,
5020                              TLI.getPointerTy(DAG.getDataLayout()),
5021                              getValue(I.getArgOperand(0))));
5022     return nullptr;
5023   case Intrinsic::read_register: {
5024     Value *Reg = I.getArgOperand(0);
5025     SDValue Chain = getRoot();
5026     SDValue RegName =
5027         DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata()));
5028     EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
5029     Res = DAG.getNode(ISD::READ_REGISTER, sdl,
5030       DAG.getVTList(VT, MVT::Other), Chain, RegName);
5031     setValue(&I, Res);
5032     DAG.setRoot(Res.getValue(1));
5033     return nullptr;
5034   }
5035   case Intrinsic::write_register: {
5036     Value *Reg = I.getArgOperand(0);
5037     Value *RegValue = I.getArgOperand(1);
5038     SDValue Chain = getRoot();
5039     SDValue RegName =
5040         DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata()));
5041     DAG.setRoot(DAG.getNode(ISD::WRITE_REGISTER, sdl, MVT::Other, Chain,
5042                             RegName, getValue(RegValue)));
5043     return nullptr;
5044   }
5045   case Intrinsic::setjmp:
5046     return &"_setjmp"[!TLI.usesUnderscoreSetJmp()];
5047   case Intrinsic::longjmp:
5048     return &"_longjmp"[!TLI.usesUnderscoreLongJmp()];
5049   case Intrinsic::memcpy: {
5050     const auto &MCI = cast<MemCpyInst>(I);
5051     SDValue Op1 = getValue(I.getArgOperand(0));
5052     SDValue Op2 = getValue(I.getArgOperand(1));
5053     SDValue Op3 = getValue(I.getArgOperand(2));
5054     // @llvm.memcpy defines 0 and 1 to both mean no alignment.
5055     unsigned DstAlign = std::max<unsigned>(MCI.getDestAlignment(), 1);
5056     unsigned SrcAlign = std::max<unsigned>(MCI.getSourceAlignment(), 1);
5057     unsigned Align = MinAlign(DstAlign, SrcAlign);
5058     bool isVol = MCI.isVolatile();
5059     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5060     // FIXME: Support passing different dest/src alignments to the memcpy DAG
5061     // node.
5062     SDValue MC = DAG.getMemcpy(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
5063                                false, isTC,
5064                                MachinePointerInfo(I.getArgOperand(0)),
5065                                MachinePointerInfo(I.getArgOperand(1)));
5066     updateDAGForMaybeTailCall(MC);
5067     return nullptr;
5068   }
5069   case Intrinsic::memset: {
5070     const auto &MSI = cast<MemSetInst>(I);
5071     SDValue Op1 = getValue(I.getArgOperand(0));
5072     SDValue Op2 = getValue(I.getArgOperand(1));
5073     SDValue Op3 = getValue(I.getArgOperand(2));
5074     // @llvm.memset defines 0 and 1 to both mean no alignment.
5075     unsigned Align = std::max<unsigned>(MSI.getDestAlignment(), 1);
5076     bool isVol = MSI.isVolatile();
5077     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5078     SDValue MS = DAG.getMemset(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
5079                                isTC, MachinePointerInfo(I.getArgOperand(0)));
5080     updateDAGForMaybeTailCall(MS);
5081     return nullptr;
5082   }
5083   case Intrinsic::memmove: {
5084     const auto &MMI = cast<MemMoveInst>(I);
5085     SDValue Op1 = getValue(I.getArgOperand(0));
5086     SDValue Op2 = getValue(I.getArgOperand(1));
5087     SDValue Op3 = getValue(I.getArgOperand(2));
5088     // @llvm.memmove defines 0 and 1 to both mean no alignment.
5089     unsigned DstAlign = std::max<unsigned>(MMI.getDestAlignment(), 1);
5090     unsigned SrcAlign = std::max<unsigned>(MMI.getSourceAlignment(), 1);
5091     unsigned Align = MinAlign(DstAlign, SrcAlign);
5092     bool isVol = MMI.isVolatile();
5093     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5094     // FIXME: Support passing different dest/src alignments to the memmove DAG
5095     // node.
5096     SDValue MM = DAG.getMemmove(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
5097                                 isTC, MachinePointerInfo(I.getArgOperand(0)),
5098                                 MachinePointerInfo(I.getArgOperand(1)));
5099     updateDAGForMaybeTailCall(MM);
5100     return nullptr;
5101   }
5102   case Intrinsic::memcpy_element_unordered_atomic: {
5103     const AtomicMemCpyInst &MI = cast<AtomicMemCpyInst>(I);
5104     SDValue Dst = getValue(MI.getRawDest());
5105     SDValue Src = getValue(MI.getRawSource());
5106     SDValue Length = getValue(MI.getLength());
5107 
5108     unsigned DstAlign = MI.getDestAlignment();
5109     unsigned SrcAlign = MI.getSourceAlignment();
5110     Type *LengthTy = MI.getLength()->getType();
5111     unsigned ElemSz = MI.getElementSizeInBytes();
5112     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5113     SDValue MC = DAG.getAtomicMemcpy(getRoot(), sdl, Dst, DstAlign, Src,
5114                                      SrcAlign, Length, LengthTy, ElemSz, isTC,
5115                                      MachinePointerInfo(MI.getRawDest()),
5116                                      MachinePointerInfo(MI.getRawSource()));
5117     updateDAGForMaybeTailCall(MC);
5118     return nullptr;
5119   }
5120   case Intrinsic::memmove_element_unordered_atomic: {
5121     auto &MI = cast<AtomicMemMoveInst>(I);
5122     SDValue Dst = getValue(MI.getRawDest());
5123     SDValue Src = getValue(MI.getRawSource());
5124     SDValue Length = getValue(MI.getLength());
5125 
5126     unsigned DstAlign = MI.getDestAlignment();
5127     unsigned SrcAlign = MI.getSourceAlignment();
5128     Type *LengthTy = MI.getLength()->getType();
5129     unsigned ElemSz = MI.getElementSizeInBytes();
5130     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5131     SDValue MC = DAG.getAtomicMemmove(getRoot(), sdl, Dst, DstAlign, Src,
5132                                       SrcAlign, Length, LengthTy, ElemSz, isTC,
5133                                       MachinePointerInfo(MI.getRawDest()),
5134                                       MachinePointerInfo(MI.getRawSource()));
5135     updateDAGForMaybeTailCall(MC);
5136     return nullptr;
5137   }
5138   case Intrinsic::memset_element_unordered_atomic: {
5139     auto &MI = cast<AtomicMemSetInst>(I);
5140     SDValue Dst = getValue(MI.getRawDest());
5141     SDValue Val = getValue(MI.getValue());
5142     SDValue Length = getValue(MI.getLength());
5143 
5144     unsigned DstAlign = MI.getDestAlignment();
5145     Type *LengthTy = MI.getLength()->getType();
5146     unsigned ElemSz = MI.getElementSizeInBytes();
5147     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5148     SDValue MC = DAG.getAtomicMemset(getRoot(), sdl, Dst, DstAlign, Val, Length,
5149                                      LengthTy, ElemSz, isTC,
5150                                      MachinePointerInfo(MI.getRawDest()));
5151     updateDAGForMaybeTailCall(MC);
5152     return nullptr;
5153   }
5154   case Intrinsic::dbg_addr:
5155   case Intrinsic::dbg_declare: {
5156     const DbgInfoIntrinsic &DI = cast<DbgInfoIntrinsic>(I);
5157     DILocalVariable *Variable = DI.getVariable();
5158     DIExpression *Expression = DI.getExpression();
5159     dropDanglingDebugInfo(Variable, Expression);
5160     assert(Variable && "Missing variable");
5161 
5162     // Check if address has undef value.
5163     const Value *Address = DI.getVariableLocation();
5164     if (!Address || isa<UndefValue>(Address) ||
5165         (Address->use_empty() && !isa<Argument>(Address))) {
5166       LLVM_DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
5167       return nullptr;
5168     }
5169 
5170     bool isParameter = Variable->isParameter() || isa<Argument>(Address);
5171 
5172     // Check if this variable can be described by a frame index, typically
5173     // either as a static alloca or a byval parameter.
5174     int FI = std::numeric_limits<int>::max();
5175     if (const auto *AI =
5176             dyn_cast<AllocaInst>(Address->stripInBoundsConstantOffsets())) {
5177       if (AI->isStaticAlloca()) {
5178         auto I = FuncInfo.StaticAllocaMap.find(AI);
5179         if (I != FuncInfo.StaticAllocaMap.end())
5180           FI = I->second;
5181       }
5182     } else if (const auto *Arg = dyn_cast<Argument>(
5183                    Address->stripInBoundsConstantOffsets())) {
5184       FI = FuncInfo.getArgumentFrameIndex(Arg);
5185     }
5186 
5187     // llvm.dbg.addr is control dependent and always generates indirect
5188     // DBG_VALUE instructions. llvm.dbg.declare is handled as a frame index in
5189     // the MachineFunction variable table.
5190     if (FI != std::numeric_limits<int>::max()) {
5191       if (Intrinsic == Intrinsic::dbg_addr) {
5192          SDDbgValue *SDV = DAG.getFrameIndexDbgValue(Variable, Expression,
5193                                                      FI, dl, SDNodeOrder);
5194          DAG.AddDbgValue(SDV, getRoot().getNode(), isParameter);
5195       }
5196       return nullptr;
5197     }
5198 
5199     SDValue &N = NodeMap[Address];
5200     if (!N.getNode() && isa<Argument>(Address))
5201       // Check unused arguments map.
5202       N = UnusedArgNodeMap[Address];
5203     SDDbgValue *SDV;
5204     if (N.getNode()) {
5205       if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
5206         Address = BCI->getOperand(0);
5207       // Parameters are handled specially.
5208       auto FINode = dyn_cast<FrameIndexSDNode>(N.getNode());
5209       if (isParameter && FINode) {
5210         // Byval parameter. We have a frame index at this point.
5211         SDV = DAG.getFrameIndexDbgValue(Variable, Expression,
5212                                         FINode->getIndex(), dl, SDNodeOrder);
5213       } else if (isa<Argument>(Address)) {
5214         // Address is an argument, so try to emit its dbg value using
5215         // virtual register info from the FuncInfo.ValueMap.
5216         EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, true, N);
5217         return nullptr;
5218       } else {
5219         SDV = DAG.getDbgValue(Variable, Expression, N.getNode(), N.getResNo(),
5220                               true, dl, SDNodeOrder);
5221       }
5222       DAG.AddDbgValue(SDV, N.getNode(), isParameter);
5223     } else {
5224       // If Address is an argument then try to emit its dbg value using
5225       // virtual register info from the FuncInfo.ValueMap.
5226       if (!EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, true,
5227                                     N)) {
5228         LLVM_DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
5229       }
5230     }
5231     return nullptr;
5232   }
5233   case Intrinsic::dbg_label: {
5234     const DbgLabelInst &DI = cast<DbgLabelInst>(I);
5235     DILabel *Label = DI.getLabel();
5236     assert(Label && "Missing label");
5237 
5238     SDDbgLabel *SDV;
5239     SDV = DAG.getDbgLabel(Label, dl, SDNodeOrder);
5240     DAG.AddDbgLabel(SDV);
5241     return nullptr;
5242   }
5243   case Intrinsic::dbg_value: {
5244     const DbgValueInst &DI = cast<DbgValueInst>(I);
5245     assert(DI.getVariable() && "Missing variable");
5246 
5247     DILocalVariable *Variable = DI.getVariable();
5248     DIExpression *Expression = DI.getExpression();
5249     dropDanglingDebugInfo(Variable, Expression);
5250     const Value *V = DI.getValue();
5251     if (!V)
5252       return nullptr;
5253 
5254     SDDbgValue *SDV;
5255     if (isa<ConstantInt>(V) || isa<ConstantFP>(V) || isa<UndefValue>(V)) {
5256       SDV = DAG.getConstantDbgValue(Variable, Expression, V, dl, SDNodeOrder);
5257       DAG.AddDbgValue(SDV, nullptr, false);
5258       return nullptr;
5259     }
5260 
5261     // Do not use getValue() in here; we don't want to generate code at
5262     // this point if it hasn't been done yet.
5263     SDValue N = NodeMap[V];
5264     if (!N.getNode() && isa<Argument>(V)) // Check unused arguments map.
5265       N = UnusedArgNodeMap[V];
5266     if (N.getNode()) {
5267       if (EmitFuncArgumentDbgValue(V, Variable, Expression, dl, false, N))
5268         return nullptr;
5269       SDV = getDbgValue(N, Variable, Expression, dl, SDNodeOrder);
5270       DAG.AddDbgValue(SDV, N.getNode(), false);
5271       return nullptr;
5272     }
5273 
5274     // PHI nodes have already been selected, so we should know which VReg that
5275     // is assigns to already.
5276     if (isa<PHINode>(V)) {
5277       auto VMI = FuncInfo.ValueMap.find(V);
5278       if (VMI != FuncInfo.ValueMap.end()) {
5279         unsigned Reg = VMI->second;
5280         // The PHI node may be split up into several MI PHI nodes (in
5281         // FunctionLoweringInfo::set).
5282         RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), Reg,
5283                          V->getType(), false);
5284         if (RFV.occupiesMultipleRegs()) {
5285           unsigned Offset = 0;
5286           unsigned BitsToDescribe = 0;
5287           if (auto VarSize = Variable->getSizeInBits())
5288             BitsToDescribe = *VarSize;
5289           if (auto Fragment = Expression->getFragmentInfo())
5290             BitsToDescribe = Fragment->SizeInBits;
5291           for (auto RegAndSize : RFV.getRegsAndSizes()) {
5292             unsigned RegisterSize = RegAndSize.second;
5293             // Bail out if all bits are described already.
5294             if (Offset >= BitsToDescribe)
5295               break;
5296             unsigned FragmentSize = (Offset + RegisterSize > BitsToDescribe)
5297                 ? BitsToDescribe - Offset
5298                 : RegisterSize;
5299             auto FragmentExpr = DIExpression::createFragmentExpression(
5300                 Expression, Offset, FragmentSize);
5301             if (!FragmentExpr)
5302                 continue;
5303             SDV = DAG.getVRegDbgValue(Variable, *FragmentExpr, RegAndSize.first,
5304                                       false, dl, SDNodeOrder);
5305             DAG.AddDbgValue(SDV, nullptr, false);
5306             Offset += RegisterSize;
5307           }
5308         } else {
5309           SDV = DAG.getVRegDbgValue(Variable, Expression, Reg, false, dl,
5310                                     SDNodeOrder);
5311           DAG.AddDbgValue(SDV, nullptr, false);
5312         }
5313         return nullptr;
5314       }
5315     }
5316 
5317     // TODO: When we get here we will either drop the dbg.value completely, or
5318     // we try to move it forward by letting it dangle for awhile. So we should
5319     // probably add an extra DbgValue to the DAG here, with a reference to
5320     // "noreg", to indicate that we have lost the debug location for the
5321     // variable.
5322 
5323     if (!V->use_empty() ) {
5324       // Do not call getValue(V) yet, as we don't want to generate code.
5325       // Remember it for later.
5326       DanglingDebugInfo DDI(&DI, dl, SDNodeOrder);
5327       DanglingDebugInfoMap[V].push_back(DDI);
5328       return nullptr;
5329     }
5330 
5331     LLVM_DEBUG(dbgs() << "Dropping debug location info for:\n  " << DI << "\n");
5332     LLVM_DEBUG(dbgs() << "  Last seen at:\n    " << *V << "\n");
5333     return nullptr;
5334   }
5335 
5336   case Intrinsic::eh_typeid_for: {
5337     // Find the type id for the given typeinfo.
5338     GlobalValue *GV = ExtractTypeInfo(I.getArgOperand(0));
5339     unsigned TypeID = DAG.getMachineFunction().getTypeIDFor(GV);
5340     Res = DAG.getConstant(TypeID, sdl, MVT::i32);
5341     setValue(&I, Res);
5342     return nullptr;
5343   }
5344 
5345   case Intrinsic::eh_return_i32:
5346   case Intrinsic::eh_return_i64:
5347     DAG.getMachineFunction().setCallsEHReturn(true);
5348     DAG.setRoot(DAG.getNode(ISD::EH_RETURN, sdl,
5349                             MVT::Other,
5350                             getControlRoot(),
5351                             getValue(I.getArgOperand(0)),
5352                             getValue(I.getArgOperand(1))));
5353     return nullptr;
5354   case Intrinsic::eh_unwind_init:
5355     DAG.getMachineFunction().setCallsUnwindInit(true);
5356     return nullptr;
5357   case Intrinsic::eh_dwarf_cfa:
5358     setValue(&I, DAG.getNode(ISD::EH_DWARF_CFA, sdl,
5359                              TLI.getPointerTy(DAG.getDataLayout()),
5360                              getValue(I.getArgOperand(0))));
5361     return nullptr;
5362   case Intrinsic::eh_sjlj_callsite: {
5363     MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
5364     ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(0));
5365     assert(CI && "Non-constant call site value in eh.sjlj.callsite!");
5366     assert(MMI.getCurrentCallSite() == 0 && "Overlapping call sites!");
5367 
5368     MMI.setCurrentCallSite(CI->getZExtValue());
5369     return nullptr;
5370   }
5371   case Intrinsic::eh_sjlj_functioncontext: {
5372     // Get and store the index of the function context.
5373     MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
5374     AllocaInst *FnCtx =
5375       cast<AllocaInst>(I.getArgOperand(0)->stripPointerCasts());
5376     int FI = FuncInfo.StaticAllocaMap[FnCtx];
5377     MFI.setFunctionContextIndex(FI);
5378     return nullptr;
5379   }
5380   case Intrinsic::eh_sjlj_setjmp: {
5381     SDValue Ops[2];
5382     Ops[0] = getRoot();
5383     Ops[1] = getValue(I.getArgOperand(0));
5384     SDValue Op = DAG.getNode(ISD::EH_SJLJ_SETJMP, sdl,
5385                              DAG.getVTList(MVT::i32, MVT::Other), Ops);
5386     setValue(&I, Op.getValue(0));
5387     DAG.setRoot(Op.getValue(1));
5388     return nullptr;
5389   }
5390   case Intrinsic::eh_sjlj_longjmp:
5391     DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_LONGJMP, sdl, MVT::Other,
5392                             getRoot(), getValue(I.getArgOperand(0))));
5393     return nullptr;
5394   case Intrinsic::eh_sjlj_setup_dispatch:
5395     DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_SETUP_DISPATCH, sdl, MVT::Other,
5396                             getRoot()));
5397     return nullptr;
5398   case Intrinsic::masked_gather:
5399     visitMaskedGather(I);
5400     return nullptr;
5401   case Intrinsic::masked_load:
5402     visitMaskedLoad(I);
5403     return nullptr;
5404   case Intrinsic::masked_scatter:
5405     visitMaskedScatter(I);
5406     return nullptr;
5407   case Intrinsic::masked_store:
5408     visitMaskedStore(I);
5409     return nullptr;
5410   case Intrinsic::masked_expandload:
5411     visitMaskedLoad(I, true /* IsExpanding */);
5412     return nullptr;
5413   case Intrinsic::masked_compressstore:
5414     visitMaskedStore(I, true /* IsCompressing */);
5415     return nullptr;
5416   case Intrinsic::x86_mmx_pslli_w:
5417   case Intrinsic::x86_mmx_pslli_d:
5418   case Intrinsic::x86_mmx_pslli_q:
5419   case Intrinsic::x86_mmx_psrli_w:
5420   case Intrinsic::x86_mmx_psrli_d:
5421   case Intrinsic::x86_mmx_psrli_q:
5422   case Intrinsic::x86_mmx_psrai_w:
5423   case Intrinsic::x86_mmx_psrai_d: {
5424     SDValue ShAmt = getValue(I.getArgOperand(1));
5425     if (isa<ConstantSDNode>(ShAmt)) {
5426       visitTargetIntrinsic(I, Intrinsic);
5427       return nullptr;
5428     }
5429     unsigned NewIntrinsic = 0;
5430     EVT ShAmtVT = MVT::v2i32;
5431     switch (Intrinsic) {
5432     case Intrinsic::x86_mmx_pslli_w:
5433       NewIntrinsic = Intrinsic::x86_mmx_psll_w;
5434       break;
5435     case Intrinsic::x86_mmx_pslli_d:
5436       NewIntrinsic = Intrinsic::x86_mmx_psll_d;
5437       break;
5438     case Intrinsic::x86_mmx_pslli_q:
5439       NewIntrinsic = Intrinsic::x86_mmx_psll_q;
5440       break;
5441     case Intrinsic::x86_mmx_psrli_w:
5442       NewIntrinsic = Intrinsic::x86_mmx_psrl_w;
5443       break;
5444     case Intrinsic::x86_mmx_psrli_d:
5445       NewIntrinsic = Intrinsic::x86_mmx_psrl_d;
5446       break;
5447     case Intrinsic::x86_mmx_psrli_q:
5448       NewIntrinsic = Intrinsic::x86_mmx_psrl_q;
5449       break;
5450     case Intrinsic::x86_mmx_psrai_w:
5451       NewIntrinsic = Intrinsic::x86_mmx_psra_w;
5452       break;
5453     case Intrinsic::x86_mmx_psrai_d:
5454       NewIntrinsic = Intrinsic::x86_mmx_psra_d;
5455       break;
5456     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5457     }
5458 
5459     // The vector shift intrinsics with scalars uses 32b shift amounts but
5460     // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
5461     // to be zero.
5462     // We must do this early because v2i32 is not a legal type.
5463     SDValue ShOps[2];
5464     ShOps[0] = ShAmt;
5465     ShOps[1] = DAG.getConstant(0, sdl, MVT::i32);
5466     ShAmt =  DAG.getBuildVector(ShAmtVT, sdl, ShOps);
5467     EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
5468     ShAmt = DAG.getNode(ISD::BITCAST, sdl, DestVT, ShAmt);
5469     Res = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, sdl, DestVT,
5470                        DAG.getConstant(NewIntrinsic, sdl, MVT::i32),
5471                        getValue(I.getArgOperand(0)), ShAmt);
5472     setValue(&I, Res);
5473     return nullptr;
5474   }
5475   case Intrinsic::powi:
5476     setValue(&I, ExpandPowI(sdl, getValue(I.getArgOperand(0)),
5477                             getValue(I.getArgOperand(1)), DAG));
5478     return nullptr;
5479   case Intrinsic::log:
5480     setValue(&I, expandLog(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5481     return nullptr;
5482   case Intrinsic::log2:
5483     setValue(&I, expandLog2(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5484     return nullptr;
5485   case Intrinsic::log10:
5486     setValue(&I, expandLog10(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5487     return nullptr;
5488   case Intrinsic::exp:
5489     setValue(&I, expandExp(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5490     return nullptr;
5491   case Intrinsic::exp2:
5492     setValue(&I, expandExp2(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5493     return nullptr;
5494   case Intrinsic::pow:
5495     setValue(&I, expandPow(sdl, getValue(I.getArgOperand(0)),
5496                            getValue(I.getArgOperand(1)), DAG, TLI));
5497     return nullptr;
5498   case Intrinsic::sqrt:
5499   case Intrinsic::fabs:
5500   case Intrinsic::sin:
5501   case Intrinsic::cos:
5502   case Intrinsic::floor:
5503   case Intrinsic::ceil:
5504   case Intrinsic::trunc:
5505   case Intrinsic::rint:
5506   case Intrinsic::nearbyint:
5507   case Intrinsic::round:
5508   case Intrinsic::canonicalize: {
5509     unsigned Opcode;
5510     switch (Intrinsic) {
5511     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5512     case Intrinsic::sqrt:      Opcode = ISD::FSQRT;      break;
5513     case Intrinsic::fabs:      Opcode = ISD::FABS;       break;
5514     case Intrinsic::sin:       Opcode = ISD::FSIN;       break;
5515     case Intrinsic::cos:       Opcode = ISD::FCOS;       break;
5516     case Intrinsic::floor:     Opcode = ISD::FFLOOR;     break;
5517     case Intrinsic::ceil:      Opcode = ISD::FCEIL;      break;
5518     case Intrinsic::trunc:     Opcode = ISD::FTRUNC;     break;
5519     case Intrinsic::rint:      Opcode = ISD::FRINT;      break;
5520     case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT; break;
5521     case Intrinsic::round:     Opcode = ISD::FROUND;     break;
5522     case Intrinsic::canonicalize: Opcode = ISD::FCANONICALIZE; break;
5523     }
5524 
5525     setValue(&I, DAG.getNode(Opcode, sdl,
5526                              getValue(I.getArgOperand(0)).getValueType(),
5527                              getValue(I.getArgOperand(0))));
5528     return nullptr;
5529   }
5530   case Intrinsic::minnum: {
5531     auto VT = getValue(I.getArgOperand(0)).getValueType();
5532     unsigned Opc =
5533         I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT)
5534             ? ISD::FMINNAN
5535             : ISD::FMINNUM;
5536     setValue(&I, DAG.getNode(Opc, sdl, VT,
5537                              getValue(I.getArgOperand(0)),
5538                              getValue(I.getArgOperand(1))));
5539     return nullptr;
5540   }
5541   case Intrinsic::maxnum: {
5542     auto VT = getValue(I.getArgOperand(0)).getValueType();
5543     unsigned Opc =
5544         I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT)
5545             ? ISD::FMAXNAN
5546             : ISD::FMAXNUM;
5547     setValue(&I, DAG.getNode(Opc, sdl, VT,
5548                              getValue(I.getArgOperand(0)),
5549                              getValue(I.getArgOperand(1))));
5550     return nullptr;
5551   }
5552   case Intrinsic::copysign:
5553     setValue(&I, DAG.getNode(ISD::FCOPYSIGN, sdl,
5554                              getValue(I.getArgOperand(0)).getValueType(),
5555                              getValue(I.getArgOperand(0)),
5556                              getValue(I.getArgOperand(1))));
5557     return nullptr;
5558   case Intrinsic::fma:
5559     setValue(&I, DAG.getNode(ISD::FMA, sdl,
5560                              getValue(I.getArgOperand(0)).getValueType(),
5561                              getValue(I.getArgOperand(0)),
5562                              getValue(I.getArgOperand(1)),
5563                              getValue(I.getArgOperand(2))));
5564     return nullptr;
5565   case Intrinsic::experimental_constrained_fadd:
5566   case Intrinsic::experimental_constrained_fsub:
5567   case Intrinsic::experimental_constrained_fmul:
5568   case Intrinsic::experimental_constrained_fdiv:
5569   case Intrinsic::experimental_constrained_frem:
5570   case Intrinsic::experimental_constrained_fma:
5571   case Intrinsic::experimental_constrained_sqrt:
5572   case Intrinsic::experimental_constrained_pow:
5573   case Intrinsic::experimental_constrained_powi:
5574   case Intrinsic::experimental_constrained_sin:
5575   case Intrinsic::experimental_constrained_cos:
5576   case Intrinsic::experimental_constrained_exp:
5577   case Intrinsic::experimental_constrained_exp2:
5578   case Intrinsic::experimental_constrained_log:
5579   case Intrinsic::experimental_constrained_log10:
5580   case Intrinsic::experimental_constrained_log2:
5581   case Intrinsic::experimental_constrained_rint:
5582   case Intrinsic::experimental_constrained_nearbyint:
5583     visitConstrainedFPIntrinsic(cast<ConstrainedFPIntrinsic>(I));
5584     return nullptr;
5585   case Intrinsic::fmuladd: {
5586     EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
5587     if (TM.Options.AllowFPOpFusion != FPOpFusion::Strict &&
5588         TLI.isFMAFasterThanFMulAndFAdd(VT)) {
5589       setValue(&I, DAG.getNode(ISD::FMA, sdl,
5590                                getValue(I.getArgOperand(0)).getValueType(),
5591                                getValue(I.getArgOperand(0)),
5592                                getValue(I.getArgOperand(1)),
5593                                getValue(I.getArgOperand(2))));
5594     } else {
5595       // TODO: Intrinsic calls should have fast-math-flags.
5596       SDValue Mul = DAG.getNode(ISD::FMUL, sdl,
5597                                 getValue(I.getArgOperand(0)).getValueType(),
5598                                 getValue(I.getArgOperand(0)),
5599                                 getValue(I.getArgOperand(1)));
5600       SDValue Add = DAG.getNode(ISD::FADD, sdl,
5601                                 getValue(I.getArgOperand(0)).getValueType(),
5602                                 Mul,
5603                                 getValue(I.getArgOperand(2)));
5604       setValue(&I, Add);
5605     }
5606     return nullptr;
5607   }
5608   case Intrinsic::convert_to_fp16:
5609     setValue(&I, DAG.getNode(ISD::BITCAST, sdl, MVT::i16,
5610                              DAG.getNode(ISD::FP_ROUND, sdl, MVT::f16,
5611                                          getValue(I.getArgOperand(0)),
5612                                          DAG.getTargetConstant(0, sdl,
5613                                                                MVT::i32))));
5614     return nullptr;
5615   case Intrinsic::convert_from_fp16:
5616     setValue(&I, DAG.getNode(ISD::FP_EXTEND, sdl,
5617                              TLI.getValueType(DAG.getDataLayout(), I.getType()),
5618                              DAG.getNode(ISD::BITCAST, sdl, MVT::f16,
5619                                          getValue(I.getArgOperand(0)))));
5620     return nullptr;
5621   case Intrinsic::pcmarker: {
5622     SDValue Tmp = getValue(I.getArgOperand(0));
5623     DAG.setRoot(DAG.getNode(ISD::PCMARKER, sdl, MVT::Other, getRoot(), Tmp));
5624     return nullptr;
5625   }
5626   case Intrinsic::readcyclecounter: {
5627     SDValue Op = getRoot();
5628     Res = DAG.getNode(ISD::READCYCLECOUNTER, sdl,
5629                       DAG.getVTList(MVT::i64, MVT::Other), Op);
5630     setValue(&I, Res);
5631     DAG.setRoot(Res.getValue(1));
5632     return nullptr;
5633   }
5634   case Intrinsic::bitreverse:
5635     setValue(&I, DAG.getNode(ISD::BITREVERSE, sdl,
5636                              getValue(I.getArgOperand(0)).getValueType(),
5637                              getValue(I.getArgOperand(0))));
5638     return nullptr;
5639   case Intrinsic::bswap:
5640     setValue(&I, DAG.getNode(ISD::BSWAP, sdl,
5641                              getValue(I.getArgOperand(0)).getValueType(),
5642                              getValue(I.getArgOperand(0))));
5643     return nullptr;
5644   case Intrinsic::cttz: {
5645     SDValue Arg = getValue(I.getArgOperand(0));
5646     ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
5647     EVT Ty = Arg.getValueType();
5648     setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTTZ : ISD::CTTZ_ZERO_UNDEF,
5649                              sdl, Ty, Arg));
5650     return nullptr;
5651   }
5652   case Intrinsic::ctlz: {
5653     SDValue Arg = getValue(I.getArgOperand(0));
5654     ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
5655     EVT Ty = Arg.getValueType();
5656     setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTLZ : ISD::CTLZ_ZERO_UNDEF,
5657                              sdl, Ty, Arg));
5658     return nullptr;
5659   }
5660   case Intrinsic::ctpop: {
5661     SDValue Arg = getValue(I.getArgOperand(0));
5662     EVT Ty = Arg.getValueType();
5663     setValue(&I, DAG.getNode(ISD::CTPOP, sdl, Ty, Arg));
5664     return nullptr;
5665   }
5666   case Intrinsic::stacksave: {
5667     SDValue Op = getRoot();
5668     Res = DAG.getNode(
5669         ISD::STACKSAVE, sdl,
5670         DAG.getVTList(TLI.getPointerTy(DAG.getDataLayout()), MVT::Other), Op);
5671     setValue(&I, Res);
5672     DAG.setRoot(Res.getValue(1));
5673     return nullptr;
5674   }
5675   case Intrinsic::stackrestore:
5676     Res = getValue(I.getArgOperand(0));
5677     DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, sdl, MVT::Other, getRoot(), Res));
5678     return nullptr;
5679   case Intrinsic::get_dynamic_area_offset: {
5680     SDValue Op = getRoot();
5681     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5682     EVT ResTy = TLI.getValueType(DAG.getDataLayout(), I.getType());
5683     // Result type for @llvm.get.dynamic.area.offset should match PtrTy for
5684     // target.
5685     if (PtrTy != ResTy)
5686       report_fatal_error("Wrong result type for @llvm.get.dynamic.area.offset"
5687                          " intrinsic!");
5688     Res = DAG.getNode(ISD::GET_DYNAMIC_AREA_OFFSET, sdl, DAG.getVTList(ResTy),
5689                       Op);
5690     DAG.setRoot(Op);
5691     setValue(&I, Res);
5692     return nullptr;
5693   }
5694   case Intrinsic::stackguard: {
5695     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5696     MachineFunction &MF = DAG.getMachineFunction();
5697     const Module &M = *MF.getFunction().getParent();
5698     SDValue Chain = getRoot();
5699     if (TLI.useLoadStackGuardNode()) {
5700       Res = getLoadStackGuard(DAG, sdl, Chain);
5701     } else {
5702       const Value *Global = TLI.getSDagStackGuard(M);
5703       unsigned Align = DL->getPrefTypeAlignment(Global->getType());
5704       Res = DAG.getLoad(PtrTy, sdl, Chain, getValue(Global),
5705                         MachinePointerInfo(Global, 0), Align,
5706                         MachineMemOperand::MOVolatile);
5707     }
5708     if (TLI.useStackGuardXorFP())
5709       Res = TLI.emitStackGuardXorFP(DAG, Res, sdl);
5710     DAG.setRoot(Chain);
5711     setValue(&I, Res);
5712     return nullptr;
5713   }
5714   case Intrinsic::stackprotector: {
5715     // Emit code into the DAG to store the stack guard onto the stack.
5716     MachineFunction &MF = DAG.getMachineFunction();
5717     MachineFrameInfo &MFI = MF.getFrameInfo();
5718     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5719     SDValue Src, Chain = getRoot();
5720 
5721     if (TLI.useLoadStackGuardNode())
5722       Src = getLoadStackGuard(DAG, sdl, Chain);
5723     else
5724       Src = getValue(I.getArgOperand(0));   // The guard's value.
5725 
5726     AllocaInst *Slot = cast<AllocaInst>(I.getArgOperand(1));
5727 
5728     int FI = FuncInfo.StaticAllocaMap[Slot];
5729     MFI.setStackProtectorIndex(FI);
5730 
5731     SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
5732 
5733     // Store the stack protector onto the stack.
5734     Res = DAG.getStore(Chain, sdl, Src, FIN, MachinePointerInfo::getFixedStack(
5735                                                  DAG.getMachineFunction(), FI),
5736                        /* Alignment = */ 0, MachineMemOperand::MOVolatile);
5737     setValue(&I, Res);
5738     DAG.setRoot(Res);
5739     return nullptr;
5740   }
5741   case Intrinsic::objectsize: {
5742     // If we don't know by now, we're never going to know.
5743     ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(1));
5744 
5745     assert(CI && "Non-constant type in __builtin_object_size?");
5746 
5747     SDValue Arg = getValue(I.getCalledValue());
5748     EVT Ty = Arg.getValueType();
5749 
5750     if (CI->isZero())
5751       Res = DAG.getConstant(-1ULL, sdl, Ty);
5752     else
5753       Res = DAG.getConstant(0, sdl, Ty);
5754 
5755     setValue(&I, Res);
5756     return nullptr;
5757   }
5758   case Intrinsic::annotation:
5759   case Intrinsic::ptr_annotation:
5760   case Intrinsic::launder_invariant_group:
5761     // Drop the intrinsic, but forward the value
5762     setValue(&I, getValue(I.getOperand(0)));
5763     return nullptr;
5764   case Intrinsic::assume:
5765   case Intrinsic::var_annotation:
5766   case Intrinsic::sideeffect:
5767     // Discard annotate attributes, assumptions, and artificial side-effects.
5768     return nullptr;
5769 
5770   case Intrinsic::codeview_annotation: {
5771     // Emit a label associated with this metadata.
5772     MachineFunction &MF = DAG.getMachineFunction();
5773     MCSymbol *Label =
5774         MF.getMMI().getContext().createTempSymbol("annotation", true);
5775     Metadata *MD = cast<MetadataAsValue>(I.getArgOperand(0))->getMetadata();
5776     MF.addCodeViewAnnotation(Label, cast<MDNode>(MD));
5777     Res = DAG.getLabelNode(ISD::ANNOTATION_LABEL, sdl, getRoot(), Label);
5778     DAG.setRoot(Res);
5779     return nullptr;
5780   }
5781 
5782   case Intrinsic::init_trampoline: {
5783     const Function *F = cast<Function>(I.getArgOperand(1)->stripPointerCasts());
5784 
5785     SDValue Ops[6];
5786     Ops[0] = getRoot();
5787     Ops[1] = getValue(I.getArgOperand(0));
5788     Ops[2] = getValue(I.getArgOperand(1));
5789     Ops[3] = getValue(I.getArgOperand(2));
5790     Ops[4] = DAG.getSrcValue(I.getArgOperand(0));
5791     Ops[5] = DAG.getSrcValue(F);
5792 
5793     Res = DAG.getNode(ISD::INIT_TRAMPOLINE, sdl, MVT::Other, Ops);
5794 
5795     DAG.setRoot(Res);
5796     return nullptr;
5797   }
5798   case Intrinsic::adjust_trampoline:
5799     setValue(&I, DAG.getNode(ISD::ADJUST_TRAMPOLINE, sdl,
5800                              TLI.getPointerTy(DAG.getDataLayout()),
5801                              getValue(I.getArgOperand(0))));
5802     return nullptr;
5803   case Intrinsic::gcroot: {
5804     assert(DAG.getMachineFunction().getFunction().hasGC() &&
5805            "only valid in functions with gc specified, enforced by Verifier");
5806     assert(GFI && "implied by previous");
5807     const Value *Alloca = I.getArgOperand(0)->stripPointerCasts();
5808     const Constant *TypeMap = cast<Constant>(I.getArgOperand(1));
5809 
5810     FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
5811     GFI->addStackRoot(FI->getIndex(), TypeMap);
5812     return nullptr;
5813   }
5814   case Intrinsic::gcread:
5815   case Intrinsic::gcwrite:
5816     llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
5817   case Intrinsic::flt_rounds:
5818     setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, sdl, MVT::i32));
5819     return nullptr;
5820 
5821   case Intrinsic::expect:
5822     // Just replace __builtin_expect(exp, c) with EXP.
5823     setValue(&I, getValue(I.getArgOperand(0)));
5824     return nullptr;
5825 
5826   case Intrinsic::debugtrap:
5827   case Intrinsic::trap: {
5828     StringRef TrapFuncName =
5829         I.getAttributes()
5830             .getAttribute(AttributeList::FunctionIndex, "trap-func-name")
5831             .getValueAsString();
5832     if (TrapFuncName.empty()) {
5833       ISD::NodeType Op = (Intrinsic == Intrinsic::trap) ?
5834         ISD::TRAP : ISD::DEBUGTRAP;
5835       DAG.setRoot(DAG.getNode(Op, sdl,MVT::Other, getRoot()));
5836       return nullptr;
5837     }
5838     TargetLowering::ArgListTy Args;
5839 
5840     TargetLowering::CallLoweringInfo CLI(DAG);
5841     CLI.setDebugLoc(sdl).setChain(getRoot()).setLibCallee(
5842         CallingConv::C, I.getType(),
5843         DAG.getExternalSymbol(TrapFuncName.data(),
5844                               TLI.getPointerTy(DAG.getDataLayout())),
5845         std::move(Args));
5846 
5847     std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
5848     DAG.setRoot(Result.second);
5849     return nullptr;
5850   }
5851 
5852   case Intrinsic::uadd_with_overflow:
5853   case Intrinsic::sadd_with_overflow:
5854   case Intrinsic::usub_with_overflow:
5855   case Intrinsic::ssub_with_overflow:
5856   case Intrinsic::umul_with_overflow:
5857   case Intrinsic::smul_with_overflow: {
5858     ISD::NodeType Op;
5859     switch (Intrinsic) {
5860     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5861     case Intrinsic::uadd_with_overflow: Op = ISD::UADDO; break;
5862     case Intrinsic::sadd_with_overflow: Op = ISD::SADDO; break;
5863     case Intrinsic::usub_with_overflow: Op = ISD::USUBO; break;
5864     case Intrinsic::ssub_with_overflow: Op = ISD::SSUBO; break;
5865     case Intrinsic::umul_with_overflow: Op = ISD::UMULO; break;
5866     case Intrinsic::smul_with_overflow: Op = ISD::SMULO; break;
5867     }
5868     SDValue Op1 = getValue(I.getArgOperand(0));
5869     SDValue Op2 = getValue(I.getArgOperand(1));
5870 
5871     SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
5872     setValue(&I, DAG.getNode(Op, sdl, VTs, Op1, Op2));
5873     return nullptr;
5874   }
5875   case Intrinsic::prefetch: {
5876     SDValue Ops[5];
5877     unsigned rw = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue();
5878     auto Flags = rw == 0 ? MachineMemOperand::MOLoad :MachineMemOperand::MOStore;
5879     Ops[0] = DAG.getRoot();
5880     Ops[1] = getValue(I.getArgOperand(0));
5881     Ops[2] = getValue(I.getArgOperand(1));
5882     Ops[3] = getValue(I.getArgOperand(2));
5883     Ops[4] = getValue(I.getArgOperand(3));
5884     SDValue Result = DAG.getMemIntrinsicNode(ISD::PREFETCH, sdl,
5885                                              DAG.getVTList(MVT::Other), Ops,
5886                                              EVT::getIntegerVT(*Context, 8),
5887                                              MachinePointerInfo(I.getArgOperand(0)),
5888                                              0, /* align */
5889                                              Flags);
5890 
5891     // Chain the prefetch in parallell with any pending loads, to stay out of
5892     // the way of later optimizations.
5893     PendingLoads.push_back(Result);
5894     Result = getRoot();
5895     DAG.setRoot(Result);
5896     return nullptr;
5897   }
5898   case Intrinsic::lifetime_start:
5899   case Intrinsic::lifetime_end: {
5900     bool IsStart = (Intrinsic == Intrinsic::lifetime_start);
5901     // Stack coloring is not enabled in O0, discard region information.
5902     if (TM.getOptLevel() == CodeGenOpt::None)
5903       return nullptr;
5904 
5905     SmallVector<Value *, 4> Allocas;
5906     GetUnderlyingObjects(I.getArgOperand(1), Allocas, *DL);
5907 
5908     for (SmallVectorImpl<Value*>::iterator Object = Allocas.begin(),
5909            E = Allocas.end(); Object != E; ++Object) {
5910       AllocaInst *LifetimeObject = dyn_cast_or_null<AllocaInst>(*Object);
5911 
5912       // Could not find an Alloca.
5913       if (!LifetimeObject)
5914         continue;
5915 
5916       // First check that the Alloca is static, otherwise it won't have a
5917       // valid frame index.
5918       auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject);
5919       if (SI == FuncInfo.StaticAllocaMap.end())
5920         return nullptr;
5921 
5922       int FI = SI->second;
5923 
5924       SDValue Ops[2];
5925       Ops[0] = getRoot();
5926       Ops[1] =
5927           DAG.getFrameIndex(FI, TLI.getFrameIndexTy(DAG.getDataLayout()), true);
5928       unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END);
5929 
5930       Res = DAG.getNode(Opcode, sdl, MVT::Other, Ops);
5931       DAG.setRoot(Res);
5932     }
5933     return nullptr;
5934   }
5935   case Intrinsic::invariant_start:
5936     // Discard region information.
5937     setValue(&I, DAG.getUNDEF(TLI.getPointerTy(DAG.getDataLayout())));
5938     return nullptr;
5939   case Intrinsic::invariant_end:
5940     // Discard region information.
5941     return nullptr;
5942   case Intrinsic::clear_cache:
5943     return TLI.getClearCacheBuiltinName();
5944   case Intrinsic::donothing:
5945     // ignore
5946     return nullptr;
5947   case Intrinsic::experimental_stackmap:
5948     visitStackmap(I);
5949     return nullptr;
5950   case Intrinsic::experimental_patchpoint_void:
5951   case Intrinsic::experimental_patchpoint_i64:
5952     visitPatchpoint(&I);
5953     return nullptr;
5954   case Intrinsic::experimental_gc_statepoint:
5955     LowerStatepoint(ImmutableStatepoint(&I));
5956     return nullptr;
5957   case Intrinsic::experimental_gc_result:
5958     visitGCResult(cast<GCResultInst>(I));
5959     return nullptr;
5960   case Intrinsic::experimental_gc_relocate:
5961     visitGCRelocate(cast<GCRelocateInst>(I));
5962     return nullptr;
5963   case Intrinsic::instrprof_increment:
5964     llvm_unreachable("instrprof failed to lower an increment");
5965   case Intrinsic::instrprof_value_profile:
5966     llvm_unreachable("instrprof failed to lower a value profiling call");
5967   case Intrinsic::localescape: {
5968     MachineFunction &MF = DAG.getMachineFunction();
5969     const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo();
5970 
5971     // Directly emit some LOCAL_ESCAPE machine instrs. Label assignment emission
5972     // is the same on all targets.
5973     for (unsigned Idx = 0, E = I.getNumArgOperands(); Idx < E; ++Idx) {
5974       Value *Arg = I.getArgOperand(Idx)->stripPointerCasts();
5975       if (isa<ConstantPointerNull>(Arg))
5976         continue; // Skip null pointers. They represent a hole in index space.
5977       AllocaInst *Slot = cast<AllocaInst>(Arg);
5978       assert(FuncInfo.StaticAllocaMap.count(Slot) &&
5979              "can only escape static allocas");
5980       int FI = FuncInfo.StaticAllocaMap[Slot];
5981       MCSymbol *FrameAllocSym =
5982           MF.getMMI().getContext().getOrCreateFrameAllocSymbol(
5983               GlobalValue::dropLLVMManglingEscape(MF.getName()), Idx);
5984       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, dl,
5985               TII->get(TargetOpcode::LOCAL_ESCAPE))
5986           .addSym(FrameAllocSym)
5987           .addFrameIndex(FI);
5988     }
5989 
5990     return nullptr;
5991   }
5992 
5993   case Intrinsic::localrecover: {
5994     // i8* @llvm.localrecover(i8* %fn, i8* %fp, i32 %idx)
5995     MachineFunction &MF = DAG.getMachineFunction();
5996     MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout(), 0);
5997 
5998     // Get the symbol that defines the frame offset.
5999     auto *Fn = cast<Function>(I.getArgOperand(0)->stripPointerCasts());
6000     auto *Idx = cast<ConstantInt>(I.getArgOperand(2));
6001     unsigned IdxVal =
6002         unsigned(Idx->getLimitedValue(std::numeric_limits<int>::max()));
6003     MCSymbol *FrameAllocSym =
6004         MF.getMMI().getContext().getOrCreateFrameAllocSymbol(
6005             GlobalValue::dropLLVMManglingEscape(Fn->getName()), IdxVal);
6006 
6007     // Create a MCSymbol for the label to avoid any target lowering
6008     // that would make this PC relative.
6009     SDValue OffsetSym = DAG.getMCSymbol(FrameAllocSym, PtrVT);
6010     SDValue OffsetVal =
6011         DAG.getNode(ISD::LOCAL_RECOVER, sdl, PtrVT, OffsetSym);
6012 
6013     // Add the offset to the FP.
6014     Value *FP = I.getArgOperand(1);
6015     SDValue FPVal = getValue(FP);
6016     SDValue Add = DAG.getNode(ISD::ADD, sdl, PtrVT, FPVal, OffsetVal);
6017     setValue(&I, Add);
6018 
6019     return nullptr;
6020   }
6021 
6022   case Intrinsic::eh_exceptionpointer:
6023   case Intrinsic::eh_exceptioncode: {
6024     // Get the exception pointer vreg, copy from it, and resize it to fit.
6025     const auto *CPI = cast<CatchPadInst>(I.getArgOperand(0));
6026     MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
6027     const TargetRegisterClass *PtrRC = TLI.getRegClassFor(PtrVT);
6028     unsigned VReg = FuncInfo.getCatchPadExceptionPointerVReg(CPI, PtrRC);
6029     SDValue N =
6030         DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(), VReg, PtrVT);
6031     if (Intrinsic == Intrinsic::eh_exceptioncode)
6032       N = DAG.getZExtOrTrunc(N, getCurSDLoc(), MVT::i32);
6033     setValue(&I, N);
6034     return nullptr;
6035   }
6036   case Intrinsic::xray_customevent: {
6037     // Here we want to make sure that the intrinsic behaves as if it has a
6038     // specific calling convention, and only for x86_64.
6039     // FIXME: Support other platforms later.
6040     const auto &Triple = DAG.getTarget().getTargetTriple();
6041     if (Triple.getArch() != Triple::x86_64 || !Triple.isOSLinux())
6042       return nullptr;
6043 
6044     SDLoc DL = getCurSDLoc();
6045     SmallVector<SDValue, 8> Ops;
6046 
6047     // We want to say that we always want the arguments in registers.
6048     SDValue LogEntryVal = getValue(I.getArgOperand(0));
6049     SDValue StrSizeVal = getValue(I.getArgOperand(1));
6050     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6051     SDValue Chain = getRoot();
6052     Ops.push_back(LogEntryVal);
6053     Ops.push_back(StrSizeVal);
6054     Ops.push_back(Chain);
6055 
6056     // We need to enforce the calling convention for the callsite, so that
6057     // argument ordering is enforced correctly, and that register allocation can
6058     // see that some registers may be assumed clobbered and have to preserve
6059     // them across calls to the intrinsic.
6060     MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHABLE_EVENT_CALL,
6061                                            DL, NodeTys, Ops);
6062     SDValue patchableNode = SDValue(MN, 0);
6063     DAG.setRoot(patchableNode);
6064     setValue(&I, patchableNode);
6065     return nullptr;
6066   }
6067   case Intrinsic::xray_typedevent: {
6068     // Here we want to make sure that the intrinsic behaves as if it has a
6069     // specific calling convention, and only for x86_64.
6070     // FIXME: Support other platforms later.
6071     const auto &Triple = DAG.getTarget().getTargetTriple();
6072     if (Triple.getArch() != Triple::x86_64 || !Triple.isOSLinux())
6073       return nullptr;
6074 
6075     SDLoc DL = getCurSDLoc();
6076     SmallVector<SDValue, 8> Ops;
6077 
6078     // We want to say that we always want the arguments in registers.
6079     // It's unclear to me how manipulating the selection DAG here forces callers
6080     // to provide arguments in registers instead of on the stack.
6081     SDValue LogTypeId = getValue(I.getArgOperand(0));
6082     SDValue LogEntryVal = getValue(I.getArgOperand(1));
6083     SDValue StrSizeVal = getValue(I.getArgOperand(2));
6084     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6085     SDValue Chain = getRoot();
6086     Ops.push_back(LogTypeId);
6087     Ops.push_back(LogEntryVal);
6088     Ops.push_back(StrSizeVal);
6089     Ops.push_back(Chain);
6090 
6091     // We need to enforce the calling convention for the callsite, so that
6092     // argument ordering is enforced correctly, and that register allocation can
6093     // see that some registers may be assumed clobbered and have to preserve
6094     // them across calls to the intrinsic.
6095     MachineSDNode *MN = DAG.getMachineNode(
6096         TargetOpcode::PATCHABLE_TYPED_EVENT_CALL, DL, NodeTys, Ops);
6097     SDValue patchableNode = SDValue(MN, 0);
6098     DAG.setRoot(patchableNode);
6099     setValue(&I, patchableNode);
6100     return nullptr;
6101   }
6102   case Intrinsic::experimental_deoptimize:
6103     LowerDeoptimizeCall(&I);
6104     return nullptr;
6105 
6106   case Intrinsic::experimental_vector_reduce_fadd:
6107   case Intrinsic::experimental_vector_reduce_fmul:
6108   case Intrinsic::experimental_vector_reduce_add:
6109   case Intrinsic::experimental_vector_reduce_mul:
6110   case Intrinsic::experimental_vector_reduce_and:
6111   case Intrinsic::experimental_vector_reduce_or:
6112   case Intrinsic::experimental_vector_reduce_xor:
6113   case Intrinsic::experimental_vector_reduce_smax:
6114   case Intrinsic::experimental_vector_reduce_smin:
6115   case Intrinsic::experimental_vector_reduce_umax:
6116   case Intrinsic::experimental_vector_reduce_umin:
6117   case Intrinsic::experimental_vector_reduce_fmax:
6118   case Intrinsic::experimental_vector_reduce_fmin:
6119     visitVectorReduce(I, Intrinsic);
6120     return nullptr;
6121 
6122   case Intrinsic::icall_branch_funnel: {
6123     SmallVector<SDValue, 16> Ops;
6124     Ops.push_back(DAG.getRoot());
6125     Ops.push_back(getValue(I.getArgOperand(0)));
6126 
6127     int64_t Offset;
6128     auto *Base = dyn_cast<GlobalObject>(GetPointerBaseWithConstantOffset(
6129         I.getArgOperand(1), Offset, DAG.getDataLayout()));
6130     if (!Base)
6131       report_fatal_error(
6132           "llvm.icall.branch.funnel operand must be a GlobalValue");
6133     Ops.push_back(DAG.getTargetGlobalAddress(Base, getCurSDLoc(), MVT::i64, 0));
6134 
6135     struct BranchFunnelTarget {
6136       int64_t Offset;
6137       SDValue Target;
6138     };
6139     SmallVector<BranchFunnelTarget, 8> Targets;
6140 
6141     for (unsigned Op = 1, N = I.getNumArgOperands(); Op != N; Op += 2) {
6142       auto *ElemBase = dyn_cast<GlobalObject>(GetPointerBaseWithConstantOffset(
6143           I.getArgOperand(Op), Offset, DAG.getDataLayout()));
6144       if (ElemBase != Base)
6145         report_fatal_error("all llvm.icall.branch.funnel operands must refer "
6146                            "to the same GlobalValue");
6147 
6148       SDValue Val = getValue(I.getArgOperand(Op + 1));
6149       auto *GA = dyn_cast<GlobalAddressSDNode>(Val);
6150       if (!GA)
6151         report_fatal_error(
6152             "llvm.icall.branch.funnel operand must be a GlobalValue");
6153       Targets.push_back({Offset, DAG.getTargetGlobalAddress(
6154                                      GA->getGlobal(), getCurSDLoc(),
6155                                      Val.getValueType(), GA->getOffset())});
6156     }
6157     llvm::sort(Targets.begin(), Targets.end(),
6158                [](const BranchFunnelTarget &T1, const BranchFunnelTarget &T2) {
6159                  return T1.Offset < T2.Offset;
6160                });
6161 
6162     for (auto &T : Targets) {
6163       Ops.push_back(DAG.getTargetConstant(T.Offset, getCurSDLoc(), MVT::i32));
6164       Ops.push_back(T.Target);
6165     }
6166 
6167     SDValue N(DAG.getMachineNode(TargetOpcode::ICALL_BRANCH_FUNNEL,
6168                                  getCurSDLoc(), MVT::Other, Ops),
6169               0);
6170     DAG.setRoot(N);
6171     setValue(&I, N);
6172     HasTailCall = true;
6173     return nullptr;
6174   }
6175   }
6176 }
6177 
6178 void SelectionDAGBuilder::visitConstrainedFPIntrinsic(
6179     const ConstrainedFPIntrinsic &FPI) {
6180   SDLoc sdl = getCurSDLoc();
6181   unsigned Opcode;
6182   switch (FPI.getIntrinsicID()) {
6183   default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
6184   case Intrinsic::experimental_constrained_fadd:
6185     Opcode = ISD::STRICT_FADD;
6186     break;
6187   case Intrinsic::experimental_constrained_fsub:
6188     Opcode = ISD::STRICT_FSUB;
6189     break;
6190   case Intrinsic::experimental_constrained_fmul:
6191     Opcode = ISD::STRICT_FMUL;
6192     break;
6193   case Intrinsic::experimental_constrained_fdiv:
6194     Opcode = ISD::STRICT_FDIV;
6195     break;
6196   case Intrinsic::experimental_constrained_frem:
6197     Opcode = ISD::STRICT_FREM;
6198     break;
6199   case Intrinsic::experimental_constrained_fma:
6200     Opcode = ISD::STRICT_FMA;
6201     break;
6202   case Intrinsic::experimental_constrained_sqrt:
6203     Opcode = ISD::STRICT_FSQRT;
6204     break;
6205   case Intrinsic::experimental_constrained_pow:
6206     Opcode = ISD::STRICT_FPOW;
6207     break;
6208   case Intrinsic::experimental_constrained_powi:
6209     Opcode = ISD::STRICT_FPOWI;
6210     break;
6211   case Intrinsic::experimental_constrained_sin:
6212     Opcode = ISD::STRICT_FSIN;
6213     break;
6214   case Intrinsic::experimental_constrained_cos:
6215     Opcode = ISD::STRICT_FCOS;
6216     break;
6217   case Intrinsic::experimental_constrained_exp:
6218     Opcode = ISD::STRICT_FEXP;
6219     break;
6220   case Intrinsic::experimental_constrained_exp2:
6221     Opcode = ISD::STRICT_FEXP2;
6222     break;
6223   case Intrinsic::experimental_constrained_log:
6224     Opcode = ISD::STRICT_FLOG;
6225     break;
6226   case Intrinsic::experimental_constrained_log10:
6227     Opcode = ISD::STRICT_FLOG10;
6228     break;
6229   case Intrinsic::experimental_constrained_log2:
6230     Opcode = ISD::STRICT_FLOG2;
6231     break;
6232   case Intrinsic::experimental_constrained_rint:
6233     Opcode = ISD::STRICT_FRINT;
6234     break;
6235   case Intrinsic::experimental_constrained_nearbyint:
6236     Opcode = ISD::STRICT_FNEARBYINT;
6237     break;
6238   }
6239   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6240   SDValue Chain = getRoot();
6241   SmallVector<EVT, 4> ValueVTs;
6242   ComputeValueVTs(TLI, DAG.getDataLayout(), FPI.getType(), ValueVTs);
6243   ValueVTs.push_back(MVT::Other); // Out chain
6244 
6245   SDVTList VTs = DAG.getVTList(ValueVTs);
6246   SDValue Result;
6247   if (FPI.isUnaryOp())
6248     Result = DAG.getNode(Opcode, sdl, VTs,
6249                          { Chain, getValue(FPI.getArgOperand(0)) });
6250   else if (FPI.isTernaryOp())
6251     Result = DAG.getNode(Opcode, sdl, VTs,
6252                          { Chain, getValue(FPI.getArgOperand(0)),
6253                                   getValue(FPI.getArgOperand(1)),
6254                                   getValue(FPI.getArgOperand(2)) });
6255   else
6256     Result = DAG.getNode(Opcode, sdl, VTs,
6257                          { Chain, getValue(FPI.getArgOperand(0)),
6258                            getValue(FPI.getArgOperand(1))  });
6259 
6260   assert(Result.getNode()->getNumValues() == 2);
6261   SDValue OutChain = Result.getValue(1);
6262   DAG.setRoot(OutChain);
6263   SDValue FPResult = Result.getValue(0);
6264   setValue(&FPI, FPResult);
6265 }
6266 
6267 std::pair<SDValue, SDValue>
6268 SelectionDAGBuilder::lowerInvokable(TargetLowering::CallLoweringInfo &CLI,
6269                                     const BasicBlock *EHPadBB) {
6270   MachineFunction &MF = DAG.getMachineFunction();
6271   MachineModuleInfo &MMI = MF.getMMI();
6272   MCSymbol *BeginLabel = nullptr;
6273 
6274   if (EHPadBB) {
6275     // Insert a label before the invoke call to mark the try range.  This can be
6276     // used to detect deletion of the invoke via the MachineModuleInfo.
6277     BeginLabel = MMI.getContext().createTempSymbol();
6278 
6279     // For SjLj, keep track of which landing pads go with which invokes
6280     // so as to maintain the ordering of pads in the LSDA.
6281     unsigned CallSiteIndex = MMI.getCurrentCallSite();
6282     if (CallSiteIndex) {
6283       MF.setCallSiteBeginLabel(BeginLabel, CallSiteIndex);
6284       LPadToCallSiteMap[FuncInfo.MBBMap[EHPadBB]].push_back(CallSiteIndex);
6285 
6286       // Now that the call site is handled, stop tracking it.
6287       MMI.setCurrentCallSite(0);
6288     }
6289 
6290     // Both PendingLoads and PendingExports must be flushed here;
6291     // this call might not return.
6292     (void)getRoot();
6293     DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getControlRoot(), BeginLabel));
6294 
6295     CLI.setChain(getRoot());
6296   }
6297   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6298   std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
6299 
6300   assert((CLI.IsTailCall || Result.second.getNode()) &&
6301          "Non-null chain expected with non-tail call!");
6302   assert((Result.second.getNode() || !Result.first.getNode()) &&
6303          "Null value expected with tail call!");
6304 
6305   if (!Result.second.getNode()) {
6306     // As a special case, a null chain means that a tail call has been emitted
6307     // and the DAG root is already updated.
6308     HasTailCall = true;
6309 
6310     // Since there's no actual continuation from this block, nothing can be
6311     // relying on us setting vregs for them.
6312     PendingExports.clear();
6313   } else {
6314     DAG.setRoot(Result.second);
6315   }
6316 
6317   if (EHPadBB) {
6318     // Insert a label at the end of the invoke call to mark the try range.  This
6319     // can be used to detect deletion of the invoke via the MachineModuleInfo.
6320     MCSymbol *EndLabel = MMI.getContext().createTempSymbol();
6321     DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getRoot(), EndLabel));
6322 
6323     // Inform MachineModuleInfo of range.
6324     if (MF.hasEHFunclets()) {
6325       assert(CLI.CS);
6326       WinEHFuncInfo *EHInfo = DAG.getMachineFunction().getWinEHFuncInfo();
6327       EHInfo->addIPToStateRange(cast<InvokeInst>(CLI.CS.getInstruction()),
6328                                 BeginLabel, EndLabel);
6329     } else {
6330       MF.addInvoke(FuncInfo.MBBMap[EHPadBB], BeginLabel, EndLabel);
6331     }
6332   }
6333 
6334   return Result;
6335 }
6336 
6337 void SelectionDAGBuilder::LowerCallTo(ImmutableCallSite CS, SDValue Callee,
6338                                       bool isTailCall,
6339                                       const BasicBlock *EHPadBB) {
6340   auto &DL = DAG.getDataLayout();
6341   FunctionType *FTy = CS.getFunctionType();
6342   Type *RetTy = CS.getType();
6343 
6344   TargetLowering::ArgListTy Args;
6345   Args.reserve(CS.arg_size());
6346 
6347   const Value *SwiftErrorVal = nullptr;
6348   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6349 
6350   // We can't tail call inside a function with a swifterror argument. Lowering
6351   // does not support this yet. It would have to move into the swifterror
6352   // register before the call.
6353   auto *Caller = CS.getInstruction()->getParent()->getParent();
6354   if (TLI.supportSwiftError() &&
6355       Caller->getAttributes().hasAttrSomewhere(Attribute::SwiftError))
6356     isTailCall = false;
6357 
6358   for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
6359        i != e; ++i) {
6360     TargetLowering::ArgListEntry Entry;
6361     const Value *V = *i;
6362 
6363     // Skip empty types
6364     if (V->getType()->isEmptyTy())
6365       continue;
6366 
6367     SDValue ArgNode = getValue(V);
6368     Entry.Node = ArgNode; Entry.Ty = V->getType();
6369 
6370     Entry.setAttributes(&CS, i - CS.arg_begin());
6371 
6372     // Use swifterror virtual register as input to the call.
6373     if (Entry.IsSwiftError && TLI.supportSwiftError()) {
6374       SwiftErrorVal = V;
6375       // We find the virtual register for the actual swifterror argument.
6376       // Instead of using the Value, we use the virtual register instead.
6377       Entry.Node = DAG.getRegister(FuncInfo
6378                                        .getOrCreateSwiftErrorVRegUseAt(
6379                                            CS.getInstruction(), FuncInfo.MBB, V)
6380                                        .first,
6381                                    EVT(TLI.getPointerTy(DL)));
6382     }
6383 
6384     Args.push_back(Entry);
6385 
6386     // If we have an explicit sret argument that is an Instruction, (i.e., it
6387     // might point to function-local memory), we can't meaningfully tail-call.
6388     if (Entry.IsSRet && isa<Instruction>(V))
6389       isTailCall = false;
6390   }
6391 
6392   // Check if target-independent constraints permit a tail call here.
6393   // Target-dependent constraints are checked within TLI->LowerCallTo.
6394   if (isTailCall && !isInTailCallPosition(CS, DAG.getTarget()))
6395     isTailCall = false;
6396 
6397   // Disable tail calls if there is an swifterror argument. Targets have not
6398   // been updated to support tail calls.
6399   if (TLI.supportSwiftError() && SwiftErrorVal)
6400     isTailCall = false;
6401 
6402   TargetLowering::CallLoweringInfo CLI(DAG);
6403   CLI.setDebugLoc(getCurSDLoc())
6404       .setChain(getRoot())
6405       .setCallee(RetTy, FTy, Callee, std::move(Args), CS)
6406       .setTailCall(isTailCall)
6407       .setConvergent(CS.isConvergent());
6408   std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB);
6409 
6410   if (Result.first.getNode()) {
6411     const Instruction *Inst = CS.getInstruction();
6412     Result.first = lowerRangeToAssertZExt(DAG, *Inst, Result.first);
6413     setValue(Inst, Result.first);
6414   }
6415 
6416   // The last element of CLI.InVals has the SDValue for swifterror return.
6417   // Here we copy it to a virtual register and update SwiftErrorMap for
6418   // book-keeping.
6419   if (SwiftErrorVal && TLI.supportSwiftError()) {
6420     // Get the last element of InVals.
6421     SDValue Src = CLI.InVals.back();
6422     unsigned VReg; bool CreatedVReg;
6423     std::tie(VReg, CreatedVReg) =
6424         FuncInfo.getOrCreateSwiftErrorVRegDefAt(CS.getInstruction());
6425     SDValue CopyNode = CLI.DAG.getCopyToReg(Result.second, CLI.DL, VReg, Src);
6426     // We update the virtual register for the actual swifterror argument.
6427     if (CreatedVReg)
6428       FuncInfo.setCurrentSwiftErrorVReg(FuncInfo.MBB, SwiftErrorVal, VReg);
6429     DAG.setRoot(CopyNode);
6430   }
6431 }
6432 
6433 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT,
6434                              SelectionDAGBuilder &Builder) {
6435   // Check to see if this load can be trivially constant folded, e.g. if the
6436   // input is from a string literal.
6437   if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) {
6438     // Cast pointer to the type we really want to load.
6439     Type *LoadTy =
6440         Type::getIntNTy(PtrVal->getContext(), LoadVT.getScalarSizeInBits());
6441     if (LoadVT.isVector())
6442       LoadTy = VectorType::get(LoadTy, LoadVT.getVectorNumElements());
6443 
6444     LoadInput = ConstantExpr::getBitCast(const_cast<Constant *>(LoadInput),
6445                                          PointerType::getUnqual(LoadTy));
6446 
6447     if (const Constant *LoadCst = ConstantFoldLoadFromConstPtr(
6448             const_cast<Constant *>(LoadInput), LoadTy, *Builder.DL))
6449       return Builder.getValue(LoadCst);
6450   }
6451 
6452   // Otherwise, we have to emit the load.  If the pointer is to unfoldable but
6453   // still constant memory, the input chain can be the entry node.
6454   SDValue Root;
6455   bool ConstantMemory = false;
6456 
6457   // Do not serialize (non-volatile) loads of constant memory with anything.
6458   if (Builder.AA && Builder.AA->pointsToConstantMemory(PtrVal)) {
6459     Root = Builder.DAG.getEntryNode();
6460     ConstantMemory = true;
6461   } else {
6462     // Do not serialize non-volatile loads against each other.
6463     Root = Builder.DAG.getRoot();
6464   }
6465 
6466   SDValue Ptr = Builder.getValue(PtrVal);
6467   SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root,
6468                                         Ptr, MachinePointerInfo(PtrVal),
6469                                         /* Alignment = */ 1);
6470 
6471   if (!ConstantMemory)
6472     Builder.PendingLoads.push_back(LoadVal.getValue(1));
6473   return LoadVal;
6474 }
6475 
6476 /// Record the value for an instruction that produces an integer result,
6477 /// converting the type where necessary.
6478 void SelectionDAGBuilder::processIntegerCallValue(const Instruction &I,
6479                                                   SDValue Value,
6480                                                   bool IsSigned) {
6481   EVT VT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
6482                                                     I.getType(), true);
6483   if (IsSigned)
6484     Value = DAG.getSExtOrTrunc(Value, getCurSDLoc(), VT);
6485   else
6486     Value = DAG.getZExtOrTrunc(Value, getCurSDLoc(), VT);
6487   setValue(&I, Value);
6488 }
6489 
6490 /// See if we can lower a memcmp call into an optimized form. If so, return
6491 /// true and lower it. Otherwise return false, and it will be lowered like a
6492 /// normal call.
6493 /// The caller already checked that \p I calls the appropriate LibFunc with a
6494 /// correct prototype.
6495 bool SelectionDAGBuilder::visitMemCmpCall(const CallInst &I) {
6496   const Value *LHS = I.getArgOperand(0), *RHS = I.getArgOperand(1);
6497   const Value *Size = I.getArgOperand(2);
6498   const ConstantInt *CSize = dyn_cast<ConstantInt>(Size);
6499   if (CSize && CSize->getZExtValue() == 0) {
6500     EVT CallVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
6501                                                           I.getType(), true);
6502     setValue(&I, DAG.getConstant(0, getCurSDLoc(), CallVT));
6503     return true;
6504   }
6505 
6506   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6507   std::pair<SDValue, SDValue> Res = TSI.EmitTargetCodeForMemcmp(
6508       DAG, getCurSDLoc(), DAG.getRoot(), getValue(LHS), getValue(RHS),
6509       getValue(Size), MachinePointerInfo(LHS), MachinePointerInfo(RHS));
6510   if (Res.first.getNode()) {
6511     processIntegerCallValue(I, Res.first, true);
6512     PendingLoads.push_back(Res.second);
6513     return true;
6514   }
6515 
6516   // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS)  != 0
6517   // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS)  != 0
6518   if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I))
6519     return false;
6520 
6521   // If the target has a fast compare for the given size, it will return a
6522   // preferred load type for that size. Require that the load VT is legal and
6523   // that the target supports unaligned loads of that type. Otherwise, return
6524   // INVALID.
6525   auto hasFastLoadsAndCompare = [&](unsigned NumBits) {
6526     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6527     MVT LVT = TLI.hasFastEqualityCompare(NumBits);
6528     if (LVT != MVT::INVALID_SIMPLE_VALUE_TYPE) {
6529       // TODO: Handle 5 byte compare as 4-byte + 1 byte.
6530       // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads.
6531       // TODO: Check alignment of src and dest ptrs.
6532       unsigned DstAS = LHS->getType()->getPointerAddressSpace();
6533       unsigned SrcAS = RHS->getType()->getPointerAddressSpace();
6534       if (!TLI.isTypeLegal(LVT) ||
6535           !TLI.allowsMisalignedMemoryAccesses(LVT, SrcAS) ||
6536           !TLI.allowsMisalignedMemoryAccesses(LVT, DstAS))
6537         LVT = MVT::INVALID_SIMPLE_VALUE_TYPE;
6538     }
6539 
6540     return LVT;
6541   };
6542 
6543   // This turns into unaligned loads. We only do this if the target natively
6544   // supports the MVT we'll be loading or if it is small enough (<= 4) that
6545   // we'll only produce a small number of byte loads.
6546   MVT LoadVT;
6547   unsigned NumBitsToCompare = CSize->getZExtValue() * 8;
6548   switch (NumBitsToCompare) {
6549   default:
6550     return false;
6551   case 16:
6552     LoadVT = MVT::i16;
6553     break;
6554   case 32:
6555     LoadVT = MVT::i32;
6556     break;
6557   case 64:
6558   case 128:
6559   case 256:
6560     LoadVT = hasFastLoadsAndCompare(NumBitsToCompare);
6561     break;
6562   }
6563 
6564   if (LoadVT == MVT::INVALID_SIMPLE_VALUE_TYPE)
6565     return false;
6566 
6567   SDValue LoadL = getMemCmpLoad(LHS, LoadVT, *this);
6568   SDValue LoadR = getMemCmpLoad(RHS, LoadVT, *this);
6569 
6570   // Bitcast to a wide integer type if the loads are vectors.
6571   if (LoadVT.isVector()) {
6572     EVT CmpVT = EVT::getIntegerVT(LHS->getContext(), LoadVT.getSizeInBits());
6573     LoadL = DAG.getBitcast(CmpVT, LoadL);
6574     LoadR = DAG.getBitcast(CmpVT, LoadR);
6575   }
6576 
6577   SDValue Cmp = DAG.getSetCC(getCurSDLoc(), MVT::i1, LoadL, LoadR, ISD::SETNE);
6578   processIntegerCallValue(I, Cmp, false);
6579   return true;
6580 }
6581 
6582 /// See if we can lower a memchr call into an optimized form. If so, return
6583 /// true and lower it. Otherwise return false, and it will be lowered like a
6584 /// normal call.
6585 /// The caller already checked that \p I calls the appropriate LibFunc with a
6586 /// correct prototype.
6587 bool SelectionDAGBuilder::visitMemChrCall(const CallInst &I) {
6588   const Value *Src = I.getArgOperand(0);
6589   const Value *Char = I.getArgOperand(1);
6590   const Value *Length = I.getArgOperand(2);
6591 
6592   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6593   std::pair<SDValue, SDValue> Res =
6594     TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(),
6595                                 getValue(Src), getValue(Char), getValue(Length),
6596                                 MachinePointerInfo(Src));
6597   if (Res.first.getNode()) {
6598     setValue(&I, Res.first);
6599     PendingLoads.push_back(Res.second);
6600     return true;
6601   }
6602 
6603   return false;
6604 }
6605 
6606 /// See if we can lower a mempcpy call into an optimized form. If so, return
6607 /// true and lower it. Otherwise return false, and it will be lowered like a
6608 /// normal call.
6609 /// The caller already checked that \p I calls the appropriate LibFunc with a
6610 /// correct prototype.
6611 bool SelectionDAGBuilder::visitMemPCpyCall(const CallInst &I) {
6612   SDValue Dst = getValue(I.getArgOperand(0));
6613   SDValue Src = getValue(I.getArgOperand(1));
6614   SDValue Size = getValue(I.getArgOperand(2));
6615 
6616   unsigned DstAlign = DAG.InferPtrAlignment(Dst);
6617   unsigned SrcAlign = DAG.InferPtrAlignment(Src);
6618   unsigned Align = std::min(DstAlign, SrcAlign);
6619   if (Align == 0) // Alignment of one or both could not be inferred.
6620     Align = 1; // 0 and 1 both specify no alignment, but 0 is reserved.
6621 
6622   bool isVol = false;
6623   SDLoc sdl = getCurSDLoc();
6624 
6625   // In the mempcpy context we need to pass in a false value for isTailCall
6626   // because the return pointer needs to be adjusted by the size of
6627   // the copied memory.
6628   SDValue MC = DAG.getMemcpy(getRoot(), sdl, Dst, Src, Size, Align, isVol,
6629                              false, /*isTailCall=*/false,
6630                              MachinePointerInfo(I.getArgOperand(0)),
6631                              MachinePointerInfo(I.getArgOperand(1)));
6632   assert(MC.getNode() != nullptr &&
6633          "** memcpy should not be lowered as TailCall in mempcpy context **");
6634   DAG.setRoot(MC);
6635 
6636   // Check if Size needs to be truncated or extended.
6637   Size = DAG.getSExtOrTrunc(Size, sdl, Dst.getValueType());
6638 
6639   // Adjust return pointer to point just past the last dst byte.
6640   SDValue DstPlusSize = DAG.getNode(ISD::ADD, sdl, Dst.getValueType(),
6641                                     Dst, Size);
6642   setValue(&I, DstPlusSize);
6643   return true;
6644 }
6645 
6646 /// See if we can lower a strcpy call into an optimized form.  If so, return
6647 /// true and lower it, otherwise return false and it will be lowered like a
6648 /// normal call.
6649 /// The caller already checked that \p I calls the appropriate LibFunc with a
6650 /// correct prototype.
6651 bool SelectionDAGBuilder::visitStrCpyCall(const CallInst &I, bool isStpcpy) {
6652   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6653 
6654   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6655   std::pair<SDValue, SDValue> Res =
6656     TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(),
6657                                 getValue(Arg0), getValue(Arg1),
6658                                 MachinePointerInfo(Arg0),
6659                                 MachinePointerInfo(Arg1), isStpcpy);
6660   if (Res.first.getNode()) {
6661     setValue(&I, Res.first);
6662     DAG.setRoot(Res.second);
6663     return true;
6664   }
6665 
6666   return false;
6667 }
6668 
6669 /// See if we can lower a strcmp call into an optimized form.  If so, return
6670 /// true and lower it, otherwise return false and it will be lowered like a
6671 /// normal call.
6672 /// The caller already checked that \p I calls the appropriate LibFunc with a
6673 /// correct prototype.
6674 bool SelectionDAGBuilder::visitStrCmpCall(const CallInst &I) {
6675   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6676 
6677   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6678   std::pair<SDValue, SDValue> Res =
6679     TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot(),
6680                                 getValue(Arg0), getValue(Arg1),
6681                                 MachinePointerInfo(Arg0),
6682                                 MachinePointerInfo(Arg1));
6683   if (Res.first.getNode()) {
6684     processIntegerCallValue(I, Res.first, true);
6685     PendingLoads.push_back(Res.second);
6686     return true;
6687   }
6688 
6689   return false;
6690 }
6691 
6692 /// See if we can lower a strlen call into an optimized form.  If so, return
6693 /// true and lower it, otherwise return false and it will be lowered like a
6694 /// normal call.
6695 /// The caller already checked that \p I calls the appropriate LibFunc with a
6696 /// correct prototype.
6697 bool SelectionDAGBuilder::visitStrLenCall(const CallInst &I) {
6698   const Value *Arg0 = I.getArgOperand(0);
6699 
6700   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6701   std::pair<SDValue, SDValue> Res =
6702     TSI.EmitTargetCodeForStrlen(DAG, getCurSDLoc(), DAG.getRoot(),
6703                                 getValue(Arg0), MachinePointerInfo(Arg0));
6704   if (Res.first.getNode()) {
6705     processIntegerCallValue(I, Res.first, false);
6706     PendingLoads.push_back(Res.second);
6707     return true;
6708   }
6709 
6710   return false;
6711 }
6712 
6713 /// See if we can lower a strnlen call into an optimized form.  If so, return
6714 /// true and lower it, otherwise return false and it will be lowered like a
6715 /// normal call.
6716 /// The caller already checked that \p I calls the appropriate LibFunc with a
6717 /// correct prototype.
6718 bool SelectionDAGBuilder::visitStrNLenCall(const CallInst &I) {
6719   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6720 
6721   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6722   std::pair<SDValue, SDValue> Res =
6723     TSI.EmitTargetCodeForStrnlen(DAG, getCurSDLoc(), DAG.getRoot(),
6724                                  getValue(Arg0), getValue(Arg1),
6725                                  MachinePointerInfo(Arg0));
6726   if (Res.first.getNode()) {
6727     processIntegerCallValue(I, Res.first, false);
6728     PendingLoads.push_back(Res.second);
6729     return true;
6730   }
6731 
6732   return false;
6733 }
6734 
6735 /// See if we can lower a unary floating-point operation into an SDNode with
6736 /// the specified Opcode.  If so, return true and lower it, otherwise return
6737 /// false and it will be lowered like a normal call.
6738 /// The caller already checked that \p I calls the appropriate LibFunc with a
6739 /// correct prototype.
6740 bool SelectionDAGBuilder::visitUnaryFloatCall(const CallInst &I,
6741                                               unsigned Opcode) {
6742   // We already checked this call's prototype; verify it doesn't modify errno.
6743   if (!I.onlyReadsMemory())
6744     return false;
6745 
6746   SDValue Tmp = getValue(I.getArgOperand(0));
6747   setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), Tmp.getValueType(), Tmp));
6748   return true;
6749 }
6750 
6751 /// See if we can lower a binary floating-point operation into an SDNode with
6752 /// the specified Opcode. If so, return true and lower it. Otherwise return
6753 /// false, and it will be lowered like a normal call.
6754 /// The caller already checked that \p I calls the appropriate LibFunc with a
6755 /// correct prototype.
6756 bool SelectionDAGBuilder::visitBinaryFloatCall(const CallInst &I,
6757                                                unsigned Opcode) {
6758   // We already checked this call's prototype; verify it doesn't modify errno.
6759   if (!I.onlyReadsMemory())
6760     return false;
6761 
6762   SDValue Tmp0 = getValue(I.getArgOperand(0));
6763   SDValue Tmp1 = getValue(I.getArgOperand(1));
6764   EVT VT = Tmp0.getValueType();
6765   setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), VT, Tmp0, Tmp1));
6766   return true;
6767 }
6768 
6769 void SelectionDAGBuilder::visitCall(const CallInst &I) {
6770   // Handle inline assembly differently.
6771   if (isa<InlineAsm>(I.getCalledValue())) {
6772     visitInlineAsm(&I);
6773     return;
6774   }
6775 
6776   MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
6777   computeUsesVAFloatArgument(I, MMI);
6778 
6779   const char *RenameFn = nullptr;
6780   if (Function *F = I.getCalledFunction()) {
6781     if (F->isDeclaration()) {
6782       // Is this an LLVM intrinsic or a target-specific intrinsic?
6783       unsigned IID = F->getIntrinsicID();
6784       if (!IID)
6785         if (const TargetIntrinsicInfo *II = TM.getIntrinsicInfo())
6786           IID = II->getIntrinsicID(F);
6787 
6788       if (IID) {
6789         RenameFn = visitIntrinsicCall(I, IID);
6790         if (!RenameFn)
6791           return;
6792       }
6793     }
6794 
6795     // Check for well-known libc/libm calls.  If the function is internal, it
6796     // can't be a library call.  Don't do the check if marked as nobuiltin for
6797     // some reason or the call site requires strict floating point semantics.
6798     LibFunc Func;
6799     if (!I.isNoBuiltin() && !I.isStrictFP() && !F->hasLocalLinkage() &&
6800         F->hasName() && LibInfo->getLibFunc(*F, Func) &&
6801         LibInfo->hasOptimizedCodeGen(Func)) {
6802       switch (Func) {
6803       default: break;
6804       case LibFunc_copysign:
6805       case LibFunc_copysignf:
6806       case LibFunc_copysignl:
6807         // We already checked this call's prototype; verify it doesn't modify
6808         // errno.
6809         if (I.onlyReadsMemory()) {
6810           SDValue LHS = getValue(I.getArgOperand(0));
6811           SDValue RHS = getValue(I.getArgOperand(1));
6812           setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurSDLoc(),
6813                                    LHS.getValueType(), LHS, RHS));
6814           return;
6815         }
6816         break;
6817       case LibFunc_fabs:
6818       case LibFunc_fabsf:
6819       case LibFunc_fabsl:
6820         if (visitUnaryFloatCall(I, ISD::FABS))
6821           return;
6822         break;
6823       case LibFunc_fmin:
6824       case LibFunc_fminf:
6825       case LibFunc_fminl:
6826         if (visitBinaryFloatCall(I, ISD::FMINNUM))
6827           return;
6828         break;
6829       case LibFunc_fmax:
6830       case LibFunc_fmaxf:
6831       case LibFunc_fmaxl:
6832         if (visitBinaryFloatCall(I, ISD::FMAXNUM))
6833           return;
6834         break;
6835       case LibFunc_sin:
6836       case LibFunc_sinf:
6837       case LibFunc_sinl:
6838         if (visitUnaryFloatCall(I, ISD::FSIN))
6839           return;
6840         break;
6841       case LibFunc_cos:
6842       case LibFunc_cosf:
6843       case LibFunc_cosl:
6844         if (visitUnaryFloatCall(I, ISD::FCOS))
6845           return;
6846         break;
6847       case LibFunc_sqrt:
6848       case LibFunc_sqrtf:
6849       case LibFunc_sqrtl:
6850       case LibFunc_sqrt_finite:
6851       case LibFunc_sqrtf_finite:
6852       case LibFunc_sqrtl_finite:
6853         if (visitUnaryFloatCall(I, ISD::FSQRT))
6854           return;
6855         break;
6856       case LibFunc_floor:
6857       case LibFunc_floorf:
6858       case LibFunc_floorl:
6859         if (visitUnaryFloatCall(I, ISD::FFLOOR))
6860           return;
6861         break;
6862       case LibFunc_nearbyint:
6863       case LibFunc_nearbyintf:
6864       case LibFunc_nearbyintl:
6865         if (visitUnaryFloatCall(I, ISD::FNEARBYINT))
6866           return;
6867         break;
6868       case LibFunc_ceil:
6869       case LibFunc_ceilf:
6870       case LibFunc_ceill:
6871         if (visitUnaryFloatCall(I, ISD::FCEIL))
6872           return;
6873         break;
6874       case LibFunc_rint:
6875       case LibFunc_rintf:
6876       case LibFunc_rintl:
6877         if (visitUnaryFloatCall(I, ISD::FRINT))
6878           return;
6879         break;
6880       case LibFunc_round:
6881       case LibFunc_roundf:
6882       case LibFunc_roundl:
6883         if (visitUnaryFloatCall(I, ISD::FROUND))
6884           return;
6885         break;
6886       case LibFunc_trunc:
6887       case LibFunc_truncf:
6888       case LibFunc_truncl:
6889         if (visitUnaryFloatCall(I, ISD::FTRUNC))
6890           return;
6891         break;
6892       case LibFunc_log2:
6893       case LibFunc_log2f:
6894       case LibFunc_log2l:
6895         if (visitUnaryFloatCall(I, ISD::FLOG2))
6896           return;
6897         break;
6898       case LibFunc_exp2:
6899       case LibFunc_exp2f:
6900       case LibFunc_exp2l:
6901         if (visitUnaryFloatCall(I, ISD::FEXP2))
6902           return;
6903         break;
6904       case LibFunc_memcmp:
6905         if (visitMemCmpCall(I))
6906           return;
6907         break;
6908       case LibFunc_mempcpy:
6909         if (visitMemPCpyCall(I))
6910           return;
6911         break;
6912       case LibFunc_memchr:
6913         if (visitMemChrCall(I))
6914           return;
6915         break;
6916       case LibFunc_strcpy:
6917         if (visitStrCpyCall(I, false))
6918           return;
6919         break;
6920       case LibFunc_stpcpy:
6921         if (visitStrCpyCall(I, true))
6922           return;
6923         break;
6924       case LibFunc_strcmp:
6925         if (visitStrCmpCall(I))
6926           return;
6927         break;
6928       case LibFunc_strlen:
6929         if (visitStrLenCall(I))
6930           return;
6931         break;
6932       case LibFunc_strnlen:
6933         if (visitStrNLenCall(I))
6934           return;
6935         break;
6936       }
6937     }
6938   }
6939 
6940   SDValue Callee;
6941   if (!RenameFn)
6942     Callee = getValue(I.getCalledValue());
6943   else
6944     Callee = DAG.getExternalSymbol(
6945         RenameFn,
6946         DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()));
6947 
6948   // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't
6949   // have to do anything here to lower funclet bundles.
6950   assert(!I.hasOperandBundlesOtherThan(
6951              {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) &&
6952          "Cannot lower calls with arbitrary operand bundles!");
6953 
6954   if (I.countOperandBundlesOfType(LLVMContext::OB_deopt))
6955     LowerCallSiteWithDeoptBundle(&I, Callee, nullptr);
6956   else
6957     // Check if we can potentially perform a tail call. More detailed checking
6958     // is be done within LowerCallTo, after more information about the call is
6959     // known.
6960     LowerCallTo(&I, Callee, I.isTailCall());
6961 }
6962 
6963 namespace {
6964 
6965 /// AsmOperandInfo - This contains information for each constraint that we are
6966 /// lowering.
6967 class SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
6968 public:
6969   /// CallOperand - If this is the result output operand or a clobber
6970   /// this is null, otherwise it is the incoming operand to the CallInst.
6971   /// This gets modified as the asm is processed.
6972   SDValue CallOperand;
6973 
6974   /// AssignedRegs - If this is a register or register class operand, this
6975   /// contains the set of register corresponding to the operand.
6976   RegsForValue AssignedRegs;
6977 
6978   explicit SDISelAsmOperandInfo(const TargetLowering::AsmOperandInfo &info)
6979     : TargetLowering::AsmOperandInfo(info), CallOperand(nullptr, 0) {
6980   }
6981 
6982   /// Whether or not this operand accesses memory
6983   bool hasMemory(const TargetLowering &TLI) const {
6984     // Indirect operand accesses access memory.
6985     if (isIndirect)
6986       return true;
6987 
6988     for (const auto &Code : Codes)
6989       if (TLI.getConstraintType(Code) == TargetLowering::C_Memory)
6990         return true;
6991 
6992     return false;
6993   }
6994 
6995   /// getCallOperandValEVT - Return the EVT of the Value* that this operand
6996   /// corresponds to.  If there is no Value* for this operand, it returns
6997   /// MVT::Other.
6998   EVT getCallOperandValEVT(LLVMContext &Context, const TargetLowering &TLI,
6999                            const DataLayout &DL) const {
7000     if (!CallOperandVal) return MVT::Other;
7001 
7002     if (isa<BasicBlock>(CallOperandVal))
7003       return TLI.getPointerTy(DL);
7004 
7005     llvm::Type *OpTy = CallOperandVal->getType();
7006 
7007     // FIXME: code duplicated from TargetLowering::ParseConstraints().
7008     // If this is an indirect operand, the operand is a pointer to the
7009     // accessed type.
7010     if (isIndirect) {
7011       PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
7012       if (!PtrTy)
7013         report_fatal_error("Indirect operand for inline asm not a pointer!");
7014       OpTy = PtrTy->getElementType();
7015     }
7016 
7017     // Look for vector wrapped in a struct. e.g. { <16 x i8> }.
7018     if (StructType *STy = dyn_cast<StructType>(OpTy))
7019       if (STy->getNumElements() == 1)
7020         OpTy = STy->getElementType(0);
7021 
7022     // If OpTy is not a single value, it may be a struct/union that we
7023     // can tile with integers.
7024     if (!OpTy->isSingleValueType() && OpTy->isSized()) {
7025       unsigned BitSize = DL.getTypeSizeInBits(OpTy);
7026       switch (BitSize) {
7027       default: break;
7028       case 1:
7029       case 8:
7030       case 16:
7031       case 32:
7032       case 64:
7033       case 128:
7034         OpTy = IntegerType::get(Context, BitSize);
7035         break;
7036       }
7037     }
7038 
7039     return TLI.getValueType(DL, OpTy, true);
7040   }
7041 };
7042 
7043 using SDISelAsmOperandInfoVector = SmallVector<SDISelAsmOperandInfo, 16>;
7044 
7045 } // end anonymous namespace
7046 
7047 /// Make sure that the output operand \p OpInfo and its corresponding input
7048 /// operand \p MatchingOpInfo have compatible constraint types (otherwise error
7049 /// out).
7050 static void patchMatchingInput(const SDISelAsmOperandInfo &OpInfo,
7051                                SDISelAsmOperandInfo &MatchingOpInfo,
7052                                SelectionDAG &DAG) {
7053   if (OpInfo.ConstraintVT == MatchingOpInfo.ConstraintVT)
7054     return;
7055 
7056   const TargetRegisterInfo *TRI = DAG.getSubtarget().getRegisterInfo();
7057   const auto &TLI = DAG.getTargetLoweringInfo();
7058 
7059   std::pair<unsigned, const TargetRegisterClass *> MatchRC =
7060       TLI.getRegForInlineAsmConstraint(TRI, OpInfo.ConstraintCode,
7061                                        OpInfo.ConstraintVT);
7062   std::pair<unsigned, const TargetRegisterClass *> InputRC =
7063       TLI.getRegForInlineAsmConstraint(TRI, MatchingOpInfo.ConstraintCode,
7064                                        MatchingOpInfo.ConstraintVT);
7065   if ((OpInfo.ConstraintVT.isInteger() !=
7066        MatchingOpInfo.ConstraintVT.isInteger()) ||
7067       (MatchRC.second != InputRC.second)) {
7068     // FIXME: error out in a more elegant fashion
7069     report_fatal_error("Unsupported asm: input constraint"
7070                        " with a matching output constraint of"
7071                        " incompatible type!");
7072   }
7073   MatchingOpInfo.ConstraintVT = OpInfo.ConstraintVT;
7074 }
7075 
7076 /// Get a direct memory input to behave well as an indirect operand.
7077 /// This may introduce stores, hence the need for a \p Chain.
7078 /// \return The (possibly updated) chain.
7079 static SDValue getAddressForMemoryInput(SDValue Chain, const SDLoc &Location,
7080                                         SDISelAsmOperandInfo &OpInfo,
7081                                         SelectionDAG &DAG) {
7082   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7083 
7084   // If we don't have an indirect input, put it in the constpool if we can,
7085   // otherwise spill it to a stack slot.
7086   // TODO: This isn't quite right. We need to handle these according to
7087   // the addressing mode that the constraint wants. Also, this may take
7088   // an additional register for the computation and we don't want that
7089   // either.
7090 
7091   // If the operand is a float, integer, or vector constant, spill to a
7092   // constant pool entry to get its address.
7093   const Value *OpVal = OpInfo.CallOperandVal;
7094   if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
7095       isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
7096     OpInfo.CallOperand = DAG.getConstantPool(
7097         cast<Constant>(OpVal), TLI.getPointerTy(DAG.getDataLayout()));
7098     return Chain;
7099   }
7100 
7101   // Otherwise, create a stack slot and emit a store to it before the asm.
7102   Type *Ty = OpVal->getType();
7103   auto &DL = DAG.getDataLayout();
7104   uint64_t TySize = DL.getTypeAllocSize(Ty);
7105   unsigned Align = DL.getPrefTypeAlignment(Ty);
7106   MachineFunction &MF = DAG.getMachineFunction();
7107   int SSFI = MF.getFrameInfo().CreateStackObject(TySize, Align, false);
7108   SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getFrameIndexTy(DL));
7109   Chain = DAG.getStore(Chain, Location, OpInfo.CallOperand, StackSlot,
7110                        MachinePointerInfo::getFixedStack(MF, SSFI));
7111   OpInfo.CallOperand = StackSlot;
7112 
7113   return Chain;
7114 }
7115 
7116 /// GetRegistersForValue - Assign registers (virtual or physical) for the
7117 /// specified operand.  We prefer to assign virtual registers, to allow the
7118 /// register allocator to handle the assignment process.  However, if the asm
7119 /// uses features that we can't model on machineinstrs, we have SDISel do the
7120 /// allocation.  This produces generally horrible, but correct, code.
7121 ///
7122 ///   OpInfo describes the operand.
7123 static void GetRegistersForValue(SelectionDAG &DAG, const TargetLowering &TLI,
7124                                  const SDLoc &DL,
7125                                  SDISelAsmOperandInfo &OpInfo) {
7126   LLVMContext &Context = *DAG.getContext();
7127 
7128   MachineFunction &MF = DAG.getMachineFunction();
7129   SmallVector<unsigned, 4> Regs;
7130   const TargetRegisterInfo &TRI = *MF.getSubtarget().getRegisterInfo();
7131 
7132   // If this is a constraint for a single physreg, or a constraint for a
7133   // register class, find it.
7134   std::pair<unsigned, const TargetRegisterClass *> PhysReg =
7135       TLI.getRegForInlineAsmConstraint(&TRI, OpInfo.ConstraintCode,
7136                                        OpInfo.ConstraintVT);
7137 
7138   unsigned NumRegs = 1;
7139   if (OpInfo.ConstraintVT != MVT::Other) {
7140     // If this is a FP input in an integer register (or visa versa) insert a bit
7141     // cast of the input value.  More generally, handle any case where the input
7142     // value disagrees with the register class we plan to stick this in.
7143     if (OpInfo.Type == InlineAsm::isInput && PhysReg.second &&
7144         !TRI.isTypeLegalForClass(*PhysReg.second, OpInfo.ConstraintVT)) {
7145       // Try to convert to the first EVT that the reg class contains.  If the
7146       // types are identical size, use a bitcast to convert (e.g. two differing
7147       // vector types).
7148       MVT RegVT = *TRI.legalclasstypes_begin(*PhysReg.second);
7149       if (RegVT.getSizeInBits() == OpInfo.CallOperand.getValueSizeInBits()) {
7150         OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
7151                                          RegVT, OpInfo.CallOperand);
7152         OpInfo.ConstraintVT = RegVT;
7153       } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
7154         // If the input is a FP value and we want it in FP registers, do a
7155         // bitcast to the corresponding integer type.  This turns an f64 value
7156         // into i64, which can be passed with two i32 values on a 32-bit
7157         // machine.
7158         RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
7159         OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
7160                                          RegVT, OpInfo.CallOperand);
7161         OpInfo.ConstraintVT = RegVT;
7162       }
7163     }
7164 
7165     NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
7166   }
7167 
7168   MVT RegVT;
7169   EVT ValueVT = OpInfo.ConstraintVT;
7170 
7171   // If this is a constraint for a specific physical register, like {r17},
7172   // assign it now.
7173   if (unsigned AssignedReg = PhysReg.first) {
7174     const TargetRegisterClass *RC = PhysReg.second;
7175     if (OpInfo.ConstraintVT == MVT::Other)
7176       ValueVT = *TRI.legalclasstypes_begin(*RC);
7177 
7178     // Get the actual register value type.  This is important, because the user
7179     // may have asked for (e.g.) the AX register in i32 type.  We need to
7180     // remember that AX is actually i16 to get the right extension.
7181     RegVT = *TRI.legalclasstypes_begin(*RC);
7182 
7183     // This is a explicit reference to a physical register.
7184     Regs.push_back(AssignedReg);
7185 
7186     // If this is an expanded reference, add the rest of the regs to Regs.
7187     if (NumRegs != 1) {
7188       TargetRegisterClass::iterator I = RC->begin();
7189       for (; *I != AssignedReg; ++I)
7190         assert(I != RC->end() && "Didn't find reg!");
7191 
7192       // Already added the first reg.
7193       --NumRegs; ++I;
7194       for (; NumRegs; --NumRegs, ++I) {
7195         assert(I != RC->end() && "Ran out of registers to allocate!");
7196         Regs.push_back(*I);
7197       }
7198     }
7199 
7200     OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
7201     return;
7202   }
7203 
7204   // Otherwise, if this was a reference to an LLVM register class, create vregs
7205   // for this reference.
7206   if (const TargetRegisterClass *RC = PhysReg.second) {
7207     RegVT = *TRI.legalclasstypes_begin(*RC);
7208     if (OpInfo.ConstraintVT == MVT::Other)
7209       ValueVT = RegVT;
7210 
7211     // Create the appropriate number of virtual registers.
7212     MachineRegisterInfo &RegInfo = MF.getRegInfo();
7213     for (; NumRegs; --NumRegs)
7214       Regs.push_back(RegInfo.createVirtualRegister(RC));
7215 
7216     OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
7217     return;
7218   }
7219 
7220   // Otherwise, we couldn't allocate enough registers for this.
7221 }
7222 
7223 static unsigned
7224 findMatchingInlineAsmOperand(unsigned OperandNo,
7225                              const std::vector<SDValue> &AsmNodeOperands) {
7226   // Scan until we find the definition we already emitted of this operand.
7227   unsigned CurOp = InlineAsm::Op_FirstOperand;
7228   for (; OperandNo; --OperandNo) {
7229     // Advance to the next operand.
7230     unsigned OpFlag =
7231         cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
7232     assert((InlineAsm::isRegDefKind(OpFlag) ||
7233             InlineAsm::isRegDefEarlyClobberKind(OpFlag) ||
7234             InlineAsm::isMemKind(OpFlag)) &&
7235            "Skipped past definitions?");
7236     CurOp += InlineAsm::getNumOperandRegisters(OpFlag) + 1;
7237   }
7238   return CurOp;
7239 }
7240 
7241 /// Fill \p Regs with \p NumRegs new virtual registers of type \p RegVT
7242 /// \return true if it has succeeded, false otherwise
7243 static bool createVirtualRegs(SmallVector<unsigned, 4> &Regs, unsigned NumRegs,
7244                               MVT RegVT, SelectionDAG &DAG) {
7245   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7246   MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
7247   for (unsigned i = 0, e = NumRegs; i != e; ++i) {
7248     if (const TargetRegisterClass *RC = TLI.getRegClassFor(RegVT))
7249       Regs.push_back(RegInfo.createVirtualRegister(RC));
7250     else
7251       return false;
7252   }
7253   return true;
7254 }
7255 
7256 namespace {
7257 
7258 class ExtraFlags {
7259   unsigned Flags = 0;
7260 
7261 public:
7262   explicit ExtraFlags(ImmutableCallSite CS) {
7263     const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
7264     if (IA->hasSideEffects())
7265       Flags |= InlineAsm::Extra_HasSideEffects;
7266     if (IA->isAlignStack())
7267       Flags |= InlineAsm::Extra_IsAlignStack;
7268     if (CS.isConvergent())
7269       Flags |= InlineAsm::Extra_IsConvergent;
7270     Flags |= IA->getDialect() * InlineAsm::Extra_AsmDialect;
7271   }
7272 
7273   void update(const TargetLowering::AsmOperandInfo &OpInfo) {
7274     // Ideally, we would only check against memory constraints.  However, the
7275     // meaning of an Other constraint can be target-specific and we can't easily
7276     // reason about it.  Therefore, be conservative and set MayLoad/MayStore
7277     // for Other constraints as well.
7278     if (OpInfo.ConstraintType == TargetLowering::C_Memory ||
7279         OpInfo.ConstraintType == TargetLowering::C_Other) {
7280       if (OpInfo.Type == InlineAsm::isInput)
7281         Flags |= InlineAsm::Extra_MayLoad;
7282       else if (OpInfo.Type == InlineAsm::isOutput)
7283         Flags |= InlineAsm::Extra_MayStore;
7284       else if (OpInfo.Type == InlineAsm::isClobber)
7285         Flags |= (InlineAsm::Extra_MayLoad | InlineAsm::Extra_MayStore);
7286     }
7287   }
7288 
7289   unsigned get() const { return Flags; }
7290 };
7291 
7292 } // end anonymous namespace
7293 
7294 /// visitInlineAsm - Handle a call to an InlineAsm object.
7295 void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) {
7296   const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
7297 
7298   /// ConstraintOperands - Information about all of the constraints.
7299   SDISelAsmOperandInfoVector ConstraintOperands;
7300 
7301   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7302   TargetLowering::AsmOperandInfoVector TargetConstraints = TLI.ParseConstraints(
7303       DAG.getDataLayout(), DAG.getSubtarget().getRegisterInfo(), CS);
7304 
7305   bool hasMemory = false;
7306 
7307   // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore
7308   ExtraFlags ExtraInfo(CS);
7309 
7310   unsigned ArgNo = 0;   // ArgNo - The argument of the CallInst.
7311   unsigned ResNo = 0;   // ResNo - The result number of the next output.
7312   for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
7313     ConstraintOperands.push_back(SDISelAsmOperandInfo(TargetConstraints[i]));
7314     SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
7315 
7316     MVT OpVT = MVT::Other;
7317 
7318     // Compute the value type for each operand.
7319     if (OpInfo.Type == InlineAsm::isInput ||
7320         (OpInfo.Type == InlineAsm::isOutput && OpInfo.isIndirect)) {
7321       OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++));
7322 
7323       // Process the call argument. BasicBlocks are labels, currently appearing
7324       // only in asm's.
7325       if (const BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
7326         OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
7327       } else {
7328         OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
7329       }
7330 
7331       OpVT =
7332           OpInfo
7333               .getCallOperandValEVT(*DAG.getContext(), TLI, DAG.getDataLayout())
7334               .getSimpleVT();
7335     }
7336 
7337     if (OpInfo.Type == InlineAsm::isOutput && !OpInfo.isIndirect) {
7338       // The return value of the call is this value.  As such, there is no
7339       // corresponding argument.
7340       assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
7341       if (StructType *STy = dyn_cast<StructType>(CS.getType())) {
7342         OpVT = TLI.getSimpleValueType(DAG.getDataLayout(),
7343                                       STy->getElementType(ResNo));
7344       } else {
7345         assert(ResNo == 0 && "Asm only has one result!");
7346         OpVT = TLI.getSimpleValueType(DAG.getDataLayout(), CS.getType());
7347       }
7348       ++ResNo;
7349     }
7350 
7351     OpInfo.ConstraintVT = OpVT;
7352 
7353     if (!hasMemory)
7354       hasMemory = OpInfo.hasMemory(TLI);
7355 
7356     // Determine if this InlineAsm MayLoad or MayStore based on the constraints.
7357     // FIXME: Could we compute this on OpInfo rather than TargetConstraints[i]?
7358     auto TargetConstraint = TargetConstraints[i];
7359 
7360     // Compute the constraint code and ConstraintType to use.
7361     TLI.ComputeConstraintToUse(TargetConstraint, SDValue());
7362 
7363     ExtraInfo.update(TargetConstraint);
7364   }
7365 
7366   SDValue Chain, Flag;
7367 
7368   // We won't need to flush pending loads if this asm doesn't touch
7369   // memory and is nonvolatile.
7370   if (hasMemory || IA->hasSideEffects())
7371     Chain = getRoot();
7372   else
7373     Chain = DAG.getRoot();
7374 
7375   // Second pass over the constraints: compute which constraint option to use
7376   // and assign registers to constraints that want a specific physreg.
7377   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7378     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7379 
7380     // If this is an output operand with a matching input operand, look up the
7381     // matching input. If their types mismatch, e.g. one is an integer, the
7382     // other is floating point, or their sizes are different, flag it as an
7383     // error.
7384     if (OpInfo.hasMatchingInput()) {
7385       SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
7386       patchMatchingInput(OpInfo, Input, DAG);
7387     }
7388 
7389     // Compute the constraint code and ConstraintType to use.
7390     TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
7391 
7392     if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
7393         OpInfo.Type == InlineAsm::isClobber)
7394       continue;
7395 
7396     // If this is a memory input, and if the operand is not indirect, do what we
7397     // need to provide an address for the memory input.
7398     if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
7399         !OpInfo.isIndirect) {
7400       assert((OpInfo.isMultipleAlternative ||
7401               (OpInfo.Type == InlineAsm::isInput)) &&
7402              "Can only indirectify direct input operands!");
7403 
7404       // Memory operands really want the address of the value.
7405       Chain = getAddressForMemoryInput(Chain, getCurSDLoc(), OpInfo, DAG);
7406 
7407       // There is no longer a Value* corresponding to this operand.
7408       OpInfo.CallOperandVal = nullptr;
7409 
7410       // It is now an indirect operand.
7411       OpInfo.isIndirect = true;
7412     }
7413 
7414     // If this constraint is for a specific register, allocate it before
7415     // anything else.
7416     if (OpInfo.ConstraintType == TargetLowering::C_Register)
7417       GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo);
7418   }
7419 
7420   // Third pass - Loop over all of the operands, assigning virtual or physregs
7421   // to register class operands.
7422   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7423     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7424 
7425     // C_Register operands have already been allocated, Other/Memory don't need
7426     // to be.
7427     if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
7428       GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo);
7429   }
7430 
7431   // AsmNodeOperands - The operands for the ISD::INLINEASM node.
7432   std::vector<SDValue> AsmNodeOperands;
7433   AsmNodeOperands.push_back(SDValue());  // reserve space for input chain
7434   AsmNodeOperands.push_back(DAG.getTargetExternalSymbol(
7435       IA->getAsmString().c_str(), TLI.getPointerTy(DAG.getDataLayout())));
7436 
7437   // If we have a !srcloc metadata node associated with it, we want to attach
7438   // this to the ultimately generated inline asm machineinstr.  To do this, we
7439   // pass in the third operand as this (potentially null) inline asm MDNode.
7440   const MDNode *SrcLoc = CS.getInstruction()->getMetadata("srcloc");
7441   AsmNodeOperands.push_back(DAG.getMDNode(SrcLoc));
7442 
7443   // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore
7444   // bits as operand 3.
7445   AsmNodeOperands.push_back(DAG.getTargetConstant(
7446       ExtraInfo.get(), getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7447 
7448   // Loop over all of the inputs, copying the operand values into the
7449   // appropriate registers and processing the output regs.
7450   RegsForValue RetValRegs;
7451 
7452   // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
7453   std::vector<std::pair<RegsForValue, Value *>> IndirectStoresToEmit;
7454 
7455   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7456     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7457 
7458     switch (OpInfo.Type) {
7459     case InlineAsm::isOutput:
7460       if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
7461           OpInfo.ConstraintType != TargetLowering::C_Register) {
7462         // Memory output, or 'other' output (e.g. 'X' constraint).
7463         assert(OpInfo.isIndirect && "Memory output must be indirect operand");
7464 
7465         unsigned ConstraintID =
7466             TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode);
7467         assert(ConstraintID != InlineAsm::Constraint_Unknown &&
7468                "Failed to convert memory constraint code to constraint id.");
7469 
7470         // Add information to the INLINEASM node to know about this output.
7471         unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
7472         OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID);
7473         AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlags, getCurSDLoc(),
7474                                                         MVT::i32));
7475         AsmNodeOperands.push_back(OpInfo.CallOperand);
7476         break;
7477       }
7478 
7479       // Otherwise, this is a register or register class output.
7480 
7481       // Copy the output from the appropriate register.  Find a register that
7482       // we can use.
7483       if (OpInfo.AssignedRegs.Regs.empty()) {
7484         emitInlineAsmError(
7485             CS, "couldn't allocate output register for constraint '" +
7486                     Twine(OpInfo.ConstraintCode) + "'");
7487         return;
7488       }
7489 
7490       // If this is an indirect operand, store through the pointer after the
7491       // asm.
7492       if (OpInfo.isIndirect) {
7493         IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
7494                                                       OpInfo.CallOperandVal));
7495       } else {
7496         // This is the result value of the call.
7497         assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
7498         // Concatenate this output onto the outputs list.
7499         RetValRegs.append(OpInfo.AssignedRegs);
7500       }
7501 
7502       // Add information to the INLINEASM node to know that this register is
7503       // set.
7504       OpInfo.AssignedRegs
7505           .AddInlineAsmOperands(OpInfo.isEarlyClobber
7506                                     ? InlineAsm::Kind_RegDefEarlyClobber
7507                                     : InlineAsm::Kind_RegDef,
7508                                 false, 0, getCurSDLoc(), DAG, AsmNodeOperands);
7509       break;
7510 
7511     case InlineAsm::isInput: {
7512       SDValue InOperandVal = OpInfo.CallOperand;
7513 
7514       if (OpInfo.isMatchingInputConstraint()) {
7515         // If this is required to match an output register we have already set,
7516         // just use its register.
7517         auto CurOp = findMatchingInlineAsmOperand(OpInfo.getMatchedOperand(),
7518                                                   AsmNodeOperands);
7519         unsigned OpFlag =
7520           cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
7521         if (InlineAsm::isRegDefKind(OpFlag) ||
7522             InlineAsm::isRegDefEarlyClobberKind(OpFlag)) {
7523           // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
7524           if (OpInfo.isIndirect) {
7525             // This happens on gcc/testsuite/gcc.dg/pr8788-1.c
7526             emitInlineAsmError(CS, "inline asm not supported yet:"
7527                                    " don't know how to handle tied "
7528                                    "indirect register inputs");
7529             return;
7530           }
7531 
7532           MVT RegVT = AsmNodeOperands[CurOp+1].getSimpleValueType();
7533           SmallVector<unsigned, 4> Regs;
7534 
7535           if (!createVirtualRegs(Regs,
7536                                  InlineAsm::getNumOperandRegisters(OpFlag),
7537                                  RegVT, DAG)) {
7538             emitInlineAsmError(CS, "inline asm error: This value type register "
7539                                    "class is not natively supported!");
7540             return;
7541           }
7542 
7543           RegsForValue MatchedRegs(Regs, RegVT, InOperandVal.getValueType());
7544 
7545           SDLoc dl = getCurSDLoc();
7546           // Use the produced MatchedRegs object to
7547           MatchedRegs.getCopyToRegs(InOperandVal, DAG, dl, Chain, &Flag,
7548                                     CS.getInstruction());
7549           MatchedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse,
7550                                            true, OpInfo.getMatchedOperand(), dl,
7551                                            DAG, AsmNodeOperands);
7552           break;
7553         }
7554 
7555         assert(InlineAsm::isMemKind(OpFlag) && "Unknown matching constraint!");
7556         assert(InlineAsm::getNumOperandRegisters(OpFlag) == 1 &&
7557                "Unexpected number of operands");
7558         // Add information to the INLINEASM node to know about this input.
7559         // See InlineAsm.h isUseOperandTiedToDef.
7560         OpFlag = InlineAsm::convertMemFlagWordToMatchingFlagWord(OpFlag);
7561         OpFlag = InlineAsm::getFlagWordForMatchingOp(OpFlag,
7562                                                     OpInfo.getMatchedOperand());
7563         AsmNodeOperands.push_back(DAG.getTargetConstant(
7564             OpFlag, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7565         AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
7566         break;
7567       }
7568 
7569       // Treat indirect 'X' constraint as memory.
7570       if (OpInfo.ConstraintType == TargetLowering::C_Other &&
7571           OpInfo.isIndirect)
7572         OpInfo.ConstraintType = TargetLowering::C_Memory;
7573 
7574       if (OpInfo.ConstraintType == TargetLowering::C_Other) {
7575         std::vector<SDValue> Ops;
7576         TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode,
7577                                           Ops, DAG);
7578         if (Ops.empty()) {
7579           emitInlineAsmError(CS, "invalid operand for inline asm constraint '" +
7580                                      Twine(OpInfo.ConstraintCode) + "'");
7581           return;
7582         }
7583 
7584         // Add information to the INLINEASM node to know about this input.
7585         unsigned ResOpType =
7586           InlineAsm::getFlagWord(InlineAsm::Kind_Imm, Ops.size());
7587         AsmNodeOperands.push_back(DAG.getTargetConstant(
7588             ResOpType, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7589         AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
7590         break;
7591       }
7592 
7593       if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
7594         assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
7595         assert(InOperandVal.getValueType() ==
7596                    TLI.getPointerTy(DAG.getDataLayout()) &&
7597                "Memory operands expect pointer values");
7598 
7599         unsigned ConstraintID =
7600             TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode);
7601         assert(ConstraintID != InlineAsm::Constraint_Unknown &&
7602                "Failed to convert memory constraint code to constraint id.");
7603 
7604         // Add information to the INLINEASM node to know about this input.
7605         unsigned ResOpType = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
7606         ResOpType = InlineAsm::getFlagWordForMem(ResOpType, ConstraintID);
7607         AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
7608                                                         getCurSDLoc(),
7609                                                         MVT::i32));
7610         AsmNodeOperands.push_back(InOperandVal);
7611         break;
7612       }
7613 
7614       assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
7615               OpInfo.ConstraintType == TargetLowering::C_Register) &&
7616              "Unknown constraint type!");
7617 
7618       // TODO: Support this.
7619       if (OpInfo.isIndirect) {
7620         emitInlineAsmError(
7621             CS, "Don't know how to handle indirect register inputs yet "
7622                 "for constraint '" +
7623                     Twine(OpInfo.ConstraintCode) + "'");
7624         return;
7625       }
7626 
7627       // Copy the input into the appropriate registers.
7628       if (OpInfo.AssignedRegs.Regs.empty()) {
7629         emitInlineAsmError(CS, "couldn't allocate input reg for constraint '" +
7630                                    Twine(OpInfo.ConstraintCode) + "'");
7631         return;
7632       }
7633 
7634       SDLoc dl = getCurSDLoc();
7635 
7636       OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, dl,
7637                                         Chain, &Flag, CS.getInstruction());
7638 
7639       OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse, false, 0,
7640                                                dl, DAG, AsmNodeOperands);
7641       break;
7642     }
7643     case InlineAsm::isClobber:
7644       // Add the clobbered value to the operand list, so that the register
7645       // allocator is aware that the physreg got clobbered.
7646       if (!OpInfo.AssignedRegs.Regs.empty())
7647         OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_Clobber,
7648                                                  false, 0, getCurSDLoc(), DAG,
7649                                                  AsmNodeOperands);
7650       break;
7651     }
7652   }
7653 
7654   // Finish up input operands.  Set the input chain and add the flag last.
7655   AsmNodeOperands[InlineAsm::Op_InputChain] = Chain;
7656   if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
7657 
7658   Chain = DAG.getNode(ISD::INLINEASM, getCurSDLoc(),
7659                       DAG.getVTList(MVT::Other, MVT::Glue), AsmNodeOperands);
7660   Flag = Chain.getValue(1);
7661 
7662   // If this asm returns a register value, copy the result from that register
7663   // and set it as the value of the call.
7664   if (!RetValRegs.Regs.empty()) {
7665     SDValue Val = RetValRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
7666                                              Chain, &Flag, CS.getInstruction());
7667 
7668     // FIXME: Why don't we do this for inline asms with MRVs?
7669     if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
7670       EVT ResultType = TLI.getValueType(DAG.getDataLayout(), CS.getType());
7671 
7672       // If any of the results of the inline asm is a vector, it may have the
7673       // wrong width/num elts.  This can happen for register classes that can
7674       // contain multiple different value types.  The preg or vreg allocated may
7675       // not have the same VT as was expected.  Convert it to the right type
7676       // with bit_convert.
7677       if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
7678         Val = DAG.getNode(ISD::BITCAST, getCurSDLoc(),
7679                           ResultType, Val);
7680 
7681       } else if (ResultType != Val.getValueType() &&
7682                  ResultType.isInteger() && Val.getValueType().isInteger()) {
7683         // If a result value was tied to an input value, the computed result may
7684         // have a wider width than the expected result.  Extract the relevant
7685         // portion.
7686         Val = DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), ResultType, Val);
7687       }
7688 
7689       assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
7690     }
7691 
7692     setValue(CS.getInstruction(), Val);
7693     // Don't need to use this as a chain in this case.
7694     if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
7695       return;
7696   }
7697 
7698   std::vector<std::pair<SDValue, const Value *>> StoresToEmit;
7699 
7700   // Process indirect outputs, first output all of the flagged copies out of
7701   // physregs.
7702   for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
7703     RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
7704     const Value *Ptr = IndirectStoresToEmit[i].second;
7705     SDValue OutVal = OutRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
7706                                              Chain, &Flag, IA);
7707     StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
7708   }
7709 
7710   // Emit the non-flagged stores from the physregs.
7711   SmallVector<SDValue, 8> OutChains;
7712   for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) {
7713     SDValue Val = DAG.getStore(Chain, getCurSDLoc(), StoresToEmit[i].first,
7714                                getValue(StoresToEmit[i].second),
7715                                MachinePointerInfo(StoresToEmit[i].second));
7716     OutChains.push_back(Val);
7717   }
7718 
7719   if (!OutChains.empty())
7720     Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, OutChains);
7721 
7722   DAG.setRoot(Chain);
7723 }
7724 
7725 void SelectionDAGBuilder::emitInlineAsmError(ImmutableCallSite CS,
7726                                              const Twine &Message) {
7727   LLVMContext &Ctx = *DAG.getContext();
7728   Ctx.emitError(CS.getInstruction(), Message);
7729 
7730   // Make sure we leave the DAG in a valid state
7731   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7732   auto VT = TLI.getValueType(DAG.getDataLayout(), CS.getType());
7733   setValue(CS.getInstruction(), DAG.getUNDEF(VT));
7734 }
7735 
7736 void SelectionDAGBuilder::visitVAStart(const CallInst &I) {
7737   DAG.setRoot(DAG.getNode(ISD::VASTART, getCurSDLoc(),
7738                           MVT::Other, getRoot(),
7739                           getValue(I.getArgOperand(0)),
7740                           DAG.getSrcValue(I.getArgOperand(0))));
7741 }
7742 
7743 void SelectionDAGBuilder::visitVAArg(const VAArgInst &I) {
7744   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7745   const DataLayout &DL = DAG.getDataLayout();
7746   SDValue V = DAG.getVAArg(TLI.getValueType(DAG.getDataLayout(), I.getType()),
7747                            getCurSDLoc(), getRoot(), getValue(I.getOperand(0)),
7748                            DAG.getSrcValue(I.getOperand(0)),
7749                            DL.getABITypeAlignment(I.getType()));
7750   setValue(&I, V);
7751   DAG.setRoot(V.getValue(1));
7752 }
7753 
7754 void SelectionDAGBuilder::visitVAEnd(const CallInst &I) {
7755   DAG.setRoot(DAG.getNode(ISD::VAEND, getCurSDLoc(),
7756                           MVT::Other, getRoot(),
7757                           getValue(I.getArgOperand(0)),
7758                           DAG.getSrcValue(I.getArgOperand(0))));
7759 }
7760 
7761 void SelectionDAGBuilder::visitVACopy(const CallInst &I) {
7762   DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurSDLoc(),
7763                           MVT::Other, getRoot(),
7764                           getValue(I.getArgOperand(0)),
7765                           getValue(I.getArgOperand(1)),
7766                           DAG.getSrcValue(I.getArgOperand(0)),
7767                           DAG.getSrcValue(I.getArgOperand(1))));
7768 }
7769 
7770 SDValue SelectionDAGBuilder::lowerRangeToAssertZExt(SelectionDAG &DAG,
7771                                                     const Instruction &I,
7772                                                     SDValue Op) {
7773   const MDNode *Range = I.getMetadata(LLVMContext::MD_range);
7774   if (!Range)
7775     return Op;
7776 
7777   ConstantRange CR = getConstantRangeFromMetadata(*Range);
7778   if (CR.isFullSet() || CR.isEmptySet() || CR.isWrappedSet())
7779     return Op;
7780 
7781   APInt Lo = CR.getUnsignedMin();
7782   if (!Lo.isMinValue())
7783     return Op;
7784 
7785   APInt Hi = CR.getUnsignedMax();
7786   unsigned Bits = Hi.getActiveBits();
7787 
7788   EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), Bits);
7789 
7790   SDLoc SL = getCurSDLoc();
7791 
7792   SDValue ZExt = DAG.getNode(ISD::AssertZext, SL, Op.getValueType(), Op,
7793                              DAG.getValueType(SmallVT));
7794   unsigned NumVals = Op.getNode()->getNumValues();
7795   if (NumVals == 1)
7796     return ZExt;
7797 
7798   SmallVector<SDValue, 4> Ops;
7799 
7800   Ops.push_back(ZExt);
7801   for (unsigned I = 1; I != NumVals; ++I)
7802     Ops.push_back(Op.getValue(I));
7803 
7804   return DAG.getMergeValues(Ops, SL);
7805 }
7806 
7807 /// Populate a CallLowerinInfo (into \p CLI) based on the properties of
7808 /// the call being lowered.
7809 ///
7810 /// This is a helper for lowering intrinsics that follow a target calling
7811 /// convention or require stack pointer adjustment. Only a subset of the
7812 /// intrinsic's operands need to participate in the calling convention.
7813 void SelectionDAGBuilder::populateCallLoweringInfo(
7814     TargetLowering::CallLoweringInfo &CLI, ImmutableCallSite CS,
7815     unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy,
7816     bool IsPatchPoint) {
7817   TargetLowering::ArgListTy Args;
7818   Args.reserve(NumArgs);
7819 
7820   // Populate the argument list.
7821   // Attributes for args start at offset 1, after the return attribute.
7822   for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs;
7823        ArgI != ArgE; ++ArgI) {
7824     const Value *V = CS->getOperand(ArgI);
7825 
7826     assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic.");
7827 
7828     TargetLowering::ArgListEntry Entry;
7829     Entry.Node = getValue(V);
7830     Entry.Ty = V->getType();
7831     Entry.setAttributes(&CS, ArgI);
7832     Args.push_back(Entry);
7833   }
7834 
7835   CLI.setDebugLoc(getCurSDLoc())
7836       .setChain(getRoot())
7837       .setCallee(CS.getCallingConv(), ReturnTy, Callee, std::move(Args))
7838       .setDiscardResult(CS->use_empty())
7839       .setIsPatchPoint(IsPatchPoint);
7840 }
7841 
7842 /// Add a stack map intrinsic call's live variable operands to a stackmap
7843 /// or patchpoint target node's operand list.
7844 ///
7845 /// Constants are converted to TargetConstants purely as an optimization to
7846 /// avoid constant materialization and register allocation.
7847 ///
7848 /// FrameIndex operands are converted to TargetFrameIndex so that ISEL does not
7849 /// generate addess computation nodes, and so ExpandISelPseudo can convert the
7850 /// TargetFrameIndex into a DirectMemRefOp StackMap location. This avoids
7851 /// address materialization and register allocation, but may also be required
7852 /// for correctness. If a StackMap (or PatchPoint) intrinsic directly uses an
7853 /// alloca in the entry block, then the runtime may assume that the alloca's
7854 /// StackMap location can be read immediately after compilation and that the
7855 /// location is valid at any point during execution (this is similar to the
7856 /// assumption made by the llvm.gcroot intrinsic). If the alloca's location were
7857 /// only available in a register, then the runtime would need to trap when
7858 /// execution reaches the StackMap in order to read the alloca's location.
7859 static void addStackMapLiveVars(ImmutableCallSite CS, unsigned StartIdx,
7860                                 const SDLoc &DL, SmallVectorImpl<SDValue> &Ops,
7861                                 SelectionDAGBuilder &Builder) {
7862   for (unsigned i = StartIdx, e = CS.arg_size(); i != e; ++i) {
7863     SDValue OpVal = Builder.getValue(CS.getArgument(i));
7864     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
7865       Ops.push_back(
7866         Builder.DAG.getTargetConstant(StackMaps::ConstantOp, DL, MVT::i64));
7867       Ops.push_back(
7868         Builder.DAG.getTargetConstant(C->getSExtValue(), DL, MVT::i64));
7869     } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) {
7870       const TargetLowering &TLI = Builder.DAG.getTargetLoweringInfo();
7871       Ops.push_back(Builder.DAG.getTargetFrameIndex(
7872           FI->getIndex(), TLI.getFrameIndexTy(Builder.DAG.getDataLayout())));
7873     } else
7874       Ops.push_back(OpVal);
7875   }
7876 }
7877 
7878 /// Lower llvm.experimental.stackmap directly to its target opcode.
7879 void SelectionDAGBuilder::visitStackmap(const CallInst &CI) {
7880   // void @llvm.experimental.stackmap(i32 <id>, i32 <numShadowBytes>,
7881   //                                  [live variables...])
7882 
7883   assert(CI.getType()->isVoidTy() && "Stackmap cannot return a value.");
7884 
7885   SDValue Chain, InFlag, Callee, NullPtr;
7886   SmallVector<SDValue, 32> Ops;
7887 
7888   SDLoc DL = getCurSDLoc();
7889   Callee = getValue(CI.getCalledValue());
7890   NullPtr = DAG.getIntPtrConstant(0, DL, true);
7891 
7892   // The stackmap intrinsic only records the live variables (the arguemnts
7893   // passed to it) and emits NOPS (if requested). Unlike the patchpoint
7894   // intrinsic, this won't be lowered to a function call. This means we don't
7895   // have to worry about calling conventions and target specific lowering code.
7896   // Instead we perform the call lowering right here.
7897   //
7898   // chain, flag = CALLSEQ_START(chain, 0, 0)
7899   // chain, flag = STACKMAP(id, nbytes, ..., chain, flag)
7900   // chain, flag = CALLSEQ_END(chain, 0, 0, flag)
7901   //
7902   Chain = DAG.getCALLSEQ_START(getRoot(), 0, 0, DL);
7903   InFlag = Chain.getValue(1);
7904 
7905   // Add the <id> and <numBytes> constants.
7906   SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos));
7907   Ops.push_back(DAG.getTargetConstant(
7908                   cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64));
7909   SDValue NBytesVal = getValue(CI.getOperand(PatchPointOpers::NBytesPos));
7910   Ops.push_back(DAG.getTargetConstant(
7911                   cast<ConstantSDNode>(NBytesVal)->getZExtValue(), DL,
7912                   MVT::i32));
7913 
7914   // Push live variables for the stack map.
7915   addStackMapLiveVars(&CI, 2, DL, Ops, *this);
7916 
7917   // We are not pushing any register mask info here on the operands list,
7918   // because the stackmap doesn't clobber anything.
7919 
7920   // Push the chain and the glue flag.
7921   Ops.push_back(Chain);
7922   Ops.push_back(InFlag);
7923 
7924   // Create the STACKMAP node.
7925   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7926   SDNode *SM = DAG.getMachineNode(TargetOpcode::STACKMAP, DL, NodeTys, Ops);
7927   Chain = SDValue(SM, 0);
7928   InFlag = Chain.getValue(1);
7929 
7930   Chain = DAG.getCALLSEQ_END(Chain, NullPtr, NullPtr, InFlag, DL);
7931 
7932   // Stackmaps don't generate values, so nothing goes into the NodeMap.
7933 
7934   // Set the root to the target-lowered call chain.
7935   DAG.setRoot(Chain);
7936 
7937   // Inform the Frame Information that we have a stackmap in this function.
7938   FuncInfo.MF->getFrameInfo().setHasStackMap();
7939 }
7940 
7941 /// Lower llvm.experimental.patchpoint directly to its target opcode.
7942 void SelectionDAGBuilder::visitPatchpoint(ImmutableCallSite CS,
7943                                           const BasicBlock *EHPadBB) {
7944   // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>,
7945   //                                                 i32 <numBytes>,
7946   //                                                 i8* <target>,
7947   //                                                 i32 <numArgs>,
7948   //                                                 [Args...],
7949   //                                                 [live variables...])
7950 
7951   CallingConv::ID CC = CS.getCallingConv();
7952   bool IsAnyRegCC = CC == CallingConv::AnyReg;
7953   bool HasDef = !CS->getType()->isVoidTy();
7954   SDLoc dl = getCurSDLoc();
7955   SDValue Callee = getValue(CS->getOperand(PatchPointOpers::TargetPos));
7956 
7957   // Handle immediate and symbolic callees.
7958   if (auto* ConstCallee = dyn_cast<ConstantSDNode>(Callee))
7959     Callee = DAG.getIntPtrConstant(ConstCallee->getZExtValue(), dl,
7960                                    /*isTarget=*/true);
7961   else if (auto* SymbolicCallee = dyn_cast<GlobalAddressSDNode>(Callee))
7962     Callee =  DAG.getTargetGlobalAddress(SymbolicCallee->getGlobal(),
7963                                          SDLoc(SymbolicCallee),
7964                                          SymbolicCallee->getValueType(0));
7965 
7966   // Get the real number of arguments participating in the call <numArgs>
7967   SDValue NArgVal = getValue(CS.getArgument(PatchPointOpers::NArgPos));
7968   unsigned NumArgs = cast<ConstantSDNode>(NArgVal)->getZExtValue();
7969 
7970   // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs>
7971   // Intrinsics include all meta-operands up to but not including CC.
7972   unsigned NumMetaOpers = PatchPointOpers::CCPos;
7973   assert(CS.arg_size() >= NumMetaOpers + NumArgs &&
7974          "Not enough arguments provided to the patchpoint intrinsic");
7975 
7976   // For AnyRegCC the arguments are lowered later on manually.
7977   unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
7978   Type *ReturnTy =
7979     IsAnyRegCC ? Type::getVoidTy(*DAG.getContext()) : CS->getType();
7980 
7981   TargetLowering::CallLoweringInfo CLI(DAG);
7982   populateCallLoweringInfo(CLI, CS, NumMetaOpers, NumCallArgs, Callee, ReturnTy,
7983                            true);
7984   std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB);
7985 
7986   SDNode *CallEnd = Result.second.getNode();
7987   if (HasDef && (CallEnd->getOpcode() == ISD::CopyFromReg))
7988     CallEnd = CallEnd->getOperand(0).getNode();
7989 
7990   /// Get a call instruction from the call sequence chain.
7991   /// Tail calls are not allowed.
7992   assert(CallEnd->getOpcode() == ISD::CALLSEQ_END &&
7993          "Expected a callseq node.");
7994   SDNode *Call = CallEnd->getOperand(0).getNode();
7995   bool HasGlue = Call->getGluedNode();
7996 
7997   // Replace the target specific call node with the patchable intrinsic.
7998   SmallVector<SDValue, 8> Ops;
7999 
8000   // Add the <id> and <numBytes> constants.
8001   SDValue IDVal = getValue(CS->getOperand(PatchPointOpers::IDPos));
8002   Ops.push_back(DAG.getTargetConstant(
8003                   cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64));
8004   SDValue NBytesVal = getValue(CS->getOperand(PatchPointOpers::NBytesPos));
8005   Ops.push_back(DAG.getTargetConstant(
8006                   cast<ConstantSDNode>(NBytesVal)->getZExtValue(), dl,
8007                   MVT::i32));
8008 
8009   // Add the callee.
8010   Ops.push_back(Callee);
8011 
8012   // Adjust <numArgs> to account for any arguments that have been passed on the
8013   // stack instead.
8014   // Call Node: Chain, Target, {Args}, RegMask, [Glue]
8015   unsigned NumCallRegArgs = Call->getNumOperands() - (HasGlue ? 4 : 3);
8016   NumCallRegArgs = IsAnyRegCC ? NumArgs : NumCallRegArgs;
8017   Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, dl, MVT::i32));
8018 
8019   // Add the calling convention
8020   Ops.push_back(DAG.getTargetConstant((unsigned)CC, dl, MVT::i32));
8021 
8022   // Add the arguments we omitted previously. The register allocator should
8023   // place these in any free register.
8024   if (IsAnyRegCC)
8025     for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i)
8026       Ops.push_back(getValue(CS.getArgument(i)));
8027 
8028   // Push the arguments from the call instruction up to the register mask.
8029   SDNode::op_iterator e = HasGlue ? Call->op_end()-2 : Call->op_end()-1;
8030   Ops.append(Call->op_begin() + 2, e);
8031 
8032   // Push live variables for the stack map.
8033   addStackMapLiveVars(CS, NumMetaOpers + NumArgs, dl, Ops, *this);
8034 
8035   // Push the register mask info.
8036   if (HasGlue)
8037     Ops.push_back(*(Call->op_end()-2));
8038   else
8039     Ops.push_back(*(Call->op_end()-1));
8040 
8041   // Push the chain (this is originally the first operand of the call, but
8042   // becomes now the last or second to last operand).
8043   Ops.push_back(*(Call->op_begin()));
8044 
8045   // Push the glue flag (last operand).
8046   if (HasGlue)
8047     Ops.push_back(*(Call->op_end()-1));
8048 
8049   SDVTList NodeTys;
8050   if (IsAnyRegCC && HasDef) {
8051     // Create the return types based on the intrinsic definition
8052     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8053     SmallVector<EVT, 3> ValueVTs;
8054     ComputeValueVTs(TLI, DAG.getDataLayout(), CS->getType(), ValueVTs);
8055     assert(ValueVTs.size() == 1 && "Expected only one return value type.");
8056 
8057     // There is always a chain and a glue type at the end
8058     ValueVTs.push_back(MVT::Other);
8059     ValueVTs.push_back(MVT::Glue);
8060     NodeTys = DAG.getVTList(ValueVTs);
8061   } else
8062     NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8063 
8064   // Replace the target specific call node with a PATCHPOINT node.
8065   MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHPOINT,
8066                                          dl, NodeTys, Ops);
8067 
8068   // Update the NodeMap.
8069   if (HasDef) {
8070     if (IsAnyRegCC)
8071       setValue(CS.getInstruction(), SDValue(MN, 0));
8072     else
8073       setValue(CS.getInstruction(), Result.first);
8074   }
8075 
8076   // Fixup the consumers of the intrinsic. The chain and glue may be used in the
8077   // call sequence. Furthermore the location of the chain and glue can change
8078   // when the AnyReg calling convention is used and the intrinsic returns a
8079   // value.
8080   if (IsAnyRegCC && HasDef) {
8081     SDValue From[] = {SDValue(Call, 0), SDValue(Call, 1)};
8082     SDValue To[] = {SDValue(MN, 1), SDValue(MN, 2)};
8083     DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
8084   } else
8085     DAG.ReplaceAllUsesWith(Call, MN);
8086   DAG.DeleteNode(Call);
8087 
8088   // Inform the Frame Information that we have a patchpoint in this function.
8089   FuncInfo.MF->getFrameInfo().setHasPatchPoint();
8090 }
8091 
8092 void SelectionDAGBuilder::visitVectorReduce(const CallInst &I,
8093                                             unsigned Intrinsic) {
8094   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8095   SDValue Op1 = getValue(I.getArgOperand(0));
8096   SDValue Op2;
8097   if (I.getNumArgOperands() > 1)
8098     Op2 = getValue(I.getArgOperand(1));
8099   SDLoc dl = getCurSDLoc();
8100   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
8101   SDValue Res;
8102   FastMathFlags FMF;
8103   if (isa<FPMathOperator>(I))
8104     FMF = I.getFastMathFlags();
8105 
8106   switch (Intrinsic) {
8107   case Intrinsic::experimental_vector_reduce_fadd:
8108     if (FMF.isFast())
8109       Res = DAG.getNode(ISD::VECREDUCE_FADD, dl, VT, Op2);
8110     else
8111       Res = DAG.getNode(ISD::VECREDUCE_STRICT_FADD, dl, VT, Op1, Op2);
8112     break;
8113   case Intrinsic::experimental_vector_reduce_fmul:
8114     if (FMF.isFast())
8115       Res = DAG.getNode(ISD::VECREDUCE_FMUL, dl, VT, Op2);
8116     else
8117       Res = DAG.getNode(ISD::VECREDUCE_STRICT_FMUL, dl, VT, Op1, Op2);
8118     break;
8119   case Intrinsic::experimental_vector_reduce_add:
8120     Res = DAG.getNode(ISD::VECREDUCE_ADD, dl, VT, Op1);
8121     break;
8122   case Intrinsic::experimental_vector_reduce_mul:
8123     Res = DAG.getNode(ISD::VECREDUCE_MUL, dl, VT, Op1);
8124     break;
8125   case Intrinsic::experimental_vector_reduce_and:
8126     Res = DAG.getNode(ISD::VECREDUCE_AND, dl, VT, Op1);
8127     break;
8128   case Intrinsic::experimental_vector_reduce_or:
8129     Res = DAG.getNode(ISD::VECREDUCE_OR, dl, VT, Op1);
8130     break;
8131   case Intrinsic::experimental_vector_reduce_xor:
8132     Res = DAG.getNode(ISD::VECREDUCE_XOR, dl, VT, Op1);
8133     break;
8134   case Intrinsic::experimental_vector_reduce_smax:
8135     Res = DAG.getNode(ISD::VECREDUCE_SMAX, dl, VT, Op1);
8136     break;
8137   case Intrinsic::experimental_vector_reduce_smin:
8138     Res = DAG.getNode(ISD::VECREDUCE_SMIN, dl, VT, Op1);
8139     break;
8140   case Intrinsic::experimental_vector_reduce_umax:
8141     Res = DAG.getNode(ISD::VECREDUCE_UMAX, dl, VT, Op1);
8142     break;
8143   case Intrinsic::experimental_vector_reduce_umin:
8144     Res = DAG.getNode(ISD::VECREDUCE_UMIN, dl, VT, Op1);
8145     break;
8146   case Intrinsic::experimental_vector_reduce_fmax:
8147     Res = DAG.getNode(ISD::VECREDUCE_FMAX, dl, VT, Op1);
8148     break;
8149   case Intrinsic::experimental_vector_reduce_fmin:
8150     Res = DAG.getNode(ISD::VECREDUCE_FMIN, dl, VT, Op1);
8151     break;
8152   default:
8153     llvm_unreachable("Unhandled vector reduce intrinsic");
8154   }
8155   setValue(&I, Res);
8156 }
8157 
8158 /// Returns an AttributeList representing the attributes applied to the return
8159 /// value of the given call.
8160 static AttributeList getReturnAttrs(TargetLowering::CallLoweringInfo &CLI) {
8161   SmallVector<Attribute::AttrKind, 2> Attrs;
8162   if (CLI.RetSExt)
8163     Attrs.push_back(Attribute::SExt);
8164   if (CLI.RetZExt)
8165     Attrs.push_back(Attribute::ZExt);
8166   if (CLI.IsInReg)
8167     Attrs.push_back(Attribute::InReg);
8168 
8169   return AttributeList::get(CLI.RetTy->getContext(), AttributeList::ReturnIndex,
8170                             Attrs);
8171 }
8172 
8173 /// TargetLowering::LowerCallTo - This is the default LowerCallTo
8174 /// implementation, which just calls LowerCall.
8175 /// FIXME: When all targets are
8176 /// migrated to using LowerCall, this hook should be integrated into SDISel.
8177 std::pair<SDValue, SDValue>
8178 TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
8179   // Handle the incoming return values from the call.
8180   CLI.Ins.clear();
8181   Type *OrigRetTy = CLI.RetTy;
8182   SmallVector<EVT, 4> RetTys;
8183   SmallVector<uint64_t, 4> Offsets;
8184   auto &DL = CLI.DAG.getDataLayout();
8185   ComputeValueVTs(*this, DL, CLI.RetTy, RetTys, &Offsets);
8186 
8187   if (CLI.IsPostTypeLegalization) {
8188     // If we are lowering a libcall after legalization, split the return type.
8189     SmallVector<EVT, 4> OldRetTys = std::move(RetTys);
8190     SmallVector<uint64_t, 4> OldOffsets = std::move(Offsets);
8191     for (size_t i = 0, e = OldRetTys.size(); i != e; ++i) {
8192       EVT RetVT = OldRetTys[i];
8193       uint64_t Offset = OldOffsets[i];
8194       MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), RetVT);
8195       unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), RetVT);
8196       unsigned RegisterVTByteSZ = RegisterVT.getSizeInBits() / 8;
8197       RetTys.append(NumRegs, RegisterVT);
8198       for (unsigned j = 0; j != NumRegs; ++j)
8199         Offsets.push_back(Offset + j * RegisterVTByteSZ);
8200     }
8201   }
8202 
8203   SmallVector<ISD::OutputArg, 4> Outs;
8204   GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, *this, DL);
8205 
8206   bool CanLowerReturn =
8207       this->CanLowerReturn(CLI.CallConv, CLI.DAG.getMachineFunction(),
8208                            CLI.IsVarArg, Outs, CLI.RetTy->getContext());
8209 
8210   SDValue DemoteStackSlot;
8211   int DemoteStackIdx = -100;
8212   if (!CanLowerReturn) {
8213     // FIXME: equivalent assert?
8214     // assert(!CS.hasInAllocaArgument() &&
8215     //        "sret demotion is incompatible with inalloca");
8216     uint64_t TySize = DL.getTypeAllocSize(CLI.RetTy);
8217     unsigned Align = DL.getPrefTypeAlignment(CLI.RetTy);
8218     MachineFunction &MF = CLI.DAG.getMachineFunction();
8219     DemoteStackIdx = MF.getFrameInfo().CreateStackObject(TySize, Align, false);
8220     Type *StackSlotPtrType = PointerType::getUnqual(CLI.RetTy);
8221 
8222     DemoteStackSlot = CLI.DAG.getFrameIndex(DemoteStackIdx, getFrameIndexTy(DL));
8223     ArgListEntry Entry;
8224     Entry.Node = DemoteStackSlot;
8225     Entry.Ty = StackSlotPtrType;
8226     Entry.IsSExt = false;
8227     Entry.IsZExt = false;
8228     Entry.IsInReg = false;
8229     Entry.IsSRet = true;
8230     Entry.IsNest = false;
8231     Entry.IsByVal = false;
8232     Entry.IsReturned = false;
8233     Entry.IsSwiftSelf = false;
8234     Entry.IsSwiftError = false;
8235     Entry.Alignment = Align;
8236     CLI.getArgs().insert(CLI.getArgs().begin(), Entry);
8237     CLI.NumFixedArgs += 1;
8238     CLI.RetTy = Type::getVoidTy(CLI.RetTy->getContext());
8239 
8240     // sret demotion isn't compatible with tail-calls, since the sret argument
8241     // points into the callers stack frame.
8242     CLI.IsTailCall = false;
8243   } else {
8244     for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
8245       EVT VT = RetTys[I];
8246       MVT RegisterVT =
8247           getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8248       unsigned NumRegs =
8249           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8250       for (unsigned i = 0; i != NumRegs; ++i) {
8251         ISD::InputArg MyFlags;
8252         MyFlags.VT = RegisterVT;
8253         MyFlags.ArgVT = VT;
8254         MyFlags.Used = CLI.IsReturnValueUsed;
8255         if (CLI.RetSExt)
8256           MyFlags.Flags.setSExt();
8257         if (CLI.RetZExt)
8258           MyFlags.Flags.setZExt();
8259         if (CLI.IsInReg)
8260           MyFlags.Flags.setInReg();
8261         CLI.Ins.push_back(MyFlags);
8262       }
8263     }
8264   }
8265 
8266   // We push in swifterror return as the last element of CLI.Ins.
8267   ArgListTy &Args = CLI.getArgs();
8268   if (supportSwiftError()) {
8269     for (unsigned i = 0, e = Args.size(); i != e; ++i) {
8270       if (Args[i].IsSwiftError) {
8271         ISD::InputArg MyFlags;
8272         MyFlags.VT = getPointerTy(DL);
8273         MyFlags.ArgVT = EVT(getPointerTy(DL));
8274         MyFlags.Flags.setSwiftError();
8275         CLI.Ins.push_back(MyFlags);
8276       }
8277     }
8278   }
8279 
8280   // Handle all of the outgoing arguments.
8281   CLI.Outs.clear();
8282   CLI.OutVals.clear();
8283   for (unsigned i = 0, e = Args.size(); i != e; ++i) {
8284     SmallVector<EVT, 4> ValueVTs;
8285     ComputeValueVTs(*this, DL, Args[i].Ty, ValueVTs);
8286     // FIXME: Split arguments if CLI.IsPostTypeLegalization
8287     Type *FinalType = Args[i].Ty;
8288     if (Args[i].IsByVal)
8289       FinalType = cast<PointerType>(Args[i].Ty)->getElementType();
8290     bool NeedsRegBlock = functionArgumentNeedsConsecutiveRegisters(
8291         FinalType, CLI.CallConv, CLI.IsVarArg);
8292     for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues;
8293          ++Value) {
8294       EVT VT = ValueVTs[Value];
8295       Type *ArgTy = VT.getTypeForEVT(CLI.RetTy->getContext());
8296       SDValue Op = SDValue(Args[i].Node.getNode(),
8297                            Args[i].Node.getResNo() + Value);
8298       ISD::ArgFlagsTy Flags;
8299 
8300       // Certain targets (such as MIPS), may have a different ABI alignment
8301       // for a type depending on the context. Give the target a chance to
8302       // specify the alignment it wants.
8303       unsigned OriginalAlignment = getABIAlignmentForCallingConv(ArgTy, DL);
8304 
8305       if (Args[i].IsZExt)
8306         Flags.setZExt();
8307       if (Args[i].IsSExt)
8308         Flags.setSExt();
8309       if (Args[i].IsInReg) {
8310         // If we are using vectorcall calling convention, a structure that is
8311         // passed InReg - is surely an HVA
8312         if (CLI.CallConv == CallingConv::X86_VectorCall &&
8313             isa<StructType>(FinalType)) {
8314           // The first value of a structure is marked
8315           if (0 == Value)
8316             Flags.setHvaStart();
8317           Flags.setHva();
8318         }
8319         // Set InReg Flag
8320         Flags.setInReg();
8321       }
8322       if (Args[i].IsSRet)
8323         Flags.setSRet();
8324       if (Args[i].IsSwiftSelf)
8325         Flags.setSwiftSelf();
8326       if (Args[i].IsSwiftError)
8327         Flags.setSwiftError();
8328       if (Args[i].IsByVal)
8329         Flags.setByVal();
8330       if (Args[i].IsInAlloca) {
8331         Flags.setInAlloca();
8332         // Set the byval flag for CCAssignFn callbacks that don't know about
8333         // inalloca.  This way we can know how many bytes we should've allocated
8334         // and how many bytes a callee cleanup function will pop.  If we port
8335         // inalloca to more targets, we'll have to add custom inalloca handling
8336         // in the various CC lowering callbacks.
8337         Flags.setByVal();
8338       }
8339       if (Args[i].IsByVal || Args[i].IsInAlloca) {
8340         PointerType *Ty = cast<PointerType>(Args[i].Ty);
8341         Type *ElementTy = Ty->getElementType();
8342         Flags.setByValSize(DL.getTypeAllocSize(ElementTy));
8343         // For ByVal, alignment should come from FE.  BE will guess if this
8344         // info is not there but there are cases it cannot get right.
8345         unsigned FrameAlign;
8346         if (Args[i].Alignment)
8347           FrameAlign = Args[i].Alignment;
8348         else
8349           FrameAlign = getByValTypeAlignment(ElementTy, DL);
8350         Flags.setByValAlign(FrameAlign);
8351       }
8352       if (Args[i].IsNest)
8353         Flags.setNest();
8354       if (NeedsRegBlock)
8355         Flags.setInConsecutiveRegs();
8356       Flags.setOrigAlign(OriginalAlignment);
8357 
8358       MVT PartVT = getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8359       unsigned NumParts =
8360           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8361       SmallVector<SDValue, 4> Parts(NumParts);
8362       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
8363 
8364       if (Args[i].IsSExt)
8365         ExtendKind = ISD::SIGN_EXTEND;
8366       else if (Args[i].IsZExt)
8367         ExtendKind = ISD::ZERO_EXTEND;
8368 
8369       // Conservatively only handle 'returned' on non-vectors that can be lowered,
8370       // for now.
8371       if (Args[i].IsReturned && !Op.getValueType().isVector() &&
8372           CanLowerReturn) {
8373         assert(CLI.RetTy == Args[i].Ty && RetTys.size() == NumValues &&
8374                "unexpected use of 'returned'");
8375         // Before passing 'returned' to the target lowering code, ensure that
8376         // either the register MVT and the actual EVT are the same size or that
8377         // the return value and argument are extended in the same way; in these
8378         // cases it's safe to pass the argument register value unchanged as the
8379         // return register value (although it's at the target's option whether
8380         // to do so)
8381         // TODO: allow code generation to take advantage of partially preserved
8382         // registers rather than clobbering the entire register when the
8383         // parameter extension method is not compatible with the return
8384         // extension method
8385         if ((NumParts * PartVT.getSizeInBits() == VT.getSizeInBits()) ||
8386             (ExtendKind != ISD::ANY_EXTEND && CLI.RetSExt == Args[i].IsSExt &&
8387              CLI.RetZExt == Args[i].IsZExt))
8388           Flags.setReturned();
8389       }
8390 
8391       getCopyToParts(CLI.DAG, CLI.DL, Op, &Parts[0], NumParts, PartVT,
8392                      CLI.CS.getInstruction(), ExtendKind, true);
8393 
8394       for (unsigned j = 0; j != NumParts; ++j) {
8395         // if it isn't first piece, alignment must be 1
8396         ISD::OutputArg MyFlags(Flags, Parts[j].getValueType(), VT,
8397                                i < CLI.NumFixedArgs,
8398                                i, j*Parts[j].getValueType().getStoreSize());
8399         if (NumParts > 1 && j == 0)
8400           MyFlags.Flags.setSplit();
8401         else if (j != 0) {
8402           MyFlags.Flags.setOrigAlign(1);
8403           if (j == NumParts - 1)
8404             MyFlags.Flags.setSplitEnd();
8405         }
8406 
8407         CLI.Outs.push_back(MyFlags);
8408         CLI.OutVals.push_back(Parts[j]);
8409       }
8410 
8411       if (NeedsRegBlock && Value == NumValues - 1)
8412         CLI.Outs[CLI.Outs.size() - 1].Flags.setInConsecutiveRegsLast();
8413     }
8414   }
8415 
8416   SmallVector<SDValue, 4> InVals;
8417   CLI.Chain = LowerCall(CLI, InVals);
8418 
8419   // Update CLI.InVals to use outside of this function.
8420   CLI.InVals = InVals;
8421 
8422   // Verify that the target's LowerCall behaved as expected.
8423   assert(CLI.Chain.getNode() && CLI.Chain.getValueType() == MVT::Other &&
8424          "LowerCall didn't return a valid chain!");
8425   assert((!CLI.IsTailCall || InVals.empty()) &&
8426          "LowerCall emitted a return value for a tail call!");
8427   assert((CLI.IsTailCall || InVals.size() == CLI.Ins.size()) &&
8428          "LowerCall didn't emit the correct number of values!");
8429 
8430   // For a tail call, the return value is merely live-out and there aren't
8431   // any nodes in the DAG representing it. Return a special value to
8432   // indicate that a tail call has been emitted and no more Instructions
8433   // should be processed in the current block.
8434   if (CLI.IsTailCall) {
8435     CLI.DAG.setRoot(CLI.Chain);
8436     return std::make_pair(SDValue(), SDValue());
8437   }
8438 
8439 #ifndef NDEBUG
8440   for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) {
8441     assert(InVals[i].getNode() && "LowerCall emitted a null value!");
8442     assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() &&
8443            "LowerCall emitted a value with the wrong type!");
8444   }
8445 #endif
8446 
8447   SmallVector<SDValue, 4> ReturnValues;
8448   if (!CanLowerReturn) {
8449     // The instruction result is the result of loading from the
8450     // hidden sret parameter.
8451     SmallVector<EVT, 1> PVTs;
8452     Type *PtrRetTy = OrigRetTy->getPointerTo(DL.getAllocaAddrSpace());
8453 
8454     ComputeValueVTs(*this, DL, PtrRetTy, PVTs);
8455     assert(PVTs.size() == 1 && "Pointers should fit in one register");
8456     EVT PtrVT = PVTs[0];
8457 
8458     unsigned NumValues = RetTys.size();
8459     ReturnValues.resize(NumValues);
8460     SmallVector<SDValue, 4> Chains(NumValues);
8461 
8462     // An aggregate return value cannot wrap around the address space, so
8463     // offsets to its parts don't wrap either.
8464     SDNodeFlags Flags;
8465     Flags.setNoUnsignedWrap(true);
8466 
8467     for (unsigned i = 0; i < NumValues; ++i) {
8468       SDValue Add = CLI.DAG.getNode(ISD::ADD, CLI.DL, PtrVT, DemoteStackSlot,
8469                                     CLI.DAG.getConstant(Offsets[i], CLI.DL,
8470                                                         PtrVT), Flags);
8471       SDValue L = CLI.DAG.getLoad(
8472           RetTys[i], CLI.DL, CLI.Chain, Add,
8473           MachinePointerInfo::getFixedStack(CLI.DAG.getMachineFunction(),
8474                                             DemoteStackIdx, Offsets[i]),
8475           /* Alignment = */ 1);
8476       ReturnValues[i] = L;
8477       Chains[i] = L.getValue(1);
8478     }
8479 
8480     CLI.Chain = CLI.DAG.getNode(ISD::TokenFactor, CLI.DL, MVT::Other, Chains);
8481   } else {
8482     // Collect the legal value parts into potentially illegal values
8483     // that correspond to the original function's return values.
8484     Optional<ISD::NodeType> AssertOp;
8485     if (CLI.RetSExt)
8486       AssertOp = ISD::AssertSext;
8487     else if (CLI.RetZExt)
8488       AssertOp = ISD::AssertZext;
8489     unsigned CurReg = 0;
8490     for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
8491       EVT VT = RetTys[I];
8492       MVT RegisterVT =
8493           getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8494       unsigned NumRegs =
8495           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8496 
8497       ReturnValues.push_back(getCopyFromParts(CLI.DAG, CLI.DL, &InVals[CurReg],
8498                                               NumRegs, RegisterVT, VT, nullptr,
8499                                               AssertOp, true));
8500       CurReg += NumRegs;
8501     }
8502 
8503     // For a function returning void, there is no return value. We can't create
8504     // such a node, so we just return a null return value in that case. In
8505     // that case, nothing will actually look at the value.
8506     if (ReturnValues.empty())
8507       return std::make_pair(SDValue(), CLI.Chain);
8508   }
8509 
8510   SDValue Res = CLI.DAG.getNode(ISD::MERGE_VALUES, CLI.DL,
8511                                 CLI.DAG.getVTList(RetTys), ReturnValues);
8512   return std::make_pair(Res, CLI.Chain);
8513 }
8514 
8515 void TargetLowering::LowerOperationWrapper(SDNode *N,
8516                                            SmallVectorImpl<SDValue> &Results,
8517                                            SelectionDAG &DAG) const {
8518   if (SDValue Res = LowerOperation(SDValue(N, 0), DAG))
8519     Results.push_back(Res);
8520 }
8521 
8522 SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
8523   llvm_unreachable("LowerOperation not implemented for this target!");
8524 }
8525 
8526 void
8527 SelectionDAGBuilder::CopyValueToVirtualRegister(const Value *V, unsigned Reg) {
8528   SDValue Op = getNonRegisterValue(V);
8529   assert((Op.getOpcode() != ISD::CopyFromReg ||
8530           cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
8531          "Copy from a reg to the same reg!");
8532   assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
8533 
8534   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8535   // If this is an InlineAsm we have to match the registers required, not the
8536   // notional registers required by the type.
8537 
8538   RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), Reg,
8539                    V->getType(), isABIRegCopy(V));
8540   SDValue Chain = DAG.getEntryNode();
8541 
8542   ISD::NodeType ExtendType = (FuncInfo.PreferredExtendType.find(V) ==
8543                               FuncInfo.PreferredExtendType.end())
8544                                  ? ISD::ANY_EXTEND
8545                                  : FuncInfo.PreferredExtendType[V];
8546   RFV.getCopyToRegs(Op, DAG, getCurSDLoc(), Chain, nullptr, V, ExtendType);
8547   PendingExports.push_back(Chain);
8548 }
8549 
8550 #include "llvm/CodeGen/SelectionDAGISel.h"
8551 
8552 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
8553 /// entry block, return true.  This includes arguments used by switches, since
8554 /// the switch may expand into multiple basic blocks.
8555 static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel) {
8556   // With FastISel active, we may be splitting blocks, so force creation
8557   // of virtual registers for all non-dead arguments.
8558   if (FastISel)
8559     return A->use_empty();
8560 
8561   const BasicBlock &Entry = A->getParent()->front();
8562   for (const User *U : A->users())
8563     if (cast<Instruction>(U)->getParent() != &Entry || isa<SwitchInst>(U))
8564       return false;  // Use not in entry block.
8565 
8566   return true;
8567 }
8568 
8569 using ArgCopyElisionMapTy =
8570     DenseMap<const Argument *,
8571              std::pair<const AllocaInst *, const StoreInst *>>;
8572 
8573 /// Scan the entry block of the function in FuncInfo for arguments that look
8574 /// like copies into a local alloca. Record any copied arguments in
8575 /// ArgCopyElisionCandidates.
8576 static void
8577 findArgumentCopyElisionCandidates(const DataLayout &DL,
8578                                   FunctionLoweringInfo *FuncInfo,
8579                                   ArgCopyElisionMapTy &ArgCopyElisionCandidates) {
8580   // Record the state of every static alloca used in the entry block. Argument
8581   // allocas are all used in the entry block, so we need approximately as many
8582   // entries as we have arguments.
8583   enum StaticAllocaInfo { Unknown, Clobbered, Elidable };
8584   SmallDenseMap<const AllocaInst *, StaticAllocaInfo, 8> StaticAllocas;
8585   unsigned NumArgs = FuncInfo->Fn->arg_size();
8586   StaticAllocas.reserve(NumArgs * 2);
8587 
8588   auto GetInfoIfStaticAlloca = [&](const Value *V) -> StaticAllocaInfo * {
8589     if (!V)
8590       return nullptr;
8591     V = V->stripPointerCasts();
8592     const auto *AI = dyn_cast<AllocaInst>(V);
8593     if (!AI || !AI->isStaticAlloca() || !FuncInfo->StaticAllocaMap.count(AI))
8594       return nullptr;
8595     auto Iter = StaticAllocas.insert({AI, Unknown});
8596     return &Iter.first->second;
8597   };
8598 
8599   // Look for stores of arguments to static allocas. Look through bitcasts and
8600   // GEPs to handle type coercions, as long as the alloca is fully initialized
8601   // by the store. Any non-store use of an alloca escapes it and any subsequent
8602   // unanalyzed store might write it.
8603   // FIXME: Handle structs initialized with multiple stores.
8604   for (const Instruction &I : FuncInfo->Fn->getEntryBlock()) {
8605     // Look for stores, and handle non-store uses conservatively.
8606     const auto *SI = dyn_cast<StoreInst>(&I);
8607     if (!SI) {
8608       // We will look through cast uses, so ignore them completely.
8609       if (I.isCast())
8610         continue;
8611       // Ignore debug info intrinsics, they don't escape or store to allocas.
8612       if (isa<DbgInfoIntrinsic>(I))
8613         continue;
8614       // This is an unknown instruction. Assume it escapes or writes to all
8615       // static alloca operands.
8616       for (const Use &U : I.operands()) {
8617         if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(U))
8618           *Info = StaticAllocaInfo::Clobbered;
8619       }
8620       continue;
8621     }
8622 
8623     // If the stored value is a static alloca, mark it as escaped.
8624     if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(SI->getValueOperand()))
8625       *Info = StaticAllocaInfo::Clobbered;
8626 
8627     // Check if the destination is a static alloca.
8628     const Value *Dst = SI->getPointerOperand()->stripPointerCasts();
8629     StaticAllocaInfo *Info = GetInfoIfStaticAlloca(Dst);
8630     if (!Info)
8631       continue;
8632     const AllocaInst *AI = cast<AllocaInst>(Dst);
8633 
8634     // Skip allocas that have been initialized or clobbered.
8635     if (*Info != StaticAllocaInfo::Unknown)
8636       continue;
8637 
8638     // Check if the stored value is an argument, and that this store fully
8639     // initializes the alloca. Don't elide copies from the same argument twice.
8640     const Value *Val = SI->getValueOperand()->stripPointerCasts();
8641     const auto *Arg = dyn_cast<Argument>(Val);
8642     if (!Arg || Arg->hasInAllocaAttr() || Arg->hasByValAttr() ||
8643         Arg->getType()->isEmptyTy() ||
8644         DL.getTypeStoreSize(Arg->getType()) !=
8645             DL.getTypeAllocSize(AI->getAllocatedType()) ||
8646         ArgCopyElisionCandidates.count(Arg)) {
8647       *Info = StaticAllocaInfo::Clobbered;
8648       continue;
8649     }
8650 
8651     LLVM_DEBUG(dbgs() << "Found argument copy elision candidate: " << *AI
8652                       << '\n');
8653 
8654     // Mark this alloca and store for argument copy elision.
8655     *Info = StaticAllocaInfo::Elidable;
8656     ArgCopyElisionCandidates.insert({Arg, {AI, SI}});
8657 
8658     // Stop scanning if we've seen all arguments. This will happen early in -O0
8659     // builds, which is useful, because -O0 builds have large entry blocks and
8660     // many allocas.
8661     if (ArgCopyElisionCandidates.size() == NumArgs)
8662       break;
8663   }
8664 }
8665 
8666 /// Try to elide argument copies from memory into a local alloca. Succeeds if
8667 /// ArgVal is a load from a suitable fixed stack object.
8668 static void tryToElideArgumentCopy(
8669     FunctionLoweringInfo *FuncInfo, SmallVectorImpl<SDValue> &Chains,
8670     DenseMap<int, int> &ArgCopyElisionFrameIndexMap,
8671     SmallPtrSetImpl<const Instruction *> &ElidedArgCopyInstrs,
8672     ArgCopyElisionMapTy &ArgCopyElisionCandidates, const Argument &Arg,
8673     SDValue ArgVal, bool &ArgHasUses) {
8674   // Check if this is a load from a fixed stack object.
8675   auto *LNode = dyn_cast<LoadSDNode>(ArgVal);
8676   if (!LNode)
8677     return;
8678   auto *FINode = dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode());
8679   if (!FINode)
8680     return;
8681 
8682   // Check that the fixed stack object is the right size and alignment.
8683   // Look at the alignment that the user wrote on the alloca instead of looking
8684   // at the stack object.
8685   auto ArgCopyIter = ArgCopyElisionCandidates.find(&Arg);
8686   assert(ArgCopyIter != ArgCopyElisionCandidates.end());
8687   const AllocaInst *AI = ArgCopyIter->second.first;
8688   int FixedIndex = FINode->getIndex();
8689   int &AllocaIndex = FuncInfo->StaticAllocaMap[AI];
8690   int OldIndex = AllocaIndex;
8691   MachineFrameInfo &MFI = FuncInfo->MF->getFrameInfo();
8692   if (MFI.getObjectSize(FixedIndex) != MFI.getObjectSize(OldIndex)) {
8693     LLVM_DEBUG(
8694         dbgs() << "  argument copy elision failed due to bad fixed stack "
8695                   "object size\n");
8696     return;
8697   }
8698   unsigned RequiredAlignment = AI->getAlignment();
8699   if (!RequiredAlignment) {
8700     RequiredAlignment = FuncInfo->MF->getDataLayout().getABITypeAlignment(
8701         AI->getAllocatedType());
8702   }
8703   if (MFI.getObjectAlignment(FixedIndex) < RequiredAlignment) {
8704     LLVM_DEBUG(dbgs() << "  argument copy elision failed: alignment of alloca "
8705                          "greater than stack argument alignment ("
8706                       << RequiredAlignment << " vs "
8707                       << MFI.getObjectAlignment(FixedIndex) << ")\n");
8708     return;
8709   }
8710 
8711   // Perform the elision. Delete the old stack object and replace its only use
8712   // in the variable info map. Mark the stack object as mutable.
8713   LLVM_DEBUG({
8714     dbgs() << "Eliding argument copy from " << Arg << " to " << *AI << '\n'
8715            << "  Replacing frame index " << OldIndex << " with " << FixedIndex
8716            << '\n';
8717   });
8718   MFI.RemoveStackObject(OldIndex);
8719   MFI.setIsImmutableObjectIndex(FixedIndex, false);
8720   AllocaIndex = FixedIndex;
8721   ArgCopyElisionFrameIndexMap.insert({OldIndex, FixedIndex});
8722   Chains.push_back(ArgVal.getValue(1));
8723 
8724   // Avoid emitting code for the store implementing the copy.
8725   const StoreInst *SI = ArgCopyIter->second.second;
8726   ElidedArgCopyInstrs.insert(SI);
8727 
8728   // Check for uses of the argument again so that we can avoid exporting ArgVal
8729   // if it is't used by anything other than the store.
8730   for (const Value *U : Arg.users()) {
8731     if (U != SI) {
8732       ArgHasUses = true;
8733       break;
8734     }
8735   }
8736 }
8737 
8738 void SelectionDAGISel::LowerArguments(const Function &F) {
8739   SelectionDAG &DAG = SDB->DAG;
8740   SDLoc dl = SDB->getCurSDLoc();
8741   const DataLayout &DL = DAG.getDataLayout();
8742   SmallVector<ISD::InputArg, 16> Ins;
8743 
8744   if (!FuncInfo->CanLowerReturn) {
8745     // Put in an sret pointer parameter before all the other parameters.
8746     SmallVector<EVT, 1> ValueVTs;
8747     ComputeValueVTs(*TLI, DAG.getDataLayout(),
8748                     F.getReturnType()->getPointerTo(
8749                         DAG.getDataLayout().getAllocaAddrSpace()),
8750                     ValueVTs);
8751 
8752     // NOTE: Assuming that a pointer will never break down to more than one VT
8753     // or one register.
8754     ISD::ArgFlagsTy Flags;
8755     Flags.setSRet();
8756     MVT RegisterVT = TLI->getRegisterType(*DAG.getContext(), ValueVTs[0]);
8757     ISD::InputArg RetArg(Flags, RegisterVT, ValueVTs[0], true,
8758                          ISD::InputArg::NoArgIndex, 0);
8759     Ins.push_back(RetArg);
8760   }
8761 
8762   // Look for stores of arguments to static allocas. Mark such arguments with a
8763   // flag to ask the target to give us the memory location of that argument if
8764   // available.
8765   ArgCopyElisionMapTy ArgCopyElisionCandidates;
8766   findArgumentCopyElisionCandidates(DL, FuncInfo, ArgCopyElisionCandidates);
8767 
8768   // Set up the incoming argument description vector.
8769   for (const Argument &Arg : F.args()) {
8770     unsigned ArgNo = Arg.getArgNo();
8771     SmallVector<EVT, 4> ValueVTs;
8772     ComputeValueVTs(*TLI, DAG.getDataLayout(), Arg.getType(), ValueVTs);
8773     bool isArgValueUsed = !Arg.use_empty();
8774     unsigned PartBase = 0;
8775     Type *FinalType = Arg.getType();
8776     if (Arg.hasAttribute(Attribute::ByVal))
8777       FinalType = cast<PointerType>(FinalType)->getElementType();
8778     bool NeedsRegBlock = TLI->functionArgumentNeedsConsecutiveRegisters(
8779         FinalType, F.getCallingConv(), F.isVarArg());
8780     for (unsigned Value = 0, NumValues = ValueVTs.size();
8781          Value != NumValues; ++Value) {
8782       EVT VT = ValueVTs[Value];
8783       Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
8784       ISD::ArgFlagsTy Flags;
8785 
8786       // Certain targets (such as MIPS), may have a different ABI alignment
8787       // for a type depending on the context. Give the target a chance to
8788       // specify the alignment it wants.
8789       unsigned OriginalAlignment =
8790           TLI->getABIAlignmentForCallingConv(ArgTy, DL);
8791 
8792       if (Arg.hasAttribute(Attribute::ZExt))
8793         Flags.setZExt();
8794       if (Arg.hasAttribute(Attribute::SExt))
8795         Flags.setSExt();
8796       if (Arg.hasAttribute(Attribute::InReg)) {
8797         // If we are using vectorcall calling convention, a structure that is
8798         // passed InReg - is surely an HVA
8799         if (F.getCallingConv() == CallingConv::X86_VectorCall &&
8800             isa<StructType>(Arg.getType())) {
8801           // The first value of a structure is marked
8802           if (0 == Value)
8803             Flags.setHvaStart();
8804           Flags.setHva();
8805         }
8806         // Set InReg Flag
8807         Flags.setInReg();
8808       }
8809       if (Arg.hasAttribute(Attribute::StructRet))
8810         Flags.setSRet();
8811       if (Arg.hasAttribute(Attribute::SwiftSelf))
8812         Flags.setSwiftSelf();
8813       if (Arg.hasAttribute(Attribute::SwiftError))
8814         Flags.setSwiftError();
8815       if (Arg.hasAttribute(Attribute::ByVal))
8816         Flags.setByVal();
8817       if (Arg.hasAttribute(Attribute::InAlloca)) {
8818         Flags.setInAlloca();
8819         // Set the byval flag for CCAssignFn callbacks that don't know about
8820         // inalloca.  This way we can know how many bytes we should've allocated
8821         // and how many bytes a callee cleanup function will pop.  If we port
8822         // inalloca to more targets, we'll have to add custom inalloca handling
8823         // in the various CC lowering callbacks.
8824         Flags.setByVal();
8825       }
8826       if (F.getCallingConv() == CallingConv::X86_INTR) {
8827         // IA Interrupt passes frame (1st parameter) by value in the stack.
8828         if (ArgNo == 0)
8829           Flags.setByVal();
8830       }
8831       if (Flags.isByVal() || Flags.isInAlloca()) {
8832         PointerType *Ty = cast<PointerType>(Arg.getType());
8833         Type *ElementTy = Ty->getElementType();
8834         Flags.setByValSize(DL.getTypeAllocSize(ElementTy));
8835         // For ByVal, alignment should be passed from FE.  BE will guess if
8836         // this info is not there but there are cases it cannot get right.
8837         unsigned FrameAlign;
8838         if (Arg.getParamAlignment())
8839           FrameAlign = Arg.getParamAlignment();
8840         else
8841           FrameAlign = TLI->getByValTypeAlignment(ElementTy, DL);
8842         Flags.setByValAlign(FrameAlign);
8843       }
8844       if (Arg.hasAttribute(Attribute::Nest))
8845         Flags.setNest();
8846       if (NeedsRegBlock)
8847         Flags.setInConsecutiveRegs();
8848       Flags.setOrigAlign(OriginalAlignment);
8849       if (ArgCopyElisionCandidates.count(&Arg))
8850         Flags.setCopyElisionCandidate();
8851 
8852       MVT RegisterVT =
8853           TLI->getRegisterTypeForCallingConv(*CurDAG->getContext(), VT);
8854       unsigned NumRegs =
8855           TLI->getNumRegistersForCallingConv(*CurDAG->getContext(), VT);
8856       for (unsigned i = 0; i != NumRegs; ++i) {
8857         ISD::InputArg MyFlags(Flags, RegisterVT, VT, isArgValueUsed,
8858                               ArgNo, PartBase+i*RegisterVT.getStoreSize());
8859         if (NumRegs > 1 && i == 0)
8860           MyFlags.Flags.setSplit();
8861         // if it isn't first piece, alignment must be 1
8862         else if (i > 0) {
8863           MyFlags.Flags.setOrigAlign(1);
8864           if (i == NumRegs - 1)
8865             MyFlags.Flags.setSplitEnd();
8866         }
8867         Ins.push_back(MyFlags);
8868       }
8869       if (NeedsRegBlock && Value == NumValues - 1)
8870         Ins[Ins.size() - 1].Flags.setInConsecutiveRegsLast();
8871       PartBase += VT.getStoreSize();
8872     }
8873   }
8874 
8875   // Call the target to set up the argument values.
8876   SmallVector<SDValue, 8> InVals;
8877   SDValue NewRoot = TLI->LowerFormalArguments(
8878       DAG.getRoot(), F.getCallingConv(), F.isVarArg(), Ins, dl, DAG, InVals);
8879 
8880   // Verify that the target's LowerFormalArguments behaved as expected.
8881   assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
8882          "LowerFormalArguments didn't return a valid chain!");
8883   assert(InVals.size() == Ins.size() &&
8884          "LowerFormalArguments didn't emit the correct number of values!");
8885   LLVM_DEBUG({
8886     for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
8887       assert(InVals[i].getNode() &&
8888              "LowerFormalArguments emitted a null value!");
8889       assert(EVT(Ins[i].VT) == InVals[i].getValueType() &&
8890              "LowerFormalArguments emitted a value with the wrong type!");
8891     }
8892   });
8893 
8894   // Update the DAG with the new chain value resulting from argument lowering.
8895   DAG.setRoot(NewRoot);
8896 
8897   // Set up the argument values.
8898   unsigned i = 0;
8899   if (!FuncInfo->CanLowerReturn) {
8900     // Create a virtual register for the sret pointer, and put in a copy
8901     // from the sret argument into it.
8902     SmallVector<EVT, 1> ValueVTs;
8903     ComputeValueVTs(*TLI, DAG.getDataLayout(),
8904                     F.getReturnType()->getPointerTo(
8905                         DAG.getDataLayout().getAllocaAddrSpace()),
8906                     ValueVTs);
8907     MVT VT = ValueVTs[0].getSimpleVT();
8908     MVT RegVT = TLI->getRegisterType(*CurDAG->getContext(), VT);
8909     Optional<ISD::NodeType> AssertOp = None;
8910     SDValue ArgValue = getCopyFromParts(DAG, dl, &InVals[0], 1,
8911                                         RegVT, VT, nullptr, AssertOp);
8912 
8913     MachineFunction& MF = SDB->DAG.getMachineFunction();
8914     MachineRegisterInfo& RegInfo = MF.getRegInfo();
8915     unsigned SRetReg = RegInfo.createVirtualRegister(TLI->getRegClassFor(RegVT));
8916     FuncInfo->DemoteRegister = SRetReg;
8917     NewRoot =
8918         SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue);
8919     DAG.setRoot(NewRoot);
8920 
8921     // i indexes lowered arguments.  Bump it past the hidden sret argument.
8922     ++i;
8923   }
8924 
8925   SmallVector<SDValue, 4> Chains;
8926   DenseMap<int, int> ArgCopyElisionFrameIndexMap;
8927   for (const Argument &Arg : F.args()) {
8928     SmallVector<SDValue, 4> ArgValues;
8929     SmallVector<EVT, 4> ValueVTs;
8930     ComputeValueVTs(*TLI, DAG.getDataLayout(), Arg.getType(), ValueVTs);
8931     unsigned NumValues = ValueVTs.size();
8932     if (NumValues == 0)
8933       continue;
8934 
8935     bool ArgHasUses = !Arg.use_empty();
8936 
8937     // Elide the copying store if the target loaded this argument from a
8938     // suitable fixed stack object.
8939     if (Ins[i].Flags.isCopyElisionCandidate()) {
8940       tryToElideArgumentCopy(FuncInfo, Chains, ArgCopyElisionFrameIndexMap,
8941                              ElidedArgCopyInstrs, ArgCopyElisionCandidates, Arg,
8942                              InVals[i], ArgHasUses);
8943     }
8944 
8945     // If this argument is unused then remember its value. It is used to generate
8946     // debugging information.
8947     bool isSwiftErrorArg =
8948         TLI->supportSwiftError() &&
8949         Arg.hasAttribute(Attribute::SwiftError);
8950     if (!ArgHasUses && !isSwiftErrorArg) {
8951       SDB->setUnusedArgValue(&Arg, InVals[i]);
8952 
8953       // Also remember any frame index for use in FastISel.
8954       if (FrameIndexSDNode *FI =
8955           dyn_cast<FrameIndexSDNode>(InVals[i].getNode()))
8956         FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
8957     }
8958 
8959     for (unsigned Val = 0; Val != NumValues; ++Val) {
8960       EVT VT = ValueVTs[Val];
8961       MVT PartVT =
8962           TLI->getRegisterTypeForCallingConv(*CurDAG->getContext(), VT);
8963       unsigned NumParts =
8964           TLI->getNumRegistersForCallingConv(*CurDAG->getContext(), VT);
8965 
8966       // Even an apparant 'unused' swifterror argument needs to be returned. So
8967       // we do generate a copy for it that can be used on return from the
8968       // function.
8969       if (ArgHasUses || isSwiftErrorArg) {
8970         Optional<ISD::NodeType> AssertOp;
8971         if (Arg.hasAttribute(Attribute::SExt))
8972           AssertOp = ISD::AssertSext;
8973         else if (Arg.hasAttribute(Attribute::ZExt))
8974           AssertOp = ISD::AssertZext;
8975 
8976         ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
8977                                              PartVT, VT, nullptr, AssertOp,
8978                                              true));
8979       }
8980 
8981       i += NumParts;
8982     }
8983 
8984     // We don't need to do anything else for unused arguments.
8985     if (ArgValues.empty())
8986       continue;
8987 
8988     // Note down frame index.
8989     if (FrameIndexSDNode *FI =
8990         dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode()))
8991       FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
8992 
8993     SDValue Res = DAG.getMergeValues(makeArrayRef(ArgValues.data(), NumValues),
8994                                      SDB->getCurSDLoc());
8995 
8996     SDB->setValue(&Arg, Res);
8997     if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::BUILD_PAIR) {
8998       // We want to associate the argument with the frame index, among
8999       // involved operands, that correspond to the lowest address. The
9000       // getCopyFromParts function, called earlier, is swapping the order of
9001       // the operands to BUILD_PAIR depending on endianness. The result of
9002       // that swapping is that the least significant bits of the argument will
9003       // be in the first operand of the BUILD_PAIR node, and the most
9004       // significant bits will be in the second operand.
9005       unsigned LowAddressOp = DAG.getDataLayout().isBigEndian() ? 1 : 0;
9006       if (LoadSDNode *LNode =
9007           dyn_cast<LoadSDNode>(Res.getOperand(LowAddressOp).getNode()))
9008         if (FrameIndexSDNode *FI =
9009             dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
9010           FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
9011     }
9012 
9013     // Update the SwiftErrorVRegDefMap.
9014     if (Res.getOpcode() == ISD::CopyFromReg && isSwiftErrorArg) {
9015       unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg();
9016       if (TargetRegisterInfo::isVirtualRegister(Reg))
9017         FuncInfo->setCurrentSwiftErrorVReg(FuncInfo->MBB,
9018                                            FuncInfo->SwiftErrorArg, Reg);
9019     }
9020 
9021     // If this argument is live outside of the entry block, insert a copy from
9022     // wherever we got it to the vreg that other BB's will reference it as.
9023     if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::CopyFromReg) {
9024       // If we can, though, try to skip creating an unnecessary vreg.
9025       // FIXME: This isn't very clean... it would be nice to make this more
9026       // general.  It's also subtly incompatible with the hacks FastISel
9027       // uses with vregs.
9028       unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg();
9029       if (TargetRegisterInfo::isVirtualRegister(Reg)) {
9030         FuncInfo->ValueMap[&Arg] = Reg;
9031         continue;
9032       }
9033     }
9034     if (!isOnlyUsedInEntryBlock(&Arg, TM.Options.EnableFastISel)) {
9035       FuncInfo->InitializeRegForValue(&Arg);
9036       SDB->CopyToExportRegsIfNeeded(&Arg);
9037     }
9038   }
9039 
9040   if (!Chains.empty()) {
9041     Chains.push_back(NewRoot);
9042     NewRoot = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
9043   }
9044 
9045   DAG.setRoot(NewRoot);
9046 
9047   assert(i == InVals.size() && "Argument register count mismatch!");
9048 
9049   // If any argument copy elisions occurred and we have debug info, update the
9050   // stale frame indices used in the dbg.declare variable info table.
9051   MachineFunction::VariableDbgInfoMapTy &DbgDeclareInfo = MF->getVariableDbgInfo();
9052   if (!DbgDeclareInfo.empty() && !ArgCopyElisionFrameIndexMap.empty()) {
9053     for (MachineFunction::VariableDbgInfo &VI : DbgDeclareInfo) {
9054       auto I = ArgCopyElisionFrameIndexMap.find(VI.Slot);
9055       if (I != ArgCopyElisionFrameIndexMap.end())
9056         VI.Slot = I->second;
9057     }
9058   }
9059 
9060   // Finally, if the target has anything special to do, allow it to do so.
9061   EmitFunctionEntryCode();
9062 }
9063 
9064 /// Handle PHI nodes in successor blocks.  Emit code into the SelectionDAG to
9065 /// ensure constants are generated when needed.  Remember the virtual registers
9066 /// that need to be added to the Machine PHI nodes as input.  We cannot just
9067 /// directly add them, because expansion might result in multiple MBB's for one
9068 /// BB.  As such, the start of the BB might correspond to a different MBB than
9069 /// the end.
9070 void
9071 SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
9072   const TerminatorInst *TI = LLVMBB->getTerminator();
9073 
9074   SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
9075 
9076   // Check PHI nodes in successors that expect a value to be available from this
9077   // block.
9078   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
9079     const BasicBlock *SuccBB = TI->getSuccessor(succ);
9080     if (!isa<PHINode>(SuccBB->begin())) continue;
9081     MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
9082 
9083     // If this terminator has multiple identical successors (common for
9084     // switches), only handle each succ once.
9085     if (!SuccsHandled.insert(SuccMBB).second)
9086       continue;
9087 
9088     MachineBasicBlock::iterator MBBI = SuccMBB->begin();
9089 
9090     // At this point we know that there is a 1-1 correspondence between LLVM PHI
9091     // nodes and Machine PHI nodes, but the incoming operands have not been
9092     // emitted yet.
9093     for (const PHINode &PN : SuccBB->phis()) {
9094       // Ignore dead phi's.
9095       if (PN.use_empty())
9096         continue;
9097 
9098       // Skip empty types
9099       if (PN.getType()->isEmptyTy())
9100         continue;
9101 
9102       unsigned Reg;
9103       const Value *PHIOp = PN.getIncomingValueForBlock(LLVMBB);
9104 
9105       if (const Constant *C = dyn_cast<Constant>(PHIOp)) {
9106         unsigned &RegOut = ConstantsOut[C];
9107         if (RegOut == 0) {
9108           RegOut = FuncInfo.CreateRegs(C->getType());
9109           CopyValueToVirtualRegister(C, RegOut);
9110         }
9111         Reg = RegOut;
9112       } else {
9113         DenseMap<const Value *, unsigned>::iterator I =
9114           FuncInfo.ValueMap.find(PHIOp);
9115         if (I != FuncInfo.ValueMap.end())
9116           Reg = I->second;
9117         else {
9118           assert(isa<AllocaInst>(PHIOp) &&
9119                  FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
9120                  "Didn't codegen value into a register!??");
9121           Reg = FuncInfo.CreateRegs(PHIOp->getType());
9122           CopyValueToVirtualRegister(PHIOp, Reg);
9123         }
9124       }
9125 
9126       // Remember that this register needs to added to the machine PHI node as
9127       // the input for this MBB.
9128       SmallVector<EVT, 4> ValueVTs;
9129       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9130       ComputeValueVTs(TLI, DAG.getDataLayout(), PN.getType(), ValueVTs);
9131       for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
9132         EVT VT = ValueVTs[vti];
9133         unsigned NumRegisters = TLI.getNumRegisters(*DAG.getContext(), VT);
9134         for (unsigned i = 0, e = NumRegisters; i != e; ++i)
9135           FuncInfo.PHINodesToUpdate.push_back(
9136               std::make_pair(&*MBBI++, Reg + i));
9137         Reg += NumRegisters;
9138       }
9139     }
9140   }
9141 
9142   ConstantsOut.clear();
9143 }
9144 
9145 /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB
9146 /// is 0.
9147 MachineBasicBlock *
9148 SelectionDAGBuilder::StackProtectorDescriptor::
9149 AddSuccessorMBB(const BasicBlock *BB,
9150                 MachineBasicBlock *ParentMBB,
9151                 bool IsLikely,
9152                 MachineBasicBlock *SuccMBB) {
9153   // If SuccBB has not been created yet, create it.
9154   if (!SuccMBB) {
9155     MachineFunction *MF = ParentMBB->getParent();
9156     MachineFunction::iterator BBI(ParentMBB);
9157     SuccMBB = MF->CreateMachineBasicBlock(BB);
9158     MF->insert(++BBI, SuccMBB);
9159   }
9160   // Add it as a successor of ParentMBB.
9161   ParentMBB->addSuccessor(
9162       SuccMBB, BranchProbabilityInfo::getBranchProbStackProtector(IsLikely));
9163   return SuccMBB;
9164 }
9165 
9166 MachineBasicBlock *SelectionDAGBuilder::NextBlock(MachineBasicBlock *MBB) {
9167   MachineFunction::iterator I(MBB);
9168   if (++I == FuncInfo.MF->end())
9169     return nullptr;
9170   return &*I;
9171 }
9172 
9173 /// During lowering new call nodes can be created (such as memset, etc.).
9174 /// Those will become new roots of the current DAG, but complications arise
9175 /// when they are tail calls. In such cases, the call lowering will update
9176 /// the root, but the builder still needs to know that a tail call has been
9177 /// lowered in order to avoid generating an additional return.
9178 void SelectionDAGBuilder::updateDAGForMaybeTailCall(SDValue MaybeTC) {
9179   // If the node is null, we do have a tail call.
9180   if (MaybeTC.getNode() != nullptr)
9181     DAG.setRoot(MaybeTC);
9182   else
9183     HasTailCall = true;
9184 }
9185 
9186 uint64_t
9187 SelectionDAGBuilder::getJumpTableRange(const CaseClusterVector &Clusters,
9188                                        unsigned First, unsigned Last) const {
9189   assert(Last >= First);
9190   const APInt &LowCase = Clusters[First].Low->getValue();
9191   const APInt &HighCase = Clusters[Last].High->getValue();
9192   assert(LowCase.getBitWidth() == HighCase.getBitWidth());
9193 
9194   // FIXME: A range of consecutive cases has 100% density, but only requires one
9195   // comparison to lower. We should discriminate against such consecutive ranges
9196   // in jump tables.
9197 
9198   return (HighCase - LowCase).getLimitedValue((UINT64_MAX - 1) / 100) + 1;
9199 }
9200 
9201 uint64_t SelectionDAGBuilder::getJumpTableNumCases(
9202     const SmallVectorImpl<unsigned> &TotalCases, unsigned First,
9203     unsigned Last) const {
9204   assert(Last >= First);
9205   assert(TotalCases[Last] >= TotalCases[First]);
9206   uint64_t NumCases =
9207       TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]);
9208   return NumCases;
9209 }
9210 
9211 bool SelectionDAGBuilder::buildJumpTable(const CaseClusterVector &Clusters,
9212                                          unsigned First, unsigned Last,
9213                                          const SwitchInst *SI,
9214                                          MachineBasicBlock *DefaultMBB,
9215                                          CaseCluster &JTCluster) {
9216   assert(First <= Last);
9217 
9218   auto Prob = BranchProbability::getZero();
9219   unsigned NumCmps = 0;
9220   std::vector<MachineBasicBlock*> Table;
9221   DenseMap<MachineBasicBlock*, BranchProbability> JTProbs;
9222 
9223   // Initialize probabilities in JTProbs.
9224   for (unsigned I = First; I <= Last; ++I)
9225     JTProbs[Clusters[I].MBB] = BranchProbability::getZero();
9226 
9227   for (unsigned I = First; I <= Last; ++I) {
9228     assert(Clusters[I].Kind == CC_Range);
9229     Prob += Clusters[I].Prob;
9230     const APInt &Low = Clusters[I].Low->getValue();
9231     const APInt &High = Clusters[I].High->getValue();
9232     NumCmps += (Low == High) ? 1 : 2;
9233     if (I != First) {
9234       // Fill the gap between this and the previous cluster.
9235       const APInt &PreviousHigh = Clusters[I - 1].High->getValue();
9236       assert(PreviousHigh.slt(Low));
9237       uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1;
9238       for (uint64_t J = 0; J < Gap; J++)
9239         Table.push_back(DefaultMBB);
9240     }
9241     uint64_t ClusterSize = (High - Low).getLimitedValue() + 1;
9242     for (uint64_t J = 0; J < ClusterSize; ++J)
9243       Table.push_back(Clusters[I].MBB);
9244     JTProbs[Clusters[I].MBB] += Clusters[I].Prob;
9245   }
9246 
9247   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9248   unsigned NumDests = JTProbs.size();
9249   if (TLI.isSuitableForBitTests(
9250           NumDests, NumCmps, Clusters[First].Low->getValue(),
9251           Clusters[Last].High->getValue(), DAG.getDataLayout())) {
9252     // Clusters[First..Last] should be lowered as bit tests instead.
9253     return false;
9254   }
9255 
9256   // Create the MBB that will load from and jump through the table.
9257   // Note: We create it here, but it's not inserted into the function yet.
9258   MachineFunction *CurMF = FuncInfo.MF;
9259   MachineBasicBlock *JumpTableMBB =
9260       CurMF->CreateMachineBasicBlock(SI->getParent());
9261 
9262   // Add successors. Note: use table order for determinism.
9263   SmallPtrSet<MachineBasicBlock *, 8> Done;
9264   for (MachineBasicBlock *Succ : Table) {
9265     if (Done.count(Succ))
9266       continue;
9267     addSuccessorWithProb(JumpTableMBB, Succ, JTProbs[Succ]);
9268     Done.insert(Succ);
9269   }
9270   JumpTableMBB->normalizeSuccProbs();
9271 
9272   unsigned JTI = CurMF->getOrCreateJumpTableInfo(TLI.getJumpTableEncoding())
9273                      ->createJumpTableIndex(Table);
9274 
9275   // Set up the jump table info.
9276   JumpTable JT(-1U, JTI, JumpTableMBB, nullptr);
9277   JumpTableHeader JTH(Clusters[First].Low->getValue(),
9278                       Clusters[Last].High->getValue(), SI->getCondition(),
9279                       nullptr, false);
9280   JTCases.emplace_back(std::move(JTH), std::move(JT));
9281 
9282   JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High,
9283                                      JTCases.size() - 1, Prob);
9284   return true;
9285 }
9286 
9287 void SelectionDAGBuilder::findJumpTables(CaseClusterVector &Clusters,
9288                                          const SwitchInst *SI,
9289                                          MachineBasicBlock *DefaultMBB) {
9290 #ifndef NDEBUG
9291   // Clusters must be non-empty, sorted, and only contain Range clusters.
9292   assert(!Clusters.empty());
9293   for (CaseCluster &C : Clusters)
9294     assert(C.Kind == CC_Range);
9295   for (unsigned i = 1, e = Clusters.size(); i < e; ++i)
9296     assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue()));
9297 #endif
9298 
9299   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9300   if (!TLI.areJTsAllowed(SI->getParent()->getParent()))
9301     return;
9302 
9303   const int64_t N = Clusters.size();
9304   const unsigned MinJumpTableEntries = TLI.getMinimumJumpTableEntries();
9305   const unsigned SmallNumberOfEntries = MinJumpTableEntries / 2;
9306 
9307   if (N < 2 || N < MinJumpTableEntries)
9308     return;
9309 
9310   // TotalCases[i]: Total nbr of cases in Clusters[0..i].
9311   SmallVector<unsigned, 8> TotalCases(N);
9312   for (unsigned i = 0; i < N; ++i) {
9313     const APInt &Hi = Clusters[i].High->getValue();
9314     const APInt &Lo = Clusters[i].Low->getValue();
9315     TotalCases[i] = (Hi - Lo).getLimitedValue() + 1;
9316     if (i != 0)
9317       TotalCases[i] += TotalCases[i - 1];
9318   }
9319 
9320   // Cheap case: the whole range may be suitable for jump table.
9321   uint64_t Range = getJumpTableRange(Clusters,0, N - 1);
9322   uint64_t NumCases = getJumpTableNumCases(TotalCases, 0, N - 1);
9323   assert(NumCases < UINT64_MAX / 100);
9324   assert(Range >= NumCases);
9325   if (TLI.isSuitableForJumpTable(SI, NumCases, Range)) {
9326     CaseCluster JTCluster;
9327     if (buildJumpTable(Clusters, 0, N - 1, SI, DefaultMBB, JTCluster)) {
9328       Clusters[0] = JTCluster;
9329       Clusters.resize(1);
9330       return;
9331     }
9332   }
9333 
9334   // The algorithm below is not suitable for -O0.
9335   if (TM.getOptLevel() == CodeGenOpt::None)
9336     return;
9337 
9338   // Split Clusters into minimum number of dense partitions. The algorithm uses
9339   // the same idea as Kannan & Proebsting "Correction to 'Producing Good Code
9340   // for the Case Statement'" (1994), but builds the MinPartitions array in
9341   // reverse order to make it easier to reconstruct the partitions in ascending
9342   // order. In the choice between two optimal partitionings, it picks the one
9343   // which yields more jump tables.
9344 
9345   // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1].
9346   SmallVector<unsigned, 8> MinPartitions(N);
9347   // LastElement[i] is the last element of the partition starting at i.
9348   SmallVector<unsigned, 8> LastElement(N);
9349   // PartitionsScore[i] is used to break ties when choosing between two
9350   // partitionings resulting in the same number of partitions.
9351   SmallVector<unsigned, 8> PartitionsScore(N);
9352   // For PartitionsScore, a small number of comparisons is considered as good as
9353   // a jump table and a single comparison is considered better than a jump
9354   // table.
9355   enum PartitionScores : unsigned {
9356     NoTable = 0,
9357     Table = 1,
9358     FewCases = 1,
9359     SingleCase = 2
9360   };
9361 
9362   // Base case: There is only one way to partition Clusters[N-1].
9363   MinPartitions[N - 1] = 1;
9364   LastElement[N - 1] = N - 1;
9365   PartitionsScore[N - 1] = PartitionScores::SingleCase;
9366 
9367   // Note: loop indexes are signed to avoid underflow.
9368   for (int64_t i = N - 2; i >= 0; i--) {
9369     // Find optimal partitioning of Clusters[i..N-1].
9370     // Baseline: Put Clusters[i] into a partition on its own.
9371     MinPartitions[i] = MinPartitions[i + 1] + 1;
9372     LastElement[i] = i;
9373     PartitionsScore[i] = PartitionsScore[i + 1] + PartitionScores::SingleCase;
9374 
9375     // Search for a solution that results in fewer partitions.
9376     for (int64_t j = N - 1; j > i; j--) {
9377       // Try building a partition from Clusters[i..j].
9378       uint64_t Range = getJumpTableRange(Clusters, i, j);
9379       uint64_t NumCases = getJumpTableNumCases(TotalCases, i, j);
9380       assert(NumCases < UINT64_MAX / 100);
9381       assert(Range >= NumCases);
9382       if (TLI.isSuitableForJumpTable(SI, NumCases, Range)) {
9383         unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
9384         unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1];
9385         int64_t NumEntries = j - i + 1;
9386 
9387         if (NumEntries == 1)
9388           Score += PartitionScores::SingleCase;
9389         else if (NumEntries <= SmallNumberOfEntries)
9390           Score += PartitionScores::FewCases;
9391         else if (NumEntries >= MinJumpTableEntries)
9392           Score += PartitionScores::Table;
9393 
9394         // If this leads to fewer partitions, or to the same number of
9395         // partitions with better score, it is a better partitioning.
9396         if (NumPartitions < MinPartitions[i] ||
9397             (NumPartitions == MinPartitions[i] && Score > PartitionsScore[i])) {
9398           MinPartitions[i] = NumPartitions;
9399           LastElement[i] = j;
9400           PartitionsScore[i] = Score;
9401         }
9402       }
9403     }
9404   }
9405 
9406   // Iterate over the partitions, replacing some with jump tables in-place.
9407   unsigned DstIndex = 0;
9408   for (unsigned First = 0, Last; First < N; First = Last + 1) {
9409     Last = LastElement[First];
9410     assert(Last >= First);
9411     assert(DstIndex <= First);
9412     unsigned NumClusters = Last - First + 1;
9413 
9414     CaseCluster JTCluster;
9415     if (NumClusters >= MinJumpTableEntries &&
9416         buildJumpTable(Clusters, First, Last, SI, DefaultMBB, JTCluster)) {
9417       Clusters[DstIndex++] = JTCluster;
9418     } else {
9419       for (unsigned I = First; I <= Last; ++I)
9420         std::memmove(&Clusters[DstIndex++], &Clusters[I], sizeof(Clusters[I]));
9421     }
9422   }
9423   Clusters.resize(DstIndex);
9424 }
9425 
9426 bool SelectionDAGBuilder::buildBitTests(CaseClusterVector &Clusters,
9427                                         unsigned First, unsigned Last,
9428                                         const SwitchInst *SI,
9429                                         CaseCluster &BTCluster) {
9430   assert(First <= Last);
9431   if (First == Last)
9432     return false;
9433 
9434   BitVector Dests(FuncInfo.MF->getNumBlockIDs());
9435   unsigned NumCmps = 0;
9436   for (int64_t I = First; I <= Last; ++I) {
9437     assert(Clusters[I].Kind == CC_Range);
9438     Dests.set(Clusters[I].MBB->getNumber());
9439     NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2;
9440   }
9441   unsigned NumDests = Dests.count();
9442 
9443   APInt Low = Clusters[First].Low->getValue();
9444   APInt High = Clusters[Last].High->getValue();
9445   assert(Low.slt(High));
9446 
9447   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9448   const DataLayout &DL = DAG.getDataLayout();
9449   if (!TLI.isSuitableForBitTests(NumDests, NumCmps, Low, High, DL))
9450     return false;
9451 
9452   APInt LowBound;
9453   APInt CmpRange;
9454 
9455   const int BitWidth = TLI.getPointerTy(DL).getSizeInBits();
9456   assert(TLI.rangeFitsInWord(Low, High, DL) &&
9457          "Case range must fit in bit mask!");
9458 
9459   // Check if the clusters cover a contiguous range such that no value in the
9460   // range will jump to the default statement.
9461   bool ContiguousRange = true;
9462   for (int64_t I = First + 1; I <= Last; ++I) {
9463     if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) {
9464       ContiguousRange = false;
9465       break;
9466     }
9467   }
9468 
9469   if (Low.isStrictlyPositive() && High.slt(BitWidth)) {
9470     // Optimize the case where all the case values fit in a word without having
9471     // to subtract minValue. In this case, we can optimize away the subtraction.
9472     LowBound = APInt::getNullValue(Low.getBitWidth());
9473     CmpRange = High;
9474     ContiguousRange = false;
9475   } else {
9476     LowBound = Low;
9477     CmpRange = High - Low;
9478   }
9479 
9480   CaseBitsVector CBV;
9481   auto TotalProb = BranchProbability::getZero();
9482   for (unsigned i = First; i <= Last; ++i) {
9483     // Find the CaseBits for this destination.
9484     unsigned j;
9485     for (j = 0; j < CBV.size(); ++j)
9486       if (CBV[j].BB == Clusters[i].MBB)
9487         break;
9488     if (j == CBV.size())
9489       CBV.push_back(
9490           CaseBits(0, Clusters[i].MBB, 0, BranchProbability::getZero()));
9491     CaseBits *CB = &CBV[j];
9492 
9493     // Update Mask, Bits and ExtraProb.
9494     uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue();
9495     uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue();
9496     assert(Hi >= Lo && Hi < 64 && "Invalid bit case!");
9497     CB->Mask |= (-1ULL >> (63 - (Hi - Lo))) << Lo;
9498     CB->Bits += Hi - Lo + 1;
9499     CB->ExtraProb += Clusters[i].Prob;
9500     TotalProb += Clusters[i].Prob;
9501   }
9502 
9503   BitTestInfo BTI;
9504   llvm::sort(CBV.begin(), CBV.end(), [](const CaseBits &a, const CaseBits &b) {
9505     // Sort by probability first, number of bits second, bit mask third.
9506     if (a.ExtraProb != b.ExtraProb)
9507       return a.ExtraProb > b.ExtraProb;
9508     if (a.Bits != b.Bits)
9509       return a.Bits > b.Bits;
9510     return a.Mask < b.Mask;
9511   });
9512 
9513   for (auto &CB : CBV) {
9514     MachineBasicBlock *BitTestBB =
9515         FuncInfo.MF->CreateMachineBasicBlock(SI->getParent());
9516     BTI.push_back(BitTestCase(CB.Mask, BitTestBB, CB.BB, CB.ExtraProb));
9517   }
9518   BitTestCases.emplace_back(std::move(LowBound), std::move(CmpRange),
9519                             SI->getCondition(), -1U, MVT::Other, false,
9520                             ContiguousRange, nullptr, nullptr, std::move(BTI),
9521                             TotalProb);
9522 
9523   BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High,
9524                                     BitTestCases.size() - 1, TotalProb);
9525   return true;
9526 }
9527 
9528 void SelectionDAGBuilder::findBitTestClusters(CaseClusterVector &Clusters,
9529                                               const SwitchInst *SI) {
9530 // Partition Clusters into as few subsets as possible, where each subset has a
9531 // range that fits in a machine word and has <= 3 unique destinations.
9532 
9533 #ifndef NDEBUG
9534   // Clusters must be sorted and contain Range or JumpTable clusters.
9535   assert(!Clusters.empty());
9536   assert(Clusters[0].Kind == CC_Range || Clusters[0].Kind == CC_JumpTable);
9537   for (const CaseCluster &C : Clusters)
9538     assert(C.Kind == CC_Range || C.Kind == CC_JumpTable);
9539   for (unsigned i = 1; i < Clusters.size(); ++i)
9540     assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue()));
9541 #endif
9542 
9543   // The algorithm below is not suitable for -O0.
9544   if (TM.getOptLevel() == CodeGenOpt::None)
9545     return;
9546 
9547   // If target does not have legal shift left, do not emit bit tests at all.
9548   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9549   const DataLayout &DL = DAG.getDataLayout();
9550 
9551   EVT PTy = TLI.getPointerTy(DL);
9552   if (!TLI.isOperationLegal(ISD::SHL, PTy))
9553     return;
9554 
9555   int BitWidth = PTy.getSizeInBits();
9556   const int64_t N = Clusters.size();
9557 
9558   // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1].
9559   SmallVector<unsigned, 8> MinPartitions(N);
9560   // LastElement[i] is the last element of the partition starting at i.
9561   SmallVector<unsigned, 8> LastElement(N);
9562 
9563   // FIXME: This might not be the best algorithm for finding bit test clusters.
9564 
9565   // Base case: There is only one way to partition Clusters[N-1].
9566   MinPartitions[N - 1] = 1;
9567   LastElement[N - 1] = N - 1;
9568 
9569   // Note: loop indexes are signed to avoid underflow.
9570   for (int64_t i = N - 2; i >= 0; --i) {
9571     // Find optimal partitioning of Clusters[i..N-1].
9572     // Baseline: Put Clusters[i] into a partition on its own.
9573     MinPartitions[i] = MinPartitions[i + 1] + 1;
9574     LastElement[i] = i;
9575 
9576     // Search for a solution that results in fewer partitions.
9577     // Note: the search is limited by BitWidth, reducing time complexity.
9578     for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) {
9579       // Try building a partition from Clusters[i..j].
9580 
9581       // Check the range.
9582       if (!TLI.rangeFitsInWord(Clusters[i].Low->getValue(),
9583                                Clusters[j].High->getValue(), DL))
9584         continue;
9585 
9586       // Check nbr of destinations and cluster types.
9587       // FIXME: This works, but doesn't seem very efficient.
9588       bool RangesOnly = true;
9589       BitVector Dests(FuncInfo.MF->getNumBlockIDs());
9590       for (int64_t k = i; k <= j; k++) {
9591         if (Clusters[k].Kind != CC_Range) {
9592           RangesOnly = false;
9593           break;
9594         }
9595         Dests.set(Clusters[k].MBB->getNumber());
9596       }
9597       if (!RangesOnly || Dests.count() > 3)
9598         break;
9599 
9600       // Check if it's a better partition.
9601       unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
9602       if (NumPartitions < MinPartitions[i]) {
9603         // Found a better partition.
9604         MinPartitions[i] = NumPartitions;
9605         LastElement[i] = j;
9606       }
9607     }
9608   }
9609 
9610   // Iterate over the partitions, replacing with bit-test clusters in-place.
9611   unsigned DstIndex = 0;
9612   for (unsigned First = 0, Last; First < N; First = Last + 1) {
9613     Last = LastElement[First];
9614     assert(First <= Last);
9615     assert(DstIndex <= First);
9616 
9617     CaseCluster BitTestCluster;
9618     if (buildBitTests(Clusters, First, Last, SI, BitTestCluster)) {
9619       Clusters[DstIndex++] = BitTestCluster;
9620     } else {
9621       size_t NumClusters = Last - First + 1;
9622       std::memmove(&Clusters[DstIndex], &Clusters[First],
9623                    sizeof(Clusters[0]) * NumClusters);
9624       DstIndex += NumClusters;
9625     }
9626   }
9627   Clusters.resize(DstIndex);
9628 }
9629 
9630 void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W, Value *Cond,
9631                                         MachineBasicBlock *SwitchMBB,
9632                                         MachineBasicBlock *DefaultMBB) {
9633   MachineFunction *CurMF = FuncInfo.MF;
9634   MachineBasicBlock *NextMBB = nullptr;
9635   MachineFunction::iterator BBI(W.MBB);
9636   if (++BBI != FuncInfo.MF->end())
9637     NextMBB = &*BBI;
9638 
9639   unsigned Size = W.LastCluster - W.FirstCluster + 1;
9640 
9641   BranchProbabilityInfo *BPI = FuncInfo.BPI;
9642 
9643   if (Size == 2 && W.MBB == SwitchMBB) {
9644     // If any two of the cases has the same destination, and if one value
9645     // is the same as the other, but has one bit unset that the other has set,
9646     // use bit manipulation to do two compares at once.  For example:
9647     // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
9648     // TODO: This could be extended to merge any 2 cases in switches with 3
9649     // cases.
9650     // TODO: Handle cases where W.CaseBB != SwitchBB.
9651     CaseCluster &Small = *W.FirstCluster;
9652     CaseCluster &Big = *W.LastCluster;
9653 
9654     if (Small.Low == Small.High && Big.Low == Big.High &&
9655         Small.MBB == Big.MBB) {
9656       const APInt &SmallValue = Small.Low->getValue();
9657       const APInt &BigValue = Big.Low->getValue();
9658 
9659       // Check that there is only one bit different.
9660       APInt CommonBit = BigValue ^ SmallValue;
9661       if (CommonBit.isPowerOf2()) {
9662         SDValue CondLHS = getValue(Cond);
9663         EVT VT = CondLHS.getValueType();
9664         SDLoc DL = getCurSDLoc();
9665 
9666         SDValue Or = DAG.getNode(ISD::OR, DL, VT, CondLHS,
9667                                  DAG.getConstant(CommonBit, DL, VT));
9668         SDValue Cond = DAG.getSetCC(
9669             DL, MVT::i1, Or, DAG.getConstant(BigValue | SmallValue, DL, VT),
9670             ISD::SETEQ);
9671 
9672         // Update successor info.
9673         // Both Small and Big will jump to Small.BB, so we sum up the
9674         // probabilities.
9675         addSuccessorWithProb(SwitchMBB, Small.MBB, Small.Prob + Big.Prob);
9676         if (BPI)
9677           addSuccessorWithProb(
9678               SwitchMBB, DefaultMBB,
9679               // The default destination is the first successor in IR.
9680               BPI->getEdgeProbability(SwitchMBB->getBasicBlock(), (unsigned)0));
9681         else
9682           addSuccessorWithProb(SwitchMBB, DefaultMBB);
9683 
9684         // Insert the true branch.
9685         SDValue BrCond =
9686             DAG.getNode(ISD::BRCOND, DL, MVT::Other, getControlRoot(), Cond,
9687                         DAG.getBasicBlock(Small.MBB));
9688         // Insert the false branch.
9689         BrCond = DAG.getNode(ISD::BR, DL, MVT::Other, BrCond,
9690                              DAG.getBasicBlock(DefaultMBB));
9691 
9692         DAG.setRoot(BrCond);
9693         return;
9694       }
9695     }
9696   }
9697 
9698   if (TM.getOptLevel() != CodeGenOpt::None) {
9699     // Here, we order cases by probability so the most likely case will be
9700     // checked first. However, two clusters can have the same probability in
9701     // which case their relative ordering is non-deterministic. So we use Low
9702     // as a tie-breaker as clusters are guaranteed to never overlap.
9703     llvm::sort(W.FirstCluster, W.LastCluster + 1,
9704                [](const CaseCluster &a, const CaseCluster &b) {
9705       return a.Prob != b.Prob ?
9706              a.Prob > b.Prob :
9707              a.Low->getValue().slt(b.Low->getValue());
9708     });
9709 
9710     // Rearrange the case blocks so that the last one falls through if possible
9711     // without changing the order of probabilities.
9712     for (CaseClusterIt I = W.LastCluster; I > W.FirstCluster; ) {
9713       --I;
9714       if (I->Prob > W.LastCluster->Prob)
9715         break;
9716       if (I->Kind == CC_Range && I->MBB == NextMBB) {
9717         std::swap(*I, *W.LastCluster);
9718         break;
9719       }
9720     }
9721   }
9722 
9723   // Compute total probability.
9724   BranchProbability DefaultProb = W.DefaultProb;
9725   BranchProbability UnhandledProbs = DefaultProb;
9726   for (CaseClusterIt I = W.FirstCluster; I <= W.LastCluster; ++I)
9727     UnhandledProbs += I->Prob;
9728 
9729   MachineBasicBlock *CurMBB = W.MBB;
9730   for (CaseClusterIt I = W.FirstCluster, E = W.LastCluster; I <= E; ++I) {
9731     MachineBasicBlock *Fallthrough;
9732     if (I == W.LastCluster) {
9733       // For the last cluster, fall through to the default destination.
9734       Fallthrough = DefaultMBB;
9735     } else {
9736       Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock());
9737       CurMF->insert(BBI, Fallthrough);
9738       // Put Cond in a virtual register to make it available from the new blocks.
9739       ExportFromCurrentBlock(Cond);
9740     }
9741     UnhandledProbs -= I->Prob;
9742 
9743     switch (I->Kind) {
9744       case CC_JumpTable: {
9745         // FIXME: Optimize away range check based on pivot comparisons.
9746         JumpTableHeader *JTH = &JTCases[I->JTCasesIndex].first;
9747         JumpTable *JT = &JTCases[I->JTCasesIndex].second;
9748 
9749         // The jump block hasn't been inserted yet; insert it here.
9750         MachineBasicBlock *JumpMBB = JT->MBB;
9751         CurMF->insert(BBI, JumpMBB);
9752 
9753         auto JumpProb = I->Prob;
9754         auto FallthroughProb = UnhandledProbs;
9755 
9756         // If the default statement is a target of the jump table, we evenly
9757         // distribute the default probability to successors of CurMBB. Also
9758         // update the probability on the edge from JumpMBB to Fallthrough.
9759         for (MachineBasicBlock::succ_iterator SI = JumpMBB->succ_begin(),
9760                                               SE = JumpMBB->succ_end();
9761              SI != SE; ++SI) {
9762           if (*SI == DefaultMBB) {
9763             JumpProb += DefaultProb / 2;
9764             FallthroughProb -= DefaultProb / 2;
9765             JumpMBB->setSuccProbability(SI, DefaultProb / 2);
9766             JumpMBB->normalizeSuccProbs();
9767             break;
9768           }
9769         }
9770 
9771         addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb);
9772         addSuccessorWithProb(CurMBB, JumpMBB, JumpProb);
9773         CurMBB->normalizeSuccProbs();
9774 
9775         // The jump table header will be inserted in our current block, do the
9776         // range check, and fall through to our fallthrough block.
9777         JTH->HeaderBB = CurMBB;
9778         JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader.
9779 
9780         // If we're in the right place, emit the jump table header right now.
9781         if (CurMBB == SwitchMBB) {
9782           visitJumpTableHeader(*JT, *JTH, SwitchMBB);
9783           JTH->Emitted = true;
9784         }
9785         break;
9786       }
9787       case CC_BitTests: {
9788         // FIXME: Optimize away range check based on pivot comparisons.
9789         BitTestBlock *BTB = &BitTestCases[I->BTCasesIndex];
9790 
9791         // The bit test blocks haven't been inserted yet; insert them here.
9792         for (BitTestCase &BTC : BTB->Cases)
9793           CurMF->insert(BBI, BTC.ThisBB);
9794 
9795         // Fill in fields of the BitTestBlock.
9796         BTB->Parent = CurMBB;
9797         BTB->Default = Fallthrough;
9798 
9799         BTB->DefaultProb = UnhandledProbs;
9800         // If the cases in bit test don't form a contiguous range, we evenly
9801         // distribute the probability on the edge to Fallthrough to two
9802         // successors of CurMBB.
9803         if (!BTB->ContiguousRange) {
9804           BTB->Prob += DefaultProb / 2;
9805           BTB->DefaultProb -= DefaultProb / 2;
9806         }
9807 
9808         // If we're in the right place, emit the bit test header right now.
9809         if (CurMBB == SwitchMBB) {
9810           visitBitTestHeader(*BTB, SwitchMBB);
9811           BTB->Emitted = true;
9812         }
9813         break;
9814       }
9815       case CC_Range: {
9816         const Value *RHS, *LHS, *MHS;
9817         ISD::CondCode CC;
9818         if (I->Low == I->High) {
9819           // Check Cond == I->Low.
9820           CC = ISD::SETEQ;
9821           LHS = Cond;
9822           RHS=I->Low;
9823           MHS = nullptr;
9824         } else {
9825           // Check I->Low <= Cond <= I->High.
9826           CC = ISD::SETLE;
9827           LHS = I->Low;
9828           MHS = Cond;
9829           RHS = I->High;
9830         }
9831 
9832         // The false probability is the sum of all unhandled cases.
9833         CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB,
9834                      getCurSDLoc(), I->Prob, UnhandledProbs);
9835 
9836         if (CurMBB == SwitchMBB)
9837           visitSwitchCase(CB, SwitchMBB);
9838         else
9839           SwitchCases.push_back(CB);
9840 
9841         break;
9842       }
9843     }
9844     CurMBB = Fallthrough;
9845   }
9846 }
9847 
9848 unsigned SelectionDAGBuilder::caseClusterRank(const CaseCluster &CC,
9849                                               CaseClusterIt First,
9850                                               CaseClusterIt Last) {
9851   return std::count_if(First, Last + 1, [&](const CaseCluster &X) {
9852     if (X.Prob != CC.Prob)
9853       return X.Prob > CC.Prob;
9854 
9855     // Ties are broken by comparing the case value.
9856     return X.Low->getValue().slt(CC.Low->getValue());
9857   });
9858 }
9859 
9860 void SelectionDAGBuilder::splitWorkItem(SwitchWorkList &WorkList,
9861                                         const SwitchWorkListItem &W,
9862                                         Value *Cond,
9863                                         MachineBasicBlock *SwitchMBB) {
9864   assert(W.FirstCluster->Low->getValue().slt(W.LastCluster->Low->getValue()) &&
9865          "Clusters not sorted?");
9866 
9867   assert(W.LastCluster - W.FirstCluster + 1 >= 2 && "Too small to split!");
9868 
9869   // Balance the tree based on branch probabilities to create a near-optimal (in
9870   // terms of search time given key frequency) binary search tree. See e.g. Kurt
9871   // Mehlhorn "Nearly Optimal Binary Search Trees" (1975).
9872   CaseClusterIt LastLeft = W.FirstCluster;
9873   CaseClusterIt FirstRight = W.LastCluster;
9874   auto LeftProb = LastLeft->Prob + W.DefaultProb / 2;
9875   auto RightProb = FirstRight->Prob + W.DefaultProb / 2;
9876 
9877   // Move LastLeft and FirstRight towards each other from opposite directions to
9878   // find a partitioning of the clusters which balances the probability on both
9879   // sides. If LeftProb and RightProb are equal, alternate which side is
9880   // taken to ensure 0-probability nodes are distributed evenly.
9881   unsigned I = 0;
9882   while (LastLeft + 1 < FirstRight) {
9883     if (LeftProb < RightProb || (LeftProb == RightProb && (I & 1)))
9884       LeftProb += (++LastLeft)->Prob;
9885     else
9886       RightProb += (--FirstRight)->Prob;
9887     I++;
9888   }
9889 
9890   while (true) {
9891     // Our binary search tree differs from a typical BST in that ours can have up
9892     // to three values in each leaf. The pivot selection above doesn't take that
9893     // into account, which means the tree might require more nodes and be less
9894     // efficient. We compensate for this here.
9895 
9896     unsigned NumLeft = LastLeft - W.FirstCluster + 1;
9897     unsigned NumRight = W.LastCluster - FirstRight + 1;
9898 
9899     if (std::min(NumLeft, NumRight) < 3 && std::max(NumLeft, NumRight) > 3) {
9900       // If one side has less than 3 clusters, and the other has more than 3,
9901       // consider taking a cluster from the other side.
9902 
9903       if (NumLeft < NumRight) {
9904         // Consider moving the first cluster on the right to the left side.
9905         CaseCluster &CC = *FirstRight;
9906         unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster);
9907         unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft);
9908         if (LeftSideRank <= RightSideRank) {
9909           // Moving the cluster to the left does not demote it.
9910           ++LastLeft;
9911           ++FirstRight;
9912           continue;
9913         }
9914       } else {
9915         assert(NumRight < NumLeft);
9916         // Consider moving the last element on the left to the right side.
9917         CaseCluster &CC = *LastLeft;
9918         unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft);
9919         unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster);
9920         if (RightSideRank <= LeftSideRank) {
9921           // Moving the cluster to the right does not demot it.
9922           --LastLeft;
9923           --FirstRight;
9924           continue;
9925         }
9926       }
9927     }
9928     break;
9929   }
9930 
9931   assert(LastLeft + 1 == FirstRight);
9932   assert(LastLeft >= W.FirstCluster);
9933   assert(FirstRight <= W.LastCluster);
9934 
9935   // Use the first element on the right as pivot since we will make less-than
9936   // comparisons against it.
9937   CaseClusterIt PivotCluster = FirstRight;
9938   assert(PivotCluster > W.FirstCluster);
9939   assert(PivotCluster <= W.LastCluster);
9940 
9941   CaseClusterIt FirstLeft = W.FirstCluster;
9942   CaseClusterIt LastRight = W.LastCluster;
9943 
9944   const ConstantInt *Pivot = PivotCluster->Low;
9945 
9946   // New blocks will be inserted immediately after the current one.
9947   MachineFunction::iterator BBI(W.MBB);
9948   ++BBI;
9949 
9950   // We will branch to the LHS if Value < Pivot. If LHS is a single cluster,
9951   // we can branch to its destination directly if it's squeezed exactly in
9952   // between the known lower bound and Pivot - 1.
9953   MachineBasicBlock *LeftMBB;
9954   if (FirstLeft == LastLeft && FirstLeft->Kind == CC_Range &&
9955       FirstLeft->Low == W.GE &&
9956       (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) {
9957     LeftMBB = FirstLeft->MBB;
9958   } else {
9959     LeftMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock());
9960     FuncInfo.MF->insert(BBI, LeftMBB);
9961     WorkList.push_back(
9962         {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2});
9963     // Put Cond in a virtual register to make it available from the new blocks.
9964     ExportFromCurrentBlock(Cond);
9965   }
9966 
9967   // Similarly, we will branch to the RHS if Value >= Pivot. If RHS is a
9968   // single cluster, RHS.Low == Pivot, and we can branch to its destination
9969   // directly if RHS.High equals the current upper bound.
9970   MachineBasicBlock *RightMBB;
9971   if (FirstRight == LastRight && FirstRight->Kind == CC_Range &&
9972       W.LT && (FirstRight->High->getValue() + 1ULL) == W.LT->getValue()) {
9973     RightMBB = FirstRight->MBB;
9974   } else {
9975     RightMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock());
9976     FuncInfo.MF->insert(BBI, RightMBB);
9977     WorkList.push_back(
9978         {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2});
9979     // Put Cond in a virtual register to make it available from the new blocks.
9980     ExportFromCurrentBlock(Cond);
9981   }
9982 
9983   // Create the CaseBlock record that will be used to lower the branch.
9984   CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB,
9985                getCurSDLoc(), LeftProb, RightProb);
9986 
9987   if (W.MBB == SwitchMBB)
9988     visitSwitchCase(CB, SwitchMBB);
9989   else
9990     SwitchCases.push_back(CB);
9991 }
9992 
9993 // Scale CaseProb after peeling a case with the probablity of PeeledCaseProb
9994 // from the swith statement.
9995 static BranchProbability scaleCaseProbality(BranchProbability CaseProb,
9996                                             BranchProbability PeeledCaseProb) {
9997   if (PeeledCaseProb == BranchProbability::getOne())
9998     return BranchProbability::getZero();
9999   BranchProbability SwitchProb = PeeledCaseProb.getCompl();
10000 
10001   uint32_t Numerator = CaseProb.getNumerator();
10002   uint32_t Denominator = SwitchProb.scale(CaseProb.getDenominator());
10003   return BranchProbability(Numerator, std::max(Numerator, Denominator));
10004 }
10005 
10006 // Try to peel the top probability case if it exceeds the threshold.
10007 // Return current MachineBasicBlock for the switch statement if the peeling
10008 // does not occur.
10009 // If the peeling is performed, return the newly created MachineBasicBlock
10010 // for the peeled switch statement. Also update Clusters to remove the peeled
10011 // case. PeeledCaseProb is the BranchProbability for the peeled case.
10012 MachineBasicBlock *SelectionDAGBuilder::peelDominantCaseCluster(
10013     const SwitchInst &SI, CaseClusterVector &Clusters,
10014     BranchProbability &PeeledCaseProb) {
10015   MachineBasicBlock *SwitchMBB = FuncInfo.MBB;
10016   // Don't perform if there is only one cluster or optimizing for size.
10017   if (SwitchPeelThreshold > 100 || !FuncInfo.BPI || Clusters.size() < 2 ||
10018       TM.getOptLevel() == CodeGenOpt::None ||
10019       SwitchMBB->getParent()->getFunction().optForMinSize())
10020     return SwitchMBB;
10021 
10022   BranchProbability TopCaseProb = BranchProbability(SwitchPeelThreshold, 100);
10023   unsigned PeeledCaseIndex = 0;
10024   bool SwitchPeeled = false;
10025   for (unsigned Index = 0; Index < Clusters.size(); ++Index) {
10026     CaseCluster &CC = Clusters[Index];
10027     if (CC.Prob < TopCaseProb)
10028       continue;
10029     TopCaseProb = CC.Prob;
10030     PeeledCaseIndex = Index;
10031     SwitchPeeled = true;
10032   }
10033   if (!SwitchPeeled)
10034     return SwitchMBB;
10035 
10036   LLVM_DEBUG(dbgs() << "Peeled one top case in switch stmt, prob: "
10037                     << TopCaseProb << "\n");
10038 
10039   // Record the MBB for the peeled switch statement.
10040   MachineFunction::iterator BBI(SwitchMBB);
10041   ++BBI;
10042   MachineBasicBlock *PeeledSwitchMBB =
10043       FuncInfo.MF->CreateMachineBasicBlock(SwitchMBB->getBasicBlock());
10044   FuncInfo.MF->insert(BBI, PeeledSwitchMBB);
10045 
10046   ExportFromCurrentBlock(SI.getCondition());
10047   auto PeeledCaseIt = Clusters.begin() + PeeledCaseIndex;
10048   SwitchWorkListItem W = {SwitchMBB, PeeledCaseIt, PeeledCaseIt,
10049                           nullptr,   nullptr,      TopCaseProb.getCompl()};
10050   lowerWorkItem(W, SI.getCondition(), SwitchMBB, PeeledSwitchMBB);
10051 
10052   Clusters.erase(PeeledCaseIt);
10053   for (CaseCluster &CC : Clusters) {
10054     LLVM_DEBUG(
10055         dbgs() << "Scale the probablity for one cluster, before scaling: "
10056                << CC.Prob << "\n");
10057     CC.Prob = scaleCaseProbality(CC.Prob, TopCaseProb);
10058     LLVM_DEBUG(dbgs() << "After scaling: " << CC.Prob << "\n");
10059   }
10060   PeeledCaseProb = TopCaseProb;
10061   return PeeledSwitchMBB;
10062 }
10063 
10064 void SelectionDAGBuilder::visitSwitch(const SwitchInst &SI) {
10065   // Extract cases from the switch.
10066   BranchProbabilityInfo *BPI = FuncInfo.BPI;
10067   CaseClusterVector Clusters;
10068   Clusters.reserve(SI.getNumCases());
10069   for (auto I : SI.cases()) {
10070     MachineBasicBlock *Succ = FuncInfo.MBBMap[I.getCaseSuccessor()];
10071     const ConstantInt *CaseVal = I.getCaseValue();
10072     BranchProbability Prob =
10073         BPI ? BPI->getEdgeProbability(SI.getParent(), I.getSuccessorIndex())
10074             : BranchProbability(1, SI.getNumCases() + 1);
10075     Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob));
10076   }
10077 
10078   MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[SI.getDefaultDest()];
10079 
10080   // Cluster adjacent cases with the same destination. We do this at all
10081   // optimization levels because it's cheap to do and will make codegen faster
10082   // if there are many clusters.
10083   sortAndRangeify(Clusters);
10084 
10085   if (TM.getOptLevel() != CodeGenOpt::None) {
10086     // Replace an unreachable default with the most popular destination.
10087     // FIXME: Exploit unreachable default more aggressively.
10088     bool UnreachableDefault =
10089         isa<UnreachableInst>(SI.getDefaultDest()->getFirstNonPHIOrDbg());
10090     if (UnreachableDefault && !Clusters.empty()) {
10091       DenseMap<const BasicBlock *, unsigned> Popularity;
10092       unsigned MaxPop = 0;
10093       const BasicBlock *MaxBB = nullptr;
10094       for (auto I : SI.cases()) {
10095         const BasicBlock *BB = I.getCaseSuccessor();
10096         if (++Popularity[BB] > MaxPop) {
10097           MaxPop = Popularity[BB];
10098           MaxBB = BB;
10099         }
10100       }
10101       // Set new default.
10102       assert(MaxPop > 0 && MaxBB);
10103       DefaultMBB = FuncInfo.MBBMap[MaxBB];
10104 
10105       // Remove cases that were pointing to the destination that is now the
10106       // default.
10107       CaseClusterVector New;
10108       New.reserve(Clusters.size());
10109       for (CaseCluster &CC : Clusters) {
10110         if (CC.MBB != DefaultMBB)
10111           New.push_back(CC);
10112       }
10113       Clusters = std::move(New);
10114     }
10115   }
10116 
10117   // The branch probablity of the peeled case.
10118   BranchProbability PeeledCaseProb = BranchProbability::getZero();
10119   MachineBasicBlock *PeeledSwitchMBB =
10120       peelDominantCaseCluster(SI, Clusters, PeeledCaseProb);
10121 
10122   // If there is only the default destination, jump there directly.
10123   MachineBasicBlock *SwitchMBB = FuncInfo.MBB;
10124   if (Clusters.empty()) {
10125     assert(PeeledSwitchMBB == SwitchMBB);
10126     SwitchMBB->addSuccessor(DefaultMBB);
10127     if (DefaultMBB != NextBlock(SwitchMBB)) {
10128       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other,
10129                               getControlRoot(), DAG.getBasicBlock(DefaultMBB)));
10130     }
10131     return;
10132   }
10133 
10134   findJumpTables(Clusters, &SI, DefaultMBB);
10135   findBitTestClusters(Clusters, &SI);
10136 
10137   LLVM_DEBUG({
10138     dbgs() << "Case clusters: ";
10139     for (const CaseCluster &C : Clusters) {
10140       if (C.Kind == CC_JumpTable)
10141         dbgs() << "JT:";
10142       if (C.Kind == CC_BitTests)
10143         dbgs() << "BT:";
10144 
10145       C.Low->getValue().print(dbgs(), true);
10146       if (C.Low != C.High) {
10147         dbgs() << '-';
10148         C.High->getValue().print(dbgs(), true);
10149       }
10150       dbgs() << ' ';
10151     }
10152     dbgs() << '\n';
10153   });
10154 
10155   assert(!Clusters.empty());
10156   SwitchWorkList WorkList;
10157   CaseClusterIt First = Clusters.begin();
10158   CaseClusterIt Last = Clusters.end() - 1;
10159   auto DefaultProb = getEdgeProbability(PeeledSwitchMBB, DefaultMBB);
10160   // Scale the branchprobability for DefaultMBB if the peel occurs and
10161   // DefaultMBB is not replaced.
10162   if (PeeledCaseProb != BranchProbability::getZero() &&
10163       DefaultMBB == FuncInfo.MBBMap[SI.getDefaultDest()])
10164     DefaultProb = scaleCaseProbality(DefaultProb, PeeledCaseProb);
10165   WorkList.push_back(
10166       {PeeledSwitchMBB, First, Last, nullptr, nullptr, DefaultProb});
10167 
10168   while (!WorkList.empty()) {
10169     SwitchWorkListItem W = WorkList.back();
10170     WorkList.pop_back();
10171     unsigned NumClusters = W.LastCluster - W.FirstCluster + 1;
10172 
10173     if (NumClusters > 3 && TM.getOptLevel() != CodeGenOpt::None &&
10174         !DefaultMBB->getParent()->getFunction().optForMinSize()) {
10175       // For optimized builds, lower large range as a balanced binary tree.
10176       splitWorkItem(WorkList, W, SI.getCondition(), SwitchMBB);
10177       continue;
10178     }
10179 
10180     lowerWorkItem(W, SI.getCondition(), SwitchMBB, DefaultMBB);
10181   }
10182 }
10183