xref: /llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp (revision 608df027fd2ddaf17fb1f5ae1d6242d6735be69b)
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/BitVector.h"
17 #include "llvm/ADT/Optional.h"
18 #include "llvm/ADT/SmallSet.h"
19 #include "llvm/ADT/Statistic.h"
20 #include "llvm/Analysis/AliasAnalysis.h"
21 #include "llvm/Analysis/BranchProbabilityInfo.h"
22 #include "llvm/Analysis/ConstantFolding.h"
23 #include "llvm/Analysis/Loads.h"
24 #include "llvm/Analysis/TargetLibraryInfo.h"
25 #include "llvm/Analysis/ValueTracking.h"
26 #include "llvm/Analysis/VectorUtils.h"
27 #include "llvm/CodeGen/Analysis.h"
28 #include "llvm/CodeGen/FastISel.h"
29 #include "llvm/CodeGen/FunctionLoweringInfo.h"
30 #include "llvm/CodeGen/GCMetadata.h"
31 #include "llvm/CodeGen/GCStrategy.h"
32 #include "llvm/CodeGen/MachineFrameInfo.h"
33 #include "llvm/CodeGen/MachineFunction.h"
34 #include "llvm/CodeGen/MachineInstrBuilder.h"
35 #include "llvm/CodeGen/MachineJumpTableInfo.h"
36 #include "llvm/CodeGen/MachineModuleInfo.h"
37 #include "llvm/CodeGen/MachineRegisterInfo.h"
38 #include "llvm/CodeGen/SelectionDAG.h"
39 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
40 #include "llvm/CodeGen/StackMaps.h"
41 #include "llvm/CodeGen/WinEHFuncInfo.h"
42 #include "llvm/IR/CallingConv.h"
43 #include "llvm/IR/ConstantRange.h"
44 #include "llvm/IR/Constants.h"
45 #include "llvm/IR/DataLayout.h"
46 #include "llvm/IR/DebugInfo.h"
47 #include "llvm/IR/DerivedTypes.h"
48 #include "llvm/IR/DIBuilder.h"
49 #include "llvm/IR/Function.h"
50 #include "llvm/IR/GetElementPtrTypeIterator.h"
51 #include "llvm/IR/GlobalVariable.h"
52 #include "llvm/IR/InlineAsm.h"
53 #include "llvm/IR/Instructions.h"
54 #include "llvm/IR/IntrinsicInst.h"
55 #include "llvm/IR/Intrinsics.h"
56 #include "llvm/IR/LLVMContext.h"
57 #include "llvm/IR/Module.h"
58 #include "llvm/IR/Statepoint.h"
59 #include "llvm/MC/MCSymbol.h"
60 #include "llvm/Support/CommandLine.h"
61 #include "llvm/Support/Debug.h"
62 #include "llvm/Support/ErrorHandling.h"
63 #include "llvm/Support/MathExtras.h"
64 #include "llvm/Support/raw_ostream.h"
65 #include "llvm/Target/TargetFrameLowering.h"
66 #include "llvm/Target/TargetInstrInfo.h"
67 #include "llvm/Target/TargetIntrinsicInfo.h"
68 #include "llvm/Target/TargetLowering.h"
69 #include "llvm/Target/TargetOptions.h"
70 #include "llvm/Target/TargetSubtargetInfo.h"
71 #include <algorithm>
72 #include <utility>
73 using namespace llvm;
74 
75 #define DEBUG_TYPE "isel"
76 
77 /// LimitFloatPrecision - Generate low-precision inline sequences for
78 /// some float libcalls (6, 8 or 12 bits).
79 static unsigned LimitFloatPrecision;
80 
81 static cl::opt<unsigned, true>
82 LimitFPPrecision("limit-float-precision",
83                  cl::desc("Generate low-precision inline sequences "
84                           "for some float libcalls"),
85                  cl::location(LimitFloatPrecision),
86                  cl::init(0));
87 // Limit the width of DAG chains. This is important in general to prevent
88 // DAG-based analysis from blowing up. For example, alias analysis and
89 // load clustering may not complete in reasonable time. It is difficult to
90 // recognize and avoid this situation within each individual analysis, and
91 // future analyses are likely to have the same behavior. Limiting DAG width is
92 // the safe approach and will be especially important with global DAGs.
93 //
94 // MaxParallelChains default is arbitrarily high to avoid affecting
95 // optimization, but could be lowered to improve compile time. Any ld-ld-st-st
96 // sequence over this should have been converted to llvm.memcpy by the
97 // frontend. It is easy to induce this behavior with .ll code such as:
98 // %buffer = alloca [4096 x i8]
99 // %data = load [4096 x i8]* %argPtr
100 // store [4096 x i8] %data, [4096 x i8]* %buffer
101 static const unsigned MaxParallelChains = 64;
102 
103 // True if the Value passed requires ABI mangling as it is a parameter to a
104 // function or a return value from a function which is not an intrinsic.
105 static bool isABIRegCopy(const Value * V) {
106   const bool IsRetInst = V && isa<ReturnInst>(V);
107   const bool IsCallInst = V && isa<CallInst>(V);
108   const bool IsInLineAsm =
109       IsCallInst && static_cast<const CallInst *>(V)->isInlineAsm();
110   const bool IsIndirectFunctionCall =
111       IsCallInst && !IsInLineAsm &&
112       !static_cast<const CallInst *>(V)->getCalledFunction();
113   // It is possible that the call instruction is an inline asm statement or an
114   // indirect function call in which case the return value of
115   // getCalledFunction() would be nullptr.
116   const bool IsInstrinsicCall =
117       IsCallInst && !IsInLineAsm && !IsIndirectFunctionCall &&
118       static_cast<const CallInst *>(V)->getCalledFunction()->getIntrinsicID() !=
119           Intrinsic::not_intrinsic;
120 
121   return IsRetInst || (IsCallInst && (!IsInLineAsm && !IsInstrinsicCall));
122 }
123 
124 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL,
125                                       const SDValue *Parts, unsigned NumParts,
126                                       MVT PartVT, EVT ValueVT, const Value *V,
127                                       bool IsABIRegCopy);
128 
129 /// getCopyFromParts - Create a value that contains the specified legal parts
130 /// combined into the value they represent.  If the parts combine to a type
131 /// larger than ValueVT then AssertOp can be used to specify whether the extra
132 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
133 /// (ISD::AssertSext).
134 static SDValue getCopyFromParts(SelectionDAG &DAG, const SDLoc &DL,
135                                 const SDValue *Parts, unsigned NumParts,
136                                 MVT PartVT, EVT ValueVT, const Value *V,
137                                 Optional<ISD::NodeType> AssertOp = None,
138                                 bool IsABIRegCopy = false) {
139   if (ValueVT.isVector())
140     return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
141                                   PartVT, ValueVT, V, IsABIRegCopy);
142 
143   assert(NumParts > 0 && "No parts to assemble!");
144   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
145   SDValue Val = Parts[0];
146 
147   if (NumParts > 1) {
148     // Assemble the value from multiple parts.
149     if (ValueVT.isInteger()) {
150       unsigned PartBits = PartVT.getSizeInBits();
151       unsigned ValueBits = ValueVT.getSizeInBits();
152 
153       // Assemble the power of 2 part.
154       unsigned RoundParts = NumParts & (NumParts - 1) ?
155         1 << Log2_32(NumParts) : NumParts;
156       unsigned RoundBits = PartBits * RoundParts;
157       EVT RoundVT = RoundBits == ValueBits ?
158         ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
159       SDValue Lo, Hi;
160 
161       EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2);
162 
163       if (RoundParts > 2) {
164         Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
165                               PartVT, HalfVT, V);
166         Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
167                               RoundParts / 2, PartVT, HalfVT, V);
168       } else {
169         Lo = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[0]);
170         Hi = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[1]);
171       }
172 
173       if (DAG.getDataLayout().isBigEndian())
174         std::swap(Lo, Hi);
175 
176       Val = DAG.getNode(ISD::BUILD_PAIR, DL, RoundVT, Lo, Hi);
177 
178       if (RoundParts < NumParts) {
179         // Assemble the trailing non-power-of-2 part.
180         unsigned OddParts = NumParts - RoundParts;
181         EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits);
182         Hi = getCopyFromParts(DAG, DL,
183                               Parts + RoundParts, OddParts, PartVT, OddVT, V);
184 
185         // Combine the round and odd parts.
186         Lo = Val;
187         if (DAG.getDataLayout().isBigEndian())
188           std::swap(Lo, Hi);
189         EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
190         Hi = DAG.getNode(ISD::ANY_EXTEND, DL, TotalVT, Hi);
191         Hi =
192             DAG.getNode(ISD::SHL, DL, TotalVT, Hi,
193                         DAG.getConstant(Lo.getValueSizeInBits(), DL,
194                                         TLI.getPointerTy(DAG.getDataLayout())));
195         Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, TotalVT, Lo);
196         Val = DAG.getNode(ISD::OR, DL, TotalVT, Lo, Hi);
197       }
198     } else if (PartVT.isFloatingPoint()) {
199       // FP split into multiple FP parts (for ppcf128)
200       assert(ValueVT == EVT(MVT::ppcf128) && PartVT == MVT::f64 &&
201              "Unexpected split");
202       SDValue Lo, Hi;
203       Lo = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[0]);
204       Hi = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[1]);
205       if (TLI.hasBigEndianPartOrdering(ValueVT, DAG.getDataLayout()))
206         std::swap(Lo, Hi);
207       Val = DAG.getNode(ISD::BUILD_PAIR, DL, ValueVT, Lo, Hi);
208     } else {
209       // FP split into integer parts (soft fp)
210       assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
211              !PartVT.isVector() && "Unexpected split");
212       EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
213       Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V);
214     }
215   }
216 
217   // There is now one part, held in Val.  Correct it to match ValueVT.
218   // PartEVT is the type of the register class that holds the value.
219   // ValueVT is the type of the inline asm operation.
220   EVT PartEVT = Val.getValueType();
221 
222   if (PartEVT == ValueVT)
223     return Val;
224 
225   if (PartEVT.isInteger() && ValueVT.isFloatingPoint() &&
226       ValueVT.bitsLT(PartEVT)) {
227     // For an FP value in an integer part, we need to truncate to the right
228     // width first.
229     PartEVT = EVT::getIntegerVT(*DAG.getContext(),  ValueVT.getSizeInBits());
230     Val = DAG.getNode(ISD::TRUNCATE, DL, PartEVT, Val);
231   }
232 
233   // Handle types that have the same size.
234   if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits())
235     return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
236 
237   // Handle types with different sizes.
238   if (PartEVT.isInteger() && ValueVT.isInteger()) {
239     if (ValueVT.bitsLT(PartEVT)) {
240       // For a truncate, see if we have any information to
241       // indicate whether the truncated bits will always be
242       // zero or sign-extension.
243       if (AssertOp.hasValue())
244         Val = DAG.getNode(*AssertOp, DL, PartEVT, Val,
245                           DAG.getValueType(ValueVT));
246       return DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
247     }
248     return DAG.getNode(ISD::ANY_EXTEND, DL, ValueVT, Val);
249   }
250 
251   if (PartEVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
252     // FP_ROUND's are always exact here.
253     if (ValueVT.bitsLT(Val.getValueType()))
254       return DAG.getNode(
255           ISD::FP_ROUND, DL, ValueVT, Val,
256           DAG.getTargetConstant(1, DL, TLI.getPointerTy(DAG.getDataLayout())));
257 
258     return DAG.getNode(ISD::FP_EXTEND, DL, ValueVT, Val);
259   }
260 
261   llvm_unreachable("Unknown mismatch!");
262 }
263 
264 static void diagnosePossiblyInvalidConstraint(LLVMContext &Ctx, const Value *V,
265                                               const Twine &ErrMsg) {
266   const Instruction *I = dyn_cast_or_null<Instruction>(V);
267   if (!V)
268     return Ctx.emitError(ErrMsg);
269 
270   const char *AsmError = ", possible invalid constraint for vector type";
271   if (const CallInst *CI = dyn_cast<CallInst>(I))
272     if (isa<InlineAsm>(CI->getCalledValue()))
273       return Ctx.emitError(I, ErrMsg + AsmError);
274 
275   return Ctx.emitError(I, ErrMsg);
276 }
277 
278 /// getCopyFromPartsVector - Create a value that contains the specified legal
279 /// parts combined into the value they represent.  If the parts combine to a
280 /// type larger than ValueVT then AssertOp can be used to specify whether the
281 /// extra bits are known to be zero (ISD::AssertZext) or sign extended from
282 /// ValueVT (ISD::AssertSext).
283 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL,
284                                       const SDValue *Parts, unsigned NumParts,
285                                       MVT PartVT, EVT ValueVT, const Value *V,
286                                       bool IsABIRegCopy) {
287   assert(ValueVT.isVector() && "Not a vector value");
288   assert(NumParts > 0 && "No parts to assemble!");
289   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
290   SDValue Val = Parts[0];
291 
292   // Handle a multi-element vector.
293   if (NumParts > 1) {
294     EVT IntermediateVT;
295     MVT RegisterVT;
296     unsigned NumIntermediates;
297     unsigned NumRegs;
298 
299     if (IsABIRegCopy) {
300       NumRegs = TLI.getVectorTypeBreakdownForCallingConv(
301           *DAG.getContext(), ValueVT, IntermediateVT, NumIntermediates,
302           RegisterVT);
303     } else {
304       NumRegs =
305           TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
306                                      NumIntermediates, RegisterVT);
307     }
308 
309     assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
310     NumParts = NumRegs; // Silence a compiler warning.
311     assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
312     assert(RegisterVT.getSizeInBits() ==
313            Parts[0].getSimpleValueType().getSizeInBits() &&
314            "Part type sizes don't match!");
315 
316     // Assemble the parts into intermediate operands.
317     SmallVector<SDValue, 8> Ops(NumIntermediates);
318     if (NumIntermediates == NumParts) {
319       // If the register was not expanded, truncate or copy the value,
320       // as appropriate.
321       for (unsigned i = 0; i != NumParts; ++i)
322         Ops[i] = getCopyFromParts(DAG, DL, &Parts[i], 1,
323                                   PartVT, IntermediateVT, V);
324     } else if (NumParts > 0) {
325       // If the intermediate type was expanded, build the intermediate
326       // operands from the parts.
327       assert(NumParts % NumIntermediates == 0 &&
328              "Must expand into a divisible number of parts!");
329       unsigned Factor = NumParts / NumIntermediates;
330       for (unsigned i = 0; i != NumIntermediates; ++i)
331         Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
332                                   PartVT, IntermediateVT, V);
333     }
334 
335     // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the
336     // intermediate operands.
337     EVT BuiltVectorTy =
338         EVT::getVectorVT(*DAG.getContext(), IntermediateVT.getScalarType(),
339                          (IntermediateVT.isVector()
340                               ? IntermediateVT.getVectorNumElements() * NumParts
341                               : NumIntermediates));
342     Val = DAG.getNode(IntermediateVT.isVector() ? ISD::CONCAT_VECTORS
343                                                 : ISD::BUILD_VECTOR,
344                       DL, BuiltVectorTy, Ops);
345   }
346 
347   // There is now one part, held in Val.  Correct it to match ValueVT.
348   EVT PartEVT = Val.getValueType();
349 
350   if (PartEVT == ValueVT)
351     return Val;
352 
353   if (PartEVT.isVector()) {
354     // If the element type of the source/dest vectors are the same, but the
355     // parts vector has more elements than the value vector, then we have a
356     // vector widening case (e.g. <2 x float> -> <4 x float>).  Extract the
357     // elements we want.
358     if (PartEVT.getVectorElementType() == ValueVT.getVectorElementType()) {
359       assert(PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements() &&
360              "Cannot narrow, it would be a lossy transformation");
361       return DAG.getNode(
362           ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val,
363           DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
364     }
365 
366     // Vector/Vector bitcast.
367     if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits())
368       return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
369 
370     assert(PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements() &&
371       "Cannot handle this kind of promotion");
372     // Promoted vector extract
373     return DAG.getAnyExtOrTrunc(Val, DL, ValueVT);
374 
375   }
376 
377   // Trivial bitcast if the types are the same size and the destination
378   // vector type is legal.
379   if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits() &&
380       TLI.isTypeLegal(ValueVT))
381     return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
382 
383   if (ValueVT.getVectorNumElements() != 1) {
384      // Certain ABIs require that vectors are passed as integers. For vectors
385      // are the same size, this is an obvious bitcast.
386      if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits()) {
387        return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
388      } else if (ValueVT.getSizeInBits() < PartEVT.getSizeInBits()) {
389        // Bitcast Val back the original type and extract the corresponding
390        // vector we want.
391        unsigned Elts = PartEVT.getSizeInBits() / ValueVT.getScalarSizeInBits();
392        EVT WiderVecType = EVT::getVectorVT(*DAG.getContext(),
393                                            ValueVT.getVectorElementType(), Elts);
394        Val = DAG.getBitcast(WiderVecType, Val);
395        return DAG.getNode(
396            ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val,
397            DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
398      }
399 
400      diagnosePossiblyInvalidConstraint(
401          *DAG.getContext(), V, "non-trivial scalar-to-vector conversion");
402      return DAG.getUNDEF(ValueVT);
403   }
404 
405   // Handle cases such as i8 -> <1 x i1>
406   EVT ValueSVT = ValueVT.getVectorElementType();
407   if (ValueVT.getVectorNumElements() == 1 && ValueSVT != PartEVT)
408     Val = ValueVT.isFloatingPoint() ? DAG.getFPExtendOrRound(Val, DL, ValueSVT)
409                                     : DAG.getAnyExtOrTrunc(Val, DL, ValueSVT);
410 
411   return DAG.getBuildVector(ValueVT, DL, Val);
412 }
413 
414 static void getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &dl,
415                                  SDValue Val, SDValue *Parts, unsigned NumParts,
416                                  MVT PartVT, const Value *V, bool IsABIRegCopy);
417 
418 /// getCopyToParts - Create a series of nodes that contain the specified value
419 /// split into legal parts.  If the parts contain more bits than Val, then, for
420 /// integers, ExtendKind can be used to specify how to generate the extra bits.
421 static void getCopyToParts(SelectionDAG &DAG, const SDLoc &DL, SDValue Val,
422                            SDValue *Parts, unsigned NumParts, MVT PartVT,
423                            const Value *V,
424                            ISD::NodeType ExtendKind = ISD::ANY_EXTEND,
425                            bool IsABIRegCopy = false) {
426   EVT ValueVT = Val.getValueType();
427 
428   // Handle the vector case separately.
429   if (ValueVT.isVector())
430     return getCopyToPartsVector(DAG, DL, Val, Parts, NumParts, PartVT, V,
431                                 IsABIRegCopy);
432 
433   unsigned PartBits = PartVT.getSizeInBits();
434   unsigned OrigNumParts = NumParts;
435   assert(DAG.getTargetLoweringInfo().isTypeLegal(PartVT) &&
436          "Copying to an illegal type!");
437 
438   if (NumParts == 0)
439     return;
440 
441   assert(!ValueVT.isVector() && "Vector case handled elsewhere");
442   EVT PartEVT = PartVT;
443   if (PartEVT == ValueVT) {
444     assert(NumParts == 1 && "No-op copy with multiple parts!");
445     Parts[0] = Val;
446     return;
447   }
448 
449   if (NumParts * PartBits > ValueVT.getSizeInBits()) {
450     // If the parts cover more bits than the value has, promote the value.
451     if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
452       assert(NumParts == 1 && "Do not know what to promote to!");
453       Val = DAG.getNode(ISD::FP_EXTEND, DL, PartVT, Val);
454     } else {
455       if (ValueVT.isFloatingPoint()) {
456         // FP values need to be bitcast, then extended if they are being put
457         // into a larger container.
458         ValueVT = EVT::getIntegerVT(*DAG.getContext(),  ValueVT.getSizeInBits());
459         Val = DAG.getNode(ISD::BITCAST, DL, ValueVT, Val);
460       }
461       assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
462              ValueVT.isInteger() &&
463              "Unknown mismatch!");
464       ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
465       Val = DAG.getNode(ExtendKind, DL, ValueVT, Val);
466       if (PartVT == MVT::x86mmx)
467         Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
468     }
469   } else if (PartBits == ValueVT.getSizeInBits()) {
470     // Different types of the same size.
471     assert(NumParts == 1 && PartEVT != ValueVT);
472     Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
473   } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
474     // If the parts cover less bits than value has, truncate the value.
475     assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
476            ValueVT.isInteger() &&
477            "Unknown mismatch!");
478     ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
479     Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
480     if (PartVT == MVT::x86mmx)
481       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
482   }
483 
484   // The value may have changed - recompute ValueVT.
485   ValueVT = Val.getValueType();
486   assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
487          "Failed to tile the value with PartVT!");
488 
489   if (NumParts == 1) {
490     if (PartEVT != ValueVT) {
491       diagnosePossiblyInvalidConstraint(*DAG.getContext(), V,
492                                         "scalar-to-vector conversion failed");
493       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
494     }
495 
496     Parts[0] = Val;
497     return;
498   }
499 
500   // Expand the value into multiple parts.
501   if (NumParts & (NumParts - 1)) {
502     // The number of parts is not a power of 2.  Split off and copy the tail.
503     assert(PartVT.isInteger() && ValueVT.isInteger() &&
504            "Do not know what to expand to!");
505     unsigned RoundParts = 1 << Log2_32(NumParts);
506     unsigned RoundBits = RoundParts * PartBits;
507     unsigned OddParts = NumParts - RoundParts;
508     SDValue OddVal = DAG.getNode(ISD::SRL, DL, ValueVT, Val,
509                                  DAG.getIntPtrConstant(RoundBits, DL));
510     getCopyToParts(DAG, DL, OddVal, Parts + RoundParts, OddParts, PartVT, V);
511 
512     if (DAG.getDataLayout().isBigEndian())
513       // The odd parts were reversed by getCopyToParts - unreverse them.
514       std::reverse(Parts + RoundParts, Parts + NumParts);
515 
516     NumParts = RoundParts;
517     ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits);
518     Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
519   }
520 
521   // The number of parts is a power of 2.  Repeatedly bisect the value using
522   // EXTRACT_ELEMENT.
523   Parts[0] = DAG.getNode(ISD::BITCAST, DL,
524                          EVT::getIntegerVT(*DAG.getContext(),
525                                            ValueVT.getSizeInBits()),
526                          Val);
527 
528   for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
529     for (unsigned i = 0; i < NumParts; i += StepSize) {
530       unsigned ThisBits = StepSize * PartBits / 2;
531       EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits);
532       SDValue &Part0 = Parts[i];
533       SDValue &Part1 = Parts[i+StepSize/2];
534 
535       Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
536                           ThisVT, Part0, DAG.getIntPtrConstant(1, DL));
537       Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL,
538                           ThisVT, Part0, DAG.getIntPtrConstant(0, DL));
539 
540       if (ThisBits == PartBits && ThisVT != PartVT) {
541         Part0 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part0);
542         Part1 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part1);
543       }
544     }
545   }
546 
547   if (DAG.getDataLayout().isBigEndian())
548     std::reverse(Parts, Parts + OrigNumParts);
549 }
550 
551 
552 /// getCopyToPartsVector - Create a series of nodes that contain the specified
553 /// value split into legal parts.
554 static void getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &DL,
555                                  SDValue Val, SDValue *Parts, unsigned NumParts,
556                                  MVT PartVT, const Value *V,
557                                  bool IsABIRegCopy) {
558 
559   EVT ValueVT = Val.getValueType();
560   assert(ValueVT.isVector() && "Not a vector");
561   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
562 
563   if (NumParts == 1) {
564     EVT PartEVT = PartVT;
565     if (PartEVT == ValueVT) {
566       // Nothing to do.
567     } else if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) {
568       // Bitconvert vector->vector case.
569       Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val);
570     } else if (PartVT.isVector() &&
571                PartEVT.getVectorElementType() == ValueVT.getVectorElementType() &&
572                PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements()) {
573       EVT ElementVT = PartVT.getVectorElementType();
574       // Vector widening case, e.g. <2 x float> -> <4 x float>.  Shuffle in
575       // undef elements.
576       SmallVector<SDValue, 16> Ops;
577       for (unsigned i = 0, e = ValueVT.getVectorNumElements(); i != e; ++i)
578         Ops.push_back(DAG.getNode(
579             ISD::EXTRACT_VECTOR_ELT, DL, ElementVT, Val,
580             DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout()))));
581 
582       for (unsigned i = ValueVT.getVectorNumElements(),
583            e = PartVT.getVectorNumElements(); i != e; ++i)
584         Ops.push_back(DAG.getUNDEF(ElementVT));
585 
586       Val = DAG.getBuildVector(PartVT, DL, Ops);
587 
588       // FIXME: Use CONCAT for 2x -> 4x.
589 
590       //SDValue UndefElts = DAG.getUNDEF(VectorTy);
591       //Val = DAG.getNode(ISD::CONCAT_VECTORS, DL, PartVT, Val, UndefElts);
592     } else if (PartVT.isVector() &&
593                PartEVT.getVectorElementType().bitsGE(
594                  ValueVT.getVectorElementType()) &&
595                PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements()) {
596 
597       // Promoted vector extract
598       Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT);
599     } else {
600       if (ValueVT.getVectorNumElements() == 1) {
601         Val = DAG.getNode(
602             ISD::EXTRACT_VECTOR_ELT, DL, PartVT, Val,
603             DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
604 
605       } else {
606         assert(PartVT.getSizeInBits() > ValueVT.getSizeInBits() &&
607                "lossy conversion of vector to scalar type");
608         EVT IntermediateType =
609             EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits());
610         Val = DAG.getBitcast(IntermediateType, Val);
611         Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT);
612       }
613     }
614 
615     assert(Val.getValueType() == PartVT && "Unexpected vector part value type");
616     Parts[0] = Val;
617     return;
618   }
619 
620   // Handle a multi-element vector.
621   EVT IntermediateVT;
622   MVT RegisterVT;
623   unsigned NumIntermediates;
624   unsigned NumRegs;
625   if (IsABIRegCopy) {
626     NumRegs = TLI.getVectorTypeBreakdownForCallingConv(
627         *DAG.getContext(), ValueVT, IntermediateVT, NumIntermediates,
628         RegisterVT);
629   } else {
630     NumRegs =
631         TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
632                                    NumIntermediates, RegisterVT);
633   }
634   unsigned NumElements = ValueVT.getVectorNumElements();
635 
636   assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
637   NumParts = NumRegs; // Silence a compiler warning.
638   assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
639 
640   // Convert the vector to the appropiate type if necessary.
641   unsigned DestVectorNoElts =
642       NumIntermediates *
643       (IntermediateVT.isVector() ? IntermediateVT.getVectorNumElements() : 1);
644   EVT BuiltVectorTy = EVT::getVectorVT(
645       *DAG.getContext(), IntermediateVT.getScalarType(), DestVectorNoElts);
646   if (Val.getValueType() != BuiltVectorTy)
647     Val = DAG.getNode(ISD::BITCAST, DL, BuiltVectorTy, Val);
648 
649   // Split the vector into intermediate operands.
650   SmallVector<SDValue, 8> Ops(NumIntermediates);
651   for (unsigned i = 0; i != NumIntermediates; ++i) {
652     if (IntermediateVT.isVector())
653       Ops[i] =
654           DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, IntermediateVT, Val,
655                       DAG.getConstant(i * (NumElements / NumIntermediates), DL,
656                                       TLI.getVectorIdxTy(DAG.getDataLayout())));
657     else
658       Ops[i] = DAG.getNode(
659           ISD::EXTRACT_VECTOR_ELT, DL, IntermediateVT, Val,
660           DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
661   }
662 
663   // Split the intermediate operands into legal parts.
664   if (NumParts == NumIntermediates) {
665     // If the register was not expanded, promote or copy the value,
666     // as appropriate.
667     for (unsigned i = 0; i != NumParts; ++i)
668       getCopyToParts(DAG, DL, Ops[i], &Parts[i], 1, PartVT, V);
669   } else if (NumParts > 0) {
670     // If the intermediate type was expanded, split each the value into
671     // legal parts.
672     assert(NumIntermediates != 0 && "division by zero");
673     assert(NumParts % NumIntermediates == 0 &&
674            "Must expand into a divisible number of parts!");
675     unsigned Factor = NumParts / NumIntermediates;
676     for (unsigned i = 0; i != NumIntermediates; ++i)
677       getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
678   }
679 }
680 
681 RegsForValue::RegsForValue() { IsABIMangled = false; }
682 
683 RegsForValue::RegsForValue(const SmallVector<unsigned, 4> &regs, MVT regvt,
684                            EVT valuevt, bool IsABIMangledValue)
685     : ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs),
686       RegCount(1, regs.size()), IsABIMangled(IsABIMangledValue) {}
687 
688 RegsForValue::RegsForValue(LLVMContext &Context, const TargetLowering &TLI,
689                            const DataLayout &DL, unsigned Reg, Type *Ty,
690                            bool IsABIMangledValue) {
691   ComputeValueVTs(TLI, DL, Ty, ValueVTs);
692 
693   IsABIMangled = IsABIMangledValue;
694 
695   for (EVT ValueVT : ValueVTs) {
696     unsigned NumRegs = IsABIMangledValue
697                            ? TLI.getNumRegistersForCallingConv(Context, ValueVT)
698                            : TLI.getNumRegisters(Context, ValueVT);
699     MVT RegisterVT = IsABIMangledValue
700                          ? TLI.getRegisterTypeForCallingConv(Context, ValueVT)
701                          : TLI.getRegisterType(Context, ValueVT);
702     for (unsigned i = 0; i != NumRegs; ++i)
703       Regs.push_back(Reg + i);
704     RegVTs.push_back(RegisterVT);
705     RegCount.push_back(NumRegs);
706     Reg += NumRegs;
707   }
708 }
709 
710 SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
711                                       FunctionLoweringInfo &FuncInfo,
712                                       const SDLoc &dl, SDValue &Chain,
713                                       SDValue *Flag, const Value *V) const {
714   // A Value with type {} or [0 x %t] needs no registers.
715   if (ValueVTs.empty())
716     return SDValue();
717 
718   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
719 
720   // Assemble the legal parts into the final values.
721   SmallVector<SDValue, 4> Values(ValueVTs.size());
722   SmallVector<SDValue, 8> Parts;
723   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
724     // Copy the legal parts from the registers.
725     EVT ValueVT = ValueVTs[Value];
726     unsigned NumRegs = RegCount[Value];
727     MVT RegisterVT = IsABIMangled
728                          ? TLI.getRegisterTypeForCallingConv(RegVTs[Value])
729                          : RegVTs[Value];
730 
731     Parts.resize(NumRegs);
732     for (unsigned i = 0; i != NumRegs; ++i) {
733       SDValue P;
734       if (!Flag) {
735         P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
736       } else {
737         P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
738         *Flag = P.getValue(2);
739       }
740 
741       Chain = P.getValue(1);
742       Parts[i] = P;
743 
744       // If the source register was virtual and if we know something about it,
745       // add an assert node.
746       if (!TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) ||
747           !RegisterVT.isInteger() || RegisterVT.isVector())
748         continue;
749 
750       const FunctionLoweringInfo::LiveOutInfo *LOI =
751         FuncInfo.GetLiveOutRegInfo(Regs[Part+i]);
752       if (!LOI)
753         continue;
754 
755       unsigned RegSize = RegisterVT.getSizeInBits();
756       unsigned NumSignBits = LOI->NumSignBits;
757       unsigned NumZeroBits = LOI->Known.countMinLeadingZeros();
758 
759       if (NumZeroBits == RegSize) {
760         // The current value is a zero.
761         // Explicitly express that as it would be easier for
762         // optimizations to kick in.
763         Parts[i] = DAG.getConstant(0, dl, RegisterVT);
764         continue;
765       }
766 
767       // FIXME: We capture more information than the dag can represent.  For
768       // now, just use the tightest assertzext/assertsext possible.
769       bool isSExt = true;
770       EVT FromVT(MVT::Other);
771       if (NumSignBits == RegSize) {
772         isSExt = true;   // ASSERT SEXT 1
773         FromVT = MVT::i1;
774       } else if (NumZeroBits >= RegSize - 1) {
775         isSExt = false;  // ASSERT ZEXT 1
776         FromVT = MVT::i1;
777       } else if (NumSignBits > RegSize - 8) {
778         isSExt = true;   // ASSERT SEXT 8
779         FromVT = MVT::i8;
780       } else if (NumZeroBits >= RegSize - 8) {
781         isSExt = false;  // ASSERT ZEXT 8
782         FromVT = MVT::i8;
783       } else if (NumSignBits > RegSize - 16) {
784         isSExt = true;   // ASSERT SEXT 16
785         FromVT = MVT::i16;
786       } else if (NumZeroBits >= RegSize - 16) {
787         isSExt = false;  // ASSERT ZEXT 16
788         FromVT = MVT::i16;
789       } else if (NumSignBits > RegSize - 32) {
790         isSExt = true;   // ASSERT SEXT 32
791         FromVT = MVT::i32;
792       } else if (NumZeroBits >= RegSize - 32) {
793         isSExt = false;  // ASSERT ZEXT 32
794         FromVT = MVT::i32;
795       } else {
796         continue;
797       }
798       // Add an assertion node.
799       assert(FromVT != MVT::Other);
800       Parts[i] = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
801                              RegisterVT, P, DAG.getValueType(FromVT));
802     }
803 
804     Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
805                                      NumRegs, RegisterVT, ValueVT, V);
806     Part += NumRegs;
807     Parts.clear();
808   }
809 
810   return DAG.getNode(ISD::MERGE_VALUES, dl, DAG.getVTList(ValueVTs), Values);
811 }
812 
813 void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
814                                  const SDLoc &dl, SDValue &Chain, SDValue *Flag,
815                                  const Value *V,
816                                  ISD::NodeType PreferredExtendType) const {
817   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
818   ISD::NodeType ExtendKind = PreferredExtendType;
819 
820   // Get the list of the values's legal parts.
821   unsigned NumRegs = Regs.size();
822   SmallVector<SDValue, 8> Parts(NumRegs);
823   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
824     unsigned NumParts = RegCount[Value];
825 
826     MVT RegisterVT = IsABIMangled
827                          ? TLI.getRegisterTypeForCallingConv(RegVTs[Value])
828                          : RegVTs[Value];
829 
830     if (ExtendKind == ISD::ANY_EXTEND && TLI.isZExtFree(Val, RegisterVT))
831       ExtendKind = ISD::ZERO_EXTEND;
832 
833     getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
834                    &Parts[Part], NumParts, RegisterVT, V, ExtendKind);
835     Part += NumParts;
836   }
837 
838   // Copy the parts into the registers.
839   SmallVector<SDValue, 8> Chains(NumRegs);
840   for (unsigned i = 0; i != NumRegs; ++i) {
841     SDValue Part;
842     if (!Flag) {
843       Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
844     } else {
845       Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
846       *Flag = Part.getValue(1);
847     }
848 
849     Chains[i] = Part.getValue(0);
850   }
851 
852   if (NumRegs == 1 || Flag)
853     // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
854     // flagged to it. That is the CopyToReg nodes and the user are considered
855     // a single scheduling unit. If we create a TokenFactor and return it as
856     // chain, then the TokenFactor is both a predecessor (operand) of the
857     // user as well as a successor (the TF operands are flagged to the user).
858     // c1, f1 = CopyToReg
859     // c2, f2 = CopyToReg
860     // c3     = TokenFactor c1, c2
861     // ...
862     //        = op c3, ..., f2
863     Chain = Chains[NumRegs-1];
864   else
865     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
866 }
867 
868 void RegsForValue::AddInlineAsmOperands(unsigned Code, bool HasMatching,
869                                         unsigned MatchingIdx, const SDLoc &dl,
870                                         SelectionDAG &DAG,
871                                         std::vector<SDValue> &Ops) const {
872   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
873 
874   unsigned Flag = InlineAsm::getFlagWord(Code, Regs.size());
875   if (HasMatching)
876     Flag = InlineAsm::getFlagWordForMatchingOp(Flag, MatchingIdx);
877   else if (!Regs.empty() &&
878            TargetRegisterInfo::isVirtualRegister(Regs.front())) {
879     // Put the register class of the virtual registers in the flag word.  That
880     // way, later passes can recompute register class constraints for inline
881     // assembly as well as normal instructions.
882     // Don't do this for tied operands that can use the regclass information
883     // from the def.
884     const MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
885     const TargetRegisterClass *RC = MRI.getRegClass(Regs.front());
886     Flag = InlineAsm::getFlagWordForRegClass(Flag, RC->getID());
887   }
888 
889   SDValue Res = DAG.getTargetConstant(Flag, dl, MVT::i32);
890   Ops.push_back(Res);
891 
892   unsigned SP = TLI.getStackPointerRegisterToSaveRestore();
893   for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
894     unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
895     MVT RegisterVT = RegVTs[Value];
896     for (unsigned i = 0; i != NumRegs; ++i) {
897       assert(Reg < Regs.size() && "Mismatch in # registers expected");
898       unsigned TheReg = Regs[Reg++];
899       Ops.push_back(DAG.getRegister(TheReg, RegisterVT));
900 
901       if (TheReg == SP && Code == InlineAsm::Kind_Clobber) {
902         // If we clobbered the stack pointer, MFI should know about it.
903         assert(DAG.getMachineFunction().getFrameInfo().hasOpaqueSPAdjustment());
904       }
905     }
906   }
907 }
908 
909 void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis *aa,
910                                const TargetLibraryInfo *li) {
911   AA = aa;
912   GFI = gfi;
913   LibInfo = li;
914   DL = &DAG.getDataLayout();
915   Context = DAG.getContext();
916   LPadToCallSiteMap.clear();
917 }
918 
919 void SelectionDAGBuilder::clear() {
920   NodeMap.clear();
921   UnusedArgNodeMap.clear();
922   PendingLoads.clear();
923   PendingExports.clear();
924   CurInst = nullptr;
925   HasTailCall = false;
926   SDNodeOrder = LowestSDNodeOrder;
927   StatepointLowering.clear();
928 }
929 
930 void SelectionDAGBuilder::clearDanglingDebugInfo() {
931   DanglingDebugInfoMap.clear();
932 }
933 
934 SDValue SelectionDAGBuilder::getRoot() {
935   if (PendingLoads.empty())
936     return DAG.getRoot();
937 
938   if (PendingLoads.size() == 1) {
939     SDValue Root = PendingLoads[0];
940     DAG.setRoot(Root);
941     PendingLoads.clear();
942     return Root;
943   }
944 
945   // Otherwise, we have to make a token factor node.
946   SDValue Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
947                              PendingLoads);
948   PendingLoads.clear();
949   DAG.setRoot(Root);
950   return Root;
951 }
952 
953 SDValue SelectionDAGBuilder::getControlRoot() {
954   SDValue Root = DAG.getRoot();
955 
956   if (PendingExports.empty())
957     return Root;
958 
959   // Turn all of the CopyToReg chains into one factored node.
960   if (Root.getOpcode() != ISD::EntryToken) {
961     unsigned i = 0, e = PendingExports.size();
962     for (; i != e; ++i) {
963       assert(PendingExports[i].getNode()->getNumOperands() > 1);
964       if (PendingExports[i].getNode()->getOperand(0) == Root)
965         break;  // Don't add the root if we already indirectly depend on it.
966     }
967 
968     if (i == e)
969       PendingExports.push_back(Root);
970   }
971 
972   Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other,
973                      PendingExports);
974   PendingExports.clear();
975   DAG.setRoot(Root);
976   return Root;
977 }
978 
979 void SelectionDAGBuilder::visit(const Instruction &I) {
980   // Set up outgoing PHI node register values before emitting the terminator.
981   if (isa<TerminatorInst>(&I)) {
982     HandlePHINodesInSuccessorBlocks(I.getParent());
983   }
984 
985   // Increase the SDNodeOrder if dealing with a non-debug instruction.
986   if (!isa<DbgInfoIntrinsic>(I))
987     ++SDNodeOrder;
988 
989   CurInst = &I;
990 
991   visit(I.getOpcode(), I);
992 
993   if (!isa<TerminatorInst>(&I) && !HasTailCall &&
994       !isStatepoint(&I)) // statepoints handle their exports internally
995     CopyToExportRegsIfNeeded(&I);
996 
997   CurInst = nullptr;
998 }
999 
1000 void SelectionDAGBuilder::visitPHI(const PHINode &) {
1001   llvm_unreachable("SelectionDAGBuilder shouldn't visit PHI nodes!");
1002 }
1003 
1004 void SelectionDAGBuilder::visit(unsigned Opcode, const User &I) {
1005   // Note: this doesn't use InstVisitor, because it has to work with
1006   // ConstantExpr's in addition to instructions.
1007   switch (Opcode) {
1008   default: llvm_unreachable("Unknown instruction type encountered!");
1009     // Build the switch statement using the Instruction.def file.
1010 #define HANDLE_INST(NUM, OPCODE, CLASS) \
1011     case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break;
1012 #include "llvm/IR/Instruction.def"
1013   }
1014 }
1015 
1016 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
1017 // generate the debug data structures now that we've seen its definition.
1018 void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V,
1019                                                    SDValue Val) {
1020   DanglingDebugInfo &DDI = DanglingDebugInfoMap[V];
1021   if (DDI.getDI()) {
1022     const DbgValueInst *DI = DDI.getDI();
1023     DebugLoc dl = DDI.getdl();
1024     unsigned DbgSDNodeOrder = DDI.getSDNodeOrder();
1025     DILocalVariable *Variable = DI->getVariable();
1026     DIExpression *Expr = DI->getExpression();
1027     assert(Variable->isValidLocationForIntrinsic(dl) &&
1028            "Expected inlined-at fields to agree");
1029     SDDbgValue *SDV;
1030     if (Val.getNode()) {
1031       if (!EmitFuncArgumentDbgValue(V, Variable, Expr, dl, false, Val)) {
1032         SDV = getDbgValue(Val, Variable, Expr, dl, DbgSDNodeOrder);
1033         DAG.AddDbgValue(SDV, Val.getNode(), false);
1034       }
1035     } else
1036       DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1037     DanglingDebugInfoMap[V] = DanglingDebugInfo();
1038   }
1039 }
1040 
1041 /// getCopyFromRegs - If there was virtual register allocated for the value V
1042 /// emit CopyFromReg of the specified type Ty. Return empty SDValue() otherwise.
1043 SDValue SelectionDAGBuilder::getCopyFromRegs(const Value *V, Type *Ty) {
1044   DenseMap<const Value *, unsigned>::iterator It = FuncInfo.ValueMap.find(V);
1045   SDValue Result;
1046 
1047   if (It != FuncInfo.ValueMap.end()) {
1048     unsigned InReg = It->second;
1049 
1050     RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(),
1051                      DAG.getDataLayout(), InReg, Ty, isABIRegCopy(V));
1052     SDValue Chain = DAG.getEntryNode();
1053     Result = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr,
1054                                  V);
1055     resolveDanglingDebugInfo(V, Result);
1056   }
1057 
1058   return Result;
1059 }
1060 
1061 /// getValue - Return an SDValue for the given Value.
1062 SDValue SelectionDAGBuilder::getValue(const Value *V) {
1063   // If we already have an SDValue for this value, use it. It's important
1064   // to do this first, so that we don't create a CopyFromReg if we already
1065   // have a regular SDValue.
1066   SDValue &N = NodeMap[V];
1067   if (N.getNode()) return N;
1068 
1069   // If there's a virtual register allocated and initialized for this
1070   // value, use it.
1071   if (SDValue copyFromReg = getCopyFromRegs(V, V->getType()))
1072     return copyFromReg;
1073 
1074   // Otherwise create a new SDValue and remember it.
1075   SDValue Val = getValueImpl(V);
1076   NodeMap[V] = Val;
1077   resolveDanglingDebugInfo(V, Val);
1078   return Val;
1079 }
1080 
1081 // Return true if SDValue exists for the given Value
1082 bool SelectionDAGBuilder::findValue(const Value *V) const {
1083   return (NodeMap.find(V) != NodeMap.end()) ||
1084     (FuncInfo.ValueMap.find(V) != FuncInfo.ValueMap.end());
1085 }
1086 
1087 /// getNonRegisterValue - Return an SDValue for the given Value, but
1088 /// don't look in FuncInfo.ValueMap for a virtual register.
1089 SDValue SelectionDAGBuilder::getNonRegisterValue(const Value *V) {
1090   // If we already have an SDValue for this value, use it.
1091   SDValue &N = NodeMap[V];
1092   if (N.getNode()) {
1093     if (isa<ConstantSDNode>(N) || isa<ConstantFPSDNode>(N)) {
1094       // Remove the debug location from the node as the node is about to be used
1095       // in a location which may differ from the original debug location.  This
1096       // is relevant to Constant and ConstantFP nodes because they can appear
1097       // as constant expressions inside PHI nodes.
1098       N->setDebugLoc(DebugLoc());
1099     }
1100     return N;
1101   }
1102 
1103   // Otherwise create a new SDValue and remember it.
1104   SDValue Val = getValueImpl(V);
1105   NodeMap[V] = Val;
1106   resolveDanglingDebugInfo(V, Val);
1107   return Val;
1108 }
1109 
1110 /// getValueImpl - Helper function for getValue and getNonRegisterValue.
1111 /// Create an SDValue for the given value.
1112 SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
1113   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1114 
1115   if (const Constant *C = dyn_cast<Constant>(V)) {
1116     EVT VT = TLI.getValueType(DAG.getDataLayout(), V->getType(), true);
1117 
1118     if (const ConstantInt *CI = dyn_cast<ConstantInt>(C))
1119       return DAG.getConstant(*CI, getCurSDLoc(), VT);
1120 
1121     if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1122       return DAG.getGlobalAddress(GV, getCurSDLoc(), VT);
1123 
1124     if (isa<ConstantPointerNull>(C)) {
1125       unsigned AS = V->getType()->getPointerAddressSpace();
1126       return DAG.getConstant(0, getCurSDLoc(),
1127                              TLI.getPointerTy(DAG.getDataLayout(), AS));
1128     }
1129 
1130     if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1131       return DAG.getConstantFP(*CFP, getCurSDLoc(), VT);
1132 
1133     if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
1134       return DAG.getUNDEF(VT);
1135 
1136     if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1137       visit(CE->getOpcode(), *CE);
1138       SDValue N1 = NodeMap[V];
1139       assert(N1.getNode() && "visit didn't populate the NodeMap!");
1140       return N1;
1141     }
1142 
1143     if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1144       SmallVector<SDValue, 4> Constants;
1145       for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1146            OI != OE; ++OI) {
1147         SDNode *Val = getValue(*OI).getNode();
1148         // If the operand is an empty aggregate, there are no values.
1149         if (!Val) continue;
1150         // Add each leaf value from the operand to the Constants list
1151         // to form a flattened list of all the values.
1152         for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1153           Constants.push_back(SDValue(Val, i));
1154       }
1155 
1156       return DAG.getMergeValues(Constants, getCurSDLoc());
1157     }
1158 
1159     if (const ConstantDataSequential *CDS =
1160           dyn_cast<ConstantDataSequential>(C)) {
1161       SmallVector<SDValue, 4> Ops;
1162       for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1163         SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode();
1164         // Add each leaf value from the operand to the Constants list
1165         // to form a flattened list of all the values.
1166         for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1167           Ops.push_back(SDValue(Val, i));
1168       }
1169 
1170       if (isa<ArrayType>(CDS->getType()))
1171         return DAG.getMergeValues(Ops, getCurSDLoc());
1172       return NodeMap[V] = DAG.getBuildVector(VT, getCurSDLoc(), Ops);
1173     }
1174 
1175     if (C->getType()->isStructTy() || C->getType()->isArrayTy()) {
1176       assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1177              "Unknown struct or array constant!");
1178 
1179       SmallVector<EVT, 4> ValueVTs;
1180       ComputeValueVTs(TLI, DAG.getDataLayout(), C->getType(), ValueVTs);
1181       unsigned NumElts = ValueVTs.size();
1182       if (NumElts == 0)
1183         return SDValue(); // empty struct
1184       SmallVector<SDValue, 4> Constants(NumElts);
1185       for (unsigned i = 0; i != NumElts; ++i) {
1186         EVT EltVT = ValueVTs[i];
1187         if (isa<UndefValue>(C))
1188           Constants[i] = DAG.getUNDEF(EltVT);
1189         else if (EltVT.isFloatingPoint())
1190           Constants[i] = DAG.getConstantFP(0, getCurSDLoc(), EltVT);
1191         else
1192           Constants[i] = DAG.getConstant(0, getCurSDLoc(), EltVT);
1193       }
1194 
1195       return DAG.getMergeValues(Constants, getCurSDLoc());
1196     }
1197 
1198     if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
1199       return DAG.getBlockAddress(BA, VT);
1200 
1201     VectorType *VecTy = cast<VectorType>(V->getType());
1202     unsigned NumElements = VecTy->getNumElements();
1203 
1204     // Now that we know the number and type of the elements, get that number of
1205     // elements into the Ops array based on what kind of constant it is.
1206     SmallVector<SDValue, 16> Ops;
1207     if (const ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
1208       for (unsigned i = 0; i != NumElements; ++i)
1209         Ops.push_back(getValue(CV->getOperand(i)));
1210     } else {
1211       assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
1212       EVT EltVT =
1213           TLI.getValueType(DAG.getDataLayout(), VecTy->getElementType());
1214 
1215       SDValue Op;
1216       if (EltVT.isFloatingPoint())
1217         Op = DAG.getConstantFP(0, getCurSDLoc(), EltVT);
1218       else
1219         Op = DAG.getConstant(0, getCurSDLoc(), EltVT);
1220       Ops.assign(NumElements, Op);
1221     }
1222 
1223     // Create a BUILD_VECTOR node.
1224     return NodeMap[V] = DAG.getBuildVector(VT, getCurSDLoc(), Ops);
1225   }
1226 
1227   // If this is a static alloca, generate it as the frameindex instead of
1228   // computation.
1229   if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1230     DenseMap<const AllocaInst*, int>::iterator SI =
1231       FuncInfo.StaticAllocaMap.find(AI);
1232     if (SI != FuncInfo.StaticAllocaMap.end())
1233       return DAG.getFrameIndex(SI->second,
1234                                TLI.getFrameIndexTy(DAG.getDataLayout()));
1235   }
1236 
1237   // If this is an instruction which fast-isel has deferred, select it now.
1238   if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
1239     unsigned InReg = FuncInfo.InitializeRegForValue(Inst);
1240 
1241     RegsForValue RFV(*DAG.getContext(), TLI, DAG.getDataLayout(), InReg,
1242                      Inst->getType(), isABIRegCopy(V));
1243     SDValue Chain = DAG.getEntryNode();
1244     return RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr, V);
1245   }
1246 
1247   llvm_unreachable("Can't get register for value!");
1248 }
1249 
1250 void SelectionDAGBuilder::visitCatchPad(const CatchPadInst &I) {
1251   auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1252   bool IsMSVCCXX = Pers == EHPersonality::MSVC_CXX;
1253   bool IsCoreCLR = Pers == EHPersonality::CoreCLR;
1254   MachineBasicBlock *CatchPadMBB = FuncInfo.MBB;
1255   // In MSVC C++ and CoreCLR, catchblocks are funclets and need prologues.
1256   if (IsMSVCCXX || IsCoreCLR)
1257     CatchPadMBB->setIsEHFuncletEntry();
1258 
1259   DAG.setRoot(DAG.getNode(ISD::CATCHPAD, getCurSDLoc(), MVT::Other, getControlRoot()));
1260 }
1261 
1262 void SelectionDAGBuilder::visitCatchRet(const CatchReturnInst &I) {
1263   // Update machine-CFG edge.
1264   MachineBasicBlock *TargetMBB = FuncInfo.MBBMap[I.getSuccessor()];
1265   FuncInfo.MBB->addSuccessor(TargetMBB);
1266 
1267   auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1268   bool IsSEH = isAsynchronousEHPersonality(Pers);
1269   if (IsSEH) {
1270     // If this is not a fall-through branch or optimizations are switched off,
1271     // emit the branch.
1272     if (TargetMBB != NextBlock(FuncInfo.MBB) ||
1273         TM.getOptLevel() == CodeGenOpt::None)
1274       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other,
1275                               getControlRoot(), DAG.getBasicBlock(TargetMBB)));
1276     return;
1277   }
1278 
1279   // Figure out the funclet membership for the catchret's successor.
1280   // This will be used by the FuncletLayout pass to determine how to order the
1281   // BB's.
1282   // A 'catchret' returns to the outer scope's color.
1283   Value *ParentPad = I.getCatchSwitchParentPad();
1284   const BasicBlock *SuccessorColor;
1285   if (isa<ConstantTokenNone>(ParentPad))
1286     SuccessorColor = &FuncInfo.Fn->getEntryBlock();
1287   else
1288     SuccessorColor = cast<Instruction>(ParentPad)->getParent();
1289   assert(SuccessorColor && "No parent funclet for catchret!");
1290   MachineBasicBlock *SuccessorColorMBB = FuncInfo.MBBMap[SuccessorColor];
1291   assert(SuccessorColorMBB && "No MBB for SuccessorColor!");
1292 
1293   // Create the terminator node.
1294   SDValue Ret = DAG.getNode(ISD::CATCHRET, getCurSDLoc(), MVT::Other,
1295                             getControlRoot(), DAG.getBasicBlock(TargetMBB),
1296                             DAG.getBasicBlock(SuccessorColorMBB));
1297   DAG.setRoot(Ret);
1298 }
1299 
1300 void SelectionDAGBuilder::visitCleanupPad(const CleanupPadInst &CPI) {
1301   // Don't emit any special code for the cleanuppad instruction. It just marks
1302   // the start of a funclet.
1303   FuncInfo.MBB->setIsEHFuncletEntry();
1304   FuncInfo.MBB->setIsCleanupFuncletEntry();
1305 }
1306 
1307 /// When an invoke or a cleanupret unwinds to the next EH pad, there are
1308 /// many places it could ultimately go. In the IR, we have a single unwind
1309 /// destination, but in the machine CFG, we enumerate all the possible blocks.
1310 /// This function skips over imaginary basic blocks that hold catchswitch
1311 /// instructions, and finds all the "real" machine
1312 /// basic block destinations. As those destinations may not be successors of
1313 /// EHPadBB, here we also calculate the edge probability to those destinations.
1314 /// The passed-in Prob is the edge probability to EHPadBB.
1315 static void findUnwindDestinations(
1316     FunctionLoweringInfo &FuncInfo, const BasicBlock *EHPadBB,
1317     BranchProbability Prob,
1318     SmallVectorImpl<std::pair<MachineBasicBlock *, BranchProbability>>
1319         &UnwindDests) {
1320   EHPersonality Personality =
1321     classifyEHPersonality(FuncInfo.Fn->getPersonalityFn());
1322   bool IsMSVCCXX = Personality == EHPersonality::MSVC_CXX;
1323   bool IsCoreCLR = Personality == EHPersonality::CoreCLR;
1324 
1325   while (EHPadBB) {
1326     const Instruction *Pad = EHPadBB->getFirstNonPHI();
1327     BasicBlock *NewEHPadBB = nullptr;
1328     if (isa<LandingPadInst>(Pad)) {
1329       // Stop on landingpads. They are not funclets.
1330       UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob);
1331       break;
1332     } else if (isa<CleanupPadInst>(Pad)) {
1333       // Stop on cleanup pads. Cleanups are always funclet entries for all known
1334       // personalities.
1335       UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob);
1336       UnwindDests.back().first->setIsEHFuncletEntry();
1337       break;
1338     } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Pad)) {
1339       // Add the catchpad handlers to the possible destinations.
1340       for (const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
1341         UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob);
1342         // For MSVC++ and the CLR, catchblocks are funclets and need prologues.
1343         if (IsMSVCCXX || IsCoreCLR)
1344           UnwindDests.back().first->setIsEHFuncletEntry();
1345       }
1346       NewEHPadBB = CatchSwitch->getUnwindDest();
1347     } else {
1348       continue;
1349     }
1350 
1351     BranchProbabilityInfo *BPI = FuncInfo.BPI;
1352     if (BPI && NewEHPadBB)
1353       Prob *= BPI->getEdgeProbability(EHPadBB, NewEHPadBB);
1354     EHPadBB = NewEHPadBB;
1355   }
1356 }
1357 
1358 void SelectionDAGBuilder::visitCleanupRet(const CleanupReturnInst &I) {
1359   // Update successor info.
1360   SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests;
1361   auto UnwindDest = I.getUnwindDest();
1362   BranchProbabilityInfo *BPI = FuncInfo.BPI;
1363   BranchProbability UnwindDestProb =
1364       (BPI && UnwindDest)
1365           ? BPI->getEdgeProbability(FuncInfo.MBB->getBasicBlock(), UnwindDest)
1366           : BranchProbability::getZero();
1367   findUnwindDestinations(FuncInfo, UnwindDest, UnwindDestProb, UnwindDests);
1368   for (auto &UnwindDest : UnwindDests) {
1369     UnwindDest.first->setIsEHPad();
1370     addSuccessorWithProb(FuncInfo.MBB, UnwindDest.first, UnwindDest.second);
1371   }
1372   FuncInfo.MBB->normalizeSuccProbs();
1373 
1374   // Create the terminator node.
1375   SDValue Ret =
1376       DAG.getNode(ISD::CLEANUPRET, getCurSDLoc(), MVT::Other, getControlRoot());
1377   DAG.setRoot(Ret);
1378 }
1379 
1380 void SelectionDAGBuilder::visitCatchSwitch(const CatchSwitchInst &CSI) {
1381   report_fatal_error("visitCatchSwitch not yet implemented!");
1382 }
1383 
1384 void SelectionDAGBuilder::visitRet(const ReturnInst &I) {
1385   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1386   auto &DL = DAG.getDataLayout();
1387   SDValue Chain = getControlRoot();
1388   SmallVector<ISD::OutputArg, 8> Outs;
1389   SmallVector<SDValue, 8> OutVals;
1390 
1391   // Calls to @llvm.experimental.deoptimize don't generate a return value, so
1392   // lower
1393   //
1394   //   %val = call <ty> @llvm.experimental.deoptimize()
1395   //   ret <ty> %val
1396   //
1397   // differently.
1398   if (I.getParent()->getTerminatingDeoptimizeCall()) {
1399     LowerDeoptimizingReturn();
1400     return;
1401   }
1402 
1403   if (!FuncInfo.CanLowerReturn) {
1404     unsigned DemoteReg = FuncInfo.DemoteRegister;
1405     const Function *F = I.getParent()->getParent();
1406 
1407     // Emit a store of the return value through the virtual register.
1408     // Leave Outs empty so that LowerReturn won't try to load return
1409     // registers the usual way.
1410     SmallVector<EVT, 1> PtrValueVTs;
1411     ComputeValueVTs(TLI, DL, PointerType::getUnqual(F->getReturnType()),
1412                     PtrValueVTs);
1413 
1414     SDValue RetPtr = DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(),
1415                                         DemoteReg, PtrValueVTs[0]);
1416     SDValue RetOp = getValue(I.getOperand(0));
1417 
1418     SmallVector<EVT, 4> ValueVTs;
1419     SmallVector<uint64_t, 4> Offsets;
1420     ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs, &Offsets);
1421     unsigned NumValues = ValueVTs.size();
1422 
1423     // An aggregate return value cannot wrap around the address space, so
1424     // offsets to its parts don't wrap either.
1425     SDNodeFlags Flags;
1426     Flags.setNoUnsignedWrap(true);
1427 
1428     SmallVector<SDValue, 4> Chains(NumValues);
1429     for (unsigned i = 0; i != NumValues; ++i) {
1430       SDValue Add = DAG.getNode(ISD::ADD, getCurSDLoc(),
1431                                 RetPtr.getValueType(), RetPtr,
1432                                 DAG.getIntPtrConstant(Offsets[i],
1433                                                       getCurSDLoc()),
1434                                 Flags);
1435       Chains[i] = DAG.getStore(Chain, getCurSDLoc(),
1436                                SDValue(RetOp.getNode(), RetOp.getResNo() + i),
1437                                // FIXME: better loc info would be nice.
1438                                Add, MachinePointerInfo());
1439     }
1440 
1441     Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(),
1442                         MVT::Other, Chains);
1443   } else if (I.getNumOperands() != 0) {
1444     SmallVector<EVT, 4> ValueVTs;
1445     ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs);
1446     unsigned NumValues = ValueVTs.size();
1447     if (NumValues) {
1448       SDValue RetOp = getValue(I.getOperand(0));
1449 
1450       const Function *F = I.getParent()->getParent();
1451 
1452       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1453       if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
1454                                           Attribute::SExt))
1455         ExtendKind = ISD::SIGN_EXTEND;
1456       else if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
1457                                                Attribute::ZExt))
1458         ExtendKind = ISD::ZERO_EXTEND;
1459 
1460       LLVMContext &Context = F->getContext();
1461       bool RetInReg = F->getAttributes().hasAttribute(
1462           AttributeList::ReturnIndex, Attribute::InReg);
1463 
1464       for (unsigned j = 0; j != NumValues; ++j) {
1465         EVT VT = ValueVTs[j];
1466 
1467         if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger())
1468           VT = TLI.getTypeForExtReturn(Context, VT, ExtendKind);
1469 
1470         unsigned NumParts = TLI.getNumRegistersForCallingConv(Context, VT);
1471         MVT PartVT = TLI.getRegisterTypeForCallingConv(Context, VT);
1472         SmallVector<SDValue, 4> Parts(NumParts);
1473         getCopyToParts(DAG, getCurSDLoc(),
1474                        SDValue(RetOp.getNode(), RetOp.getResNo() + j),
1475                        &Parts[0], NumParts, PartVT, &I, ExtendKind, true);
1476 
1477         // 'inreg' on function refers to return value
1478         ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
1479         if (RetInReg)
1480           Flags.setInReg();
1481 
1482         // Propagate extension type if any
1483         if (ExtendKind == ISD::SIGN_EXTEND)
1484           Flags.setSExt();
1485         else if (ExtendKind == ISD::ZERO_EXTEND)
1486           Flags.setZExt();
1487 
1488         for (unsigned i = 0; i < NumParts; ++i) {
1489           Outs.push_back(ISD::OutputArg(Flags, Parts[i].getValueType(),
1490                                         VT, /*isfixed=*/true, 0, 0));
1491           OutVals.push_back(Parts[i]);
1492         }
1493       }
1494     }
1495   }
1496 
1497   // Push in swifterror virtual register as the last element of Outs. This makes
1498   // sure swifterror virtual register will be returned in the swifterror
1499   // physical register.
1500   const Function *F = I.getParent()->getParent();
1501   if (TLI.supportSwiftError() &&
1502       F->getAttributes().hasAttrSomewhere(Attribute::SwiftError)) {
1503     assert(FuncInfo.SwiftErrorArg && "Need a swift error argument");
1504     ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
1505     Flags.setSwiftError();
1506     Outs.push_back(ISD::OutputArg(Flags, EVT(TLI.getPointerTy(DL)) /*vt*/,
1507                                   EVT(TLI.getPointerTy(DL)) /*argvt*/,
1508                                   true /*isfixed*/, 1 /*origidx*/,
1509                                   0 /*partOffs*/));
1510     // Create SDNode for the swifterror virtual register.
1511     OutVals.push_back(
1512         DAG.getRegister(FuncInfo.getOrCreateSwiftErrorVRegUseAt(
1513                             &I, FuncInfo.MBB, FuncInfo.SwiftErrorArg).first,
1514                         EVT(TLI.getPointerTy(DL))));
1515   }
1516 
1517   bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
1518   CallingConv::ID CallConv =
1519     DAG.getMachineFunction().getFunction()->getCallingConv();
1520   Chain = DAG.getTargetLoweringInfo().LowerReturn(
1521       Chain, CallConv, isVarArg, Outs, OutVals, getCurSDLoc(), DAG);
1522 
1523   // Verify that the target's LowerReturn behaved as expected.
1524   assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
1525          "LowerReturn didn't return a valid chain!");
1526 
1527   // Update the DAG with the new chain value resulting from return lowering.
1528   DAG.setRoot(Chain);
1529 }
1530 
1531 /// CopyToExportRegsIfNeeded - If the given value has virtual registers
1532 /// created for it, emit nodes to copy the value into the virtual
1533 /// registers.
1534 void SelectionDAGBuilder::CopyToExportRegsIfNeeded(const Value *V) {
1535   // Skip empty types
1536   if (V->getType()->isEmptyTy())
1537     return;
1538 
1539   DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1540   if (VMI != FuncInfo.ValueMap.end()) {
1541     assert(!V->use_empty() && "Unused value assigned virtual registers!");
1542     CopyValueToVirtualRegister(V, VMI->second);
1543   }
1544 }
1545 
1546 /// ExportFromCurrentBlock - If this condition isn't known to be exported from
1547 /// the current basic block, add it to ValueMap now so that we'll get a
1548 /// CopyTo/FromReg.
1549 void SelectionDAGBuilder::ExportFromCurrentBlock(const Value *V) {
1550   // No need to export constants.
1551   if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1552 
1553   // Already exported?
1554   if (FuncInfo.isExportedInst(V)) return;
1555 
1556   unsigned Reg = FuncInfo.InitializeRegForValue(V);
1557   CopyValueToVirtualRegister(V, Reg);
1558 }
1559 
1560 bool SelectionDAGBuilder::isExportableFromCurrentBlock(const Value *V,
1561                                                      const BasicBlock *FromBB) {
1562   // The operands of the setcc have to be in this block.  We don't know
1563   // how to export them from some other block.
1564   if (const Instruction *VI = dyn_cast<Instruction>(V)) {
1565     // Can export from current BB.
1566     if (VI->getParent() == FromBB)
1567       return true;
1568 
1569     // Is already exported, noop.
1570     return FuncInfo.isExportedInst(V);
1571   }
1572 
1573   // If this is an argument, we can export it if the BB is the entry block or
1574   // if it is already exported.
1575   if (isa<Argument>(V)) {
1576     if (FromBB == &FromBB->getParent()->getEntryBlock())
1577       return true;
1578 
1579     // Otherwise, can only export this if it is already exported.
1580     return FuncInfo.isExportedInst(V);
1581   }
1582 
1583   // Otherwise, constants can always be exported.
1584   return true;
1585 }
1586 
1587 /// Return branch probability calculated by BranchProbabilityInfo for IR blocks.
1588 BranchProbability
1589 SelectionDAGBuilder::getEdgeProbability(const MachineBasicBlock *Src,
1590                                         const MachineBasicBlock *Dst) const {
1591   BranchProbabilityInfo *BPI = FuncInfo.BPI;
1592   const BasicBlock *SrcBB = Src->getBasicBlock();
1593   const BasicBlock *DstBB = Dst->getBasicBlock();
1594   if (!BPI) {
1595     // If BPI is not available, set the default probability as 1 / N, where N is
1596     // the number of successors.
1597     auto SuccSize = std::max<uint32_t>(
1598         std::distance(succ_begin(SrcBB), succ_end(SrcBB)), 1);
1599     return BranchProbability(1, SuccSize);
1600   }
1601   return BPI->getEdgeProbability(SrcBB, DstBB);
1602 }
1603 
1604 void SelectionDAGBuilder::addSuccessorWithProb(MachineBasicBlock *Src,
1605                                                MachineBasicBlock *Dst,
1606                                                BranchProbability Prob) {
1607   if (!FuncInfo.BPI)
1608     Src->addSuccessorWithoutProb(Dst);
1609   else {
1610     if (Prob.isUnknown())
1611       Prob = getEdgeProbability(Src, Dst);
1612     Src->addSuccessor(Dst, Prob);
1613   }
1614 }
1615 
1616 static bool InBlock(const Value *V, const BasicBlock *BB) {
1617   if (const Instruction *I = dyn_cast<Instruction>(V))
1618     return I->getParent() == BB;
1619   return true;
1620 }
1621 
1622 /// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1623 /// This function emits a branch and is used at the leaves of an OR or an
1624 /// AND operator tree.
1625 ///
1626 void
1627 SelectionDAGBuilder::EmitBranchForMergedCondition(const Value *Cond,
1628                                                   MachineBasicBlock *TBB,
1629                                                   MachineBasicBlock *FBB,
1630                                                   MachineBasicBlock *CurBB,
1631                                                   MachineBasicBlock *SwitchBB,
1632                                                   BranchProbability TProb,
1633                                                   BranchProbability FProb,
1634                                                   bool InvertCond) {
1635   const BasicBlock *BB = CurBB->getBasicBlock();
1636 
1637   // If the leaf of the tree is a comparison, merge the condition into
1638   // the caseblock.
1639   if (const CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1640     // The operands of the cmp have to be in this block.  We don't know
1641     // how to export them from some other block.  If this is the first block
1642     // of the sequence, no exporting is needed.
1643     if (CurBB == SwitchBB ||
1644         (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1645          isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
1646       ISD::CondCode Condition;
1647       if (const ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1648         ICmpInst::Predicate Pred =
1649             InvertCond ? IC->getInversePredicate() : IC->getPredicate();
1650         Condition = getICmpCondCode(Pred);
1651       } else {
1652         const FCmpInst *FC = cast<FCmpInst>(Cond);
1653         FCmpInst::Predicate Pred =
1654             InvertCond ? FC->getInversePredicate() : FC->getPredicate();
1655         Condition = getFCmpCondCode(Pred);
1656         if (TM.Options.NoNaNsFPMath)
1657           Condition = getFCmpCodeWithoutNaN(Condition);
1658       }
1659 
1660       CaseBlock CB(Condition, BOp->getOperand(0), BOp->getOperand(1), nullptr,
1661                    TBB, FBB, CurBB, getCurSDLoc(), TProb, FProb);
1662       SwitchCases.push_back(CB);
1663       return;
1664     }
1665   }
1666 
1667   // Create a CaseBlock record representing this branch.
1668   ISD::CondCode Opc = InvertCond ? ISD::SETNE : ISD::SETEQ;
1669   CaseBlock CB(Opc, Cond, ConstantInt::getTrue(*DAG.getContext()),
1670                nullptr, TBB, FBB, CurBB, getCurSDLoc(), TProb, FProb);
1671   SwitchCases.push_back(CB);
1672 }
1673 
1674 /// FindMergedConditions - If Cond is an expression like
1675 void SelectionDAGBuilder::FindMergedConditions(const Value *Cond,
1676                                                MachineBasicBlock *TBB,
1677                                                MachineBasicBlock *FBB,
1678                                                MachineBasicBlock *CurBB,
1679                                                MachineBasicBlock *SwitchBB,
1680                                                Instruction::BinaryOps Opc,
1681                                                BranchProbability TProb,
1682                                                BranchProbability FProb,
1683                                                bool InvertCond) {
1684   // Skip over not part of the tree and remember to invert op and operands at
1685   // next level.
1686   if (BinaryOperator::isNot(Cond) && Cond->hasOneUse()) {
1687     const Value *CondOp = BinaryOperator::getNotArgument(Cond);
1688     if (InBlock(CondOp, CurBB->getBasicBlock())) {
1689       FindMergedConditions(CondOp, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb,
1690                            !InvertCond);
1691       return;
1692     }
1693   }
1694 
1695   const Instruction *BOp = dyn_cast<Instruction>(Cond);
1696   // Compute the effective opcode for Cond, taking into account whether it needs
1697   // to be inverted, e.g.
1698   //   and (not (or A, B)), C
1699   // gets lowered as
1700   //   and (and (not A, not B), C)
1701   unsigned BOpc = 0;
1702   if (BOp) {
1703     BOpc = BOp->getOpcode();
1704     if (InvertCond) {
1705       if (BOpc == Instruction::And)
1706         BOpc = Instruction::Or;
1707       else if (BOpc == Instruction::Or)
1708         BOpc = Instruction::And;
1709     }
1710   }
1711 
1712   // If this node is not part of the or/and tree, emit it as a branch.
1713   if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1714       BOpc != Opc || !BOp->hasOneUse() ||
1715       BOp->getParent() != CurBB->getBasicBlock() ||
1716       !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1717       !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1718     EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB, SwitchBB,
1719                                  TProb, FProb, InvertCond);
1720     return;
1721   }
1722 
1723   //  Create TmpBB after CurBB.
1724   MachineFunction::iterator BBI(CurBB);
1725   MachineFunction &MF = DAG.getMachineFunction();
1726   MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1727   CurBB->getParent()->insert(++BBI, TmpBB);
1728 
1729   if (Opc == Instruction::Or) {
1730     // Codegen X | Y as:
1731     // BB1:
1732     //   jmp_if_X TBB
1733     //   jmp TmpBB
1734     // TmpBB:
1735     //   jmp_if_Y TBB
1736     //   jmp FBB
1737     //
1738 
1739     // We have flexibility in setting Prob for BB1 and Prob for TmpBB.
1740     // The requirement is that
1741     //   TrueProb for BB1 + (FalseProb for BB1 * TrueProb for TmpBB)
1742     //     = TrueProb for original BB.
1743     // Assuming the original probabilities are A and B, one choice is to set
1744     // BB1's probabilities to A/2 and A/2+B, and set TmpBB's probabilities to
1745     // A/(1+B) and 2B/(1+B). This choice assumes that
1746     //   TrueProb for BB1 == FalseProb for BB1 * TrueProb for TmpBB.
1747     // Another choice is to assume TrueProb for BB1 equals to TrueProb for
1748     // TmpBB, but the math is more complicated.
1749 
1750     auto NewTrueProb = TProb / 2;
1751     auto NewFalseProb = TProb / 2 + FProb;
1752     // Emit the LHS condition.
1753     FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc,
1754                          NewTrueProb, NewFalseProb, InvertCond);
1755 
1756     // Normalize A/2 and B to get A/(1+B) and 2B/(1+B).
1757     SmallVector<BranchProbability, 2> Probs{TProb / 2, FProb};
1758     BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end());
1759     // Emit the RHS condition into TmpBB.
1760     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc,
1761                          Probs[0], Probs[1], InvertCond);
1762   } else {
1763     assert(Opc == Instruction::And && "Unknown merge op!");
1764     // Codegen X & Y as:
1765     // BB1:
1766     //   jmp_if_X TmpBB
1767     //   jmp FBB
1768     // TmpBB:
1769     //   jmp_if_Y TBB
1770     //   jmp FBB
1771     //
1772     //  This requires creation of TmpBB after CurBB.
1773 
1774     // We have flexibility in setting Prob for BB1 and Prob for TmpBB.
1775     // The requirement is that
1776     //   FalseProb for BB1 + (TrueProb for BB1 * FalseProb for TmpBB)
1777     //     = FalseProb for original BB.
1778     // Assuming the original probabilities are A and B, one choice is to set
1779     // BB1's probabilities to A+B/2 and B/2, and set TmpBB's probabilities to
1780     // 2A/(1+A) and B/(1+A). This choice assumes that FalseProb for BB1 ==
1781     // TrueProb for BB1 * FalseProb for TmpBB.
1782 
1783     auto NewTrueProb = TProb + FProb / 2;
1784     auto NewFalseProb = FProb / 2;
1785     // Emit the LHS condition.
1786     FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc,
1787                          NewTrueProb, NewFalseProb, InvertCond);
1788 
1789     // Normalize A and B/2 to get 2A/(1+A) and B/(1+A).
1790     SmallVector<BranchProbability, 2> Probs{TProb, FProb / 2};
1791     BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end());
1792     // Emit the RHS condition into TmpBB.
1793     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc,
1794                          Probs[0], Probs[1], InvertCond);
1795   }
1796 }
1797 
1798 /// If the set of cases should be emitted as a series of branches, return true.
1799 /// If we should emit this as a bunch of and/or'd together conditions, return
1800 /// false.
1801 bool
1802 SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases) {
1803   if (Cases.size() != 2) return true;
1804 
1805   // If this is two comparisons of the same values or'd or and'd together, they
1806   // will get folded into a single comparison, so don't emit two blocks.
1807   if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1808        Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1809       (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1810        Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1811     return false;
1812   }
1813 
1814   // Handle: (X != null) | (Y != null) --> (X|Y) != 0
1815   // Handle: (X == null) & (Y == null) --> (X|Y) == 0
1816   if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
1817       Cases[0].CC == Cases[1].CC &&
1818       isa<Constant>(Cases[0].CmpRHS) &&
1819       cast<Constant>(Cases[0].CmpRHS)->isNullValue()) {
1820     if (Cases[0].CC == ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
1821       return false;
1822     if (Cases[0].CC == ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
1823       return false;
1824   }
1825 
1826   return true;
1827 }
1828 
1829 void SelectionDAGBuilder::visitBr(const BranchInst &I) {
1830   MachineBasicBlock *BrMBB = FuncInfo.MBB;
1831 
1832   // Update machine-CFG edges.
1833   MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1834 
1835   if (I.isUnconditional()) {
1836     // Update machine-CFG edges.
1837     BrMBB->addSuccessor(Succ0MBB);
1838 
1839     // If this is not a fall-through branch or optimizations are switched off,
1840     // emit the branch.
1841     if (Succ0MBB != NextBlock(BrMBB) || TM.getOptLevel() == CodeGenOpt::None)
1842       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
1843                               MVT::Other, getControlRoot(),
1844                               DAG.getBasicBlock(Succ0MBB)));
1845 
1846     return;
1847   }
1848 
1849   // If this condition is one of the special cases we handle, do special stuff
1850   // now.
1851   const Value *CondVal = I.getCondition();
1852   MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1853 
1854   // If this is a series of conditions that are or'd or and'd together, emit
1855   // this as a sequence of branches instead of setcc's with and/or operations.
1856   // As long as jumps are not expensive, this should improve performance.
1857   // For example, instead of something like:
1858   //     cmp A, B
1859   //     C = seteq
1860   //     cmp D, E
1861   //     F = setle
1862   //     or C, F
1863   //     jnz foo
1864   // Emit:
1865   //     cmp A, B
1866   //     je foo
1867   //     cmp D, E
1868   //     jle foo
1869   //
1870   if (const BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1871     Instruction::BinaryOps Opcode = BOp->getOpcode();
1872     if (!DAG.getTargetLoweringInfo().isJumpExpensive() && BOp->hasOneUse() &&
1873         !I.getMetadata(LLVMContext::MD_unpredictable) &&
1874         (Opcode == Instruction::And || Opcode == Instruction::Or)) {
1875       FindMergedConditions(BOp, Succ0MBB, Succ1MBB, BrMBB, BrMBB,
1876                            Opcode,
1877                            getEdgeProbability(BrMBB, Succ0MBB),
1878                            getEdgeProbability(BrMBB, Succ1MBB),
1879                            /*InvertCond=*/false);
1880       // If the compares in later blocks need to use values not currently
1881       // exported from this block, export them now.  This block should always
1882       // be the first entry.
1883       assert(SwitchCases[0].ThisBB == BrMBB && "Unexpected lowering!");
1884 
1885       // Allow some cases to be rejected.
1886       if (ShouldEmitAsBranches(SwitchCases)) {
1887         for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1888           ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1889           ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1890         }
1891 
1892         // Emit the branch for this block.
1893         visitSwitchCase(SwitchCases[0], BrMBB);
1894         SwitchCases.erase(SwitchCases.begin());
1895         return;
1896       }
1897 
1898       // Okay, we decided not to do this, remove any inserted MBB's and clear
1899       // SwitchCases.
1900       for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1901         FuncInfo.MF->erase(SwitchCases[i].ThisBB);
1902 
1903       SwitchCases.clear();
1904     }
1905   }
1906 
1907   // Create a CaseBlock record representing this branch.
1908   CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
1909                nullptr, Succ0MBB, Succ1MBB, BrMBB, getCurSDLoc());
1910 
1911   // Use visitSwitchCase to actually insert the fast branch sequence for this
1912   // cond branch.
1913   visitSwitchCase(CB, BrMBB);
1914 }
1915 
1916 /// visitSwitchCase - Emits the necessary code to represent a single node in
1917 /// the binary search tree resulting from lowering a switch instruction.
1918 void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB,
1919                                           MachineBasicBlock *SwitchBB) {
1920   SDValue Cond;
1921   SDValue CondLHS = getValue(CB.CmpLHS);
1922   SDLoc dl = CB.DL;
1923 
1924   // Build the setcc now.
1925   if (!CB.CmpMHS) {
1926     // Fold "(X == true)" to X and "(X == false)" to !X to
1927     // handle common cases produced by branch lowering.
1928     if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
1929         CB.CC == ISD::SETEQ)
1930       Cond = CondLHS;
1931     else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
1932              CB.CC == ISD::SETEQ) {
1933       SDValue True = DAG.getConstant(1, dl, CondLHS.getValueType());
1934       Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
1935     } else
1936       Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1937   } else {
1938     assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1939 
1940     const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1941     const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
1942 
1943     SDValue CmpOp = getValue(CB.CmpMHS);
1944     EVT VT = CmpOp.getValueType();
1945 
1946     if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1947       Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, dl, VT),
1948                           ISD::SETLE);
1949     } else {
1950       SDValue SUB = DAG.getNode(ISD::SUB, dl,
1951                                 VT, CmpOp, DAG.getConstant(Low, dl, VT));
1952       Cond = DAG.getSetCC(dl, MVT::i1, SUB,
1953                           DAG.getConstant(High-Low, dl, VT), ISD::SETULE);
1954     }
1955   }
1956 
1957   // Update successor info
1958   addSuccessorWithProb(SwitchBB, CB.TrueBB, CB.TrueProb);
1959   // TrueBB and FalseBB are always different unless the incoming IR is
1960   // degenerate. This only happens when running llc on weird IR.
1961   if (CB.TrueBB != CB.FalseBB)
1962     addSuccessorWithProb(SwitchBB, CB.FalseBB, CB.FalseProb);
1963   SwitchBB->normalizeSuccProbs();
1964 
1965   // If the lhs block is the next block, invert the condition so that we can
1966   // fall through to the lhs instead of the rhs block.
1967   if (CB.TrueBB == NextBlock(SwitchBB)) {
1968     std::swap(CB.TrueBB, CB.FalseBB);
1969     SDValue True = DAG.getConstant(1, dl, Cond.getValueType());
1970     Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
1971   }
1972 
1973   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
1974                                MVT::Other, getControlRoot(), Cond,
1975                                DAG.getBasicBlock(CB.TrueBB));
1976 
1977   // Insert the false branch. Do this even if it's a fall through branch,
1978   // this makes it easier to do DAG optimizations which require inverting
1979   // the branch condition.
1980   BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
1981                        DAG.getBasicBlock(CB.FalseBB));
1982 
1983   DAG.setRoot(BrCond);
1984 }
1985 
1986 /// visitJumpTable - Emit JumpTable node in the current MBB
1987 void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) {
1988   // Emit the code for the jump table
1989   assert(JT.Reg != -1U && "Should lower JT Header first!");
1990   EVT PTy = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
1991   SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurSDLoc(),
1992                                      JT.Reg, PTy);
1993   SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
1994   SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurSDLoc(),
1995                                     MVT::Other, Index.getValue(1),
1996                                     Table, Index);
1997   DAG.setRoot(BrJumpTable);
1998 }
1999 
2000 /// visitJumpTableHeader - This function emits necessary code to produce index
2001 /// in the JumpTable from switch case.
2002 void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT,
2003                                                JumpTableHeader &JTH,
2004                                                MachineBasicBlock *SwitchBB) {
2005   SDLoc dl = getCurSDLoc();
2006 
2007   // Subtract the lowest switch case value from the value being switched on and
2008   // conditional branch to default mbb if the result is greater than the
2009   // difference between smallest and largest cases.
2010   SDValue SwitchOp = getValue(JTH.SValue);
2011   EVT VT = SwitchOp.getValueType();
2012   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp,
2013                             DAG.getConstant(JTH.First, dl, VT));
2014 
2015   // The SDNode we just created, which holds the value being switched on minus
2016   // the smallest case value, needs to be copied to a virtual register so it
2017   // can be used as an index into the jump table in a subsequent basic block.
2018   // This value may be smaller or larger than the target's pointer type, and
2019   // therefore require extension or truncating.
2020   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2021   SwitchOp = DAG.getZExtOrTrunc(Sub, dl, TLI.getPointerTy(DAG.getDataLayout()));
2022 
2023   unsigned JumpTableReg =
2024       FuncInfo.CreateReg(TLI.getPointerTy(DAG.getDataLayout()));
2025   SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl,
2026                                     JumpTableReg, SwitchOp);
2027   JT.Reg = JumpTableReg;
2028 
2029   // Emit the range check for the jump table, and branch to the default block
2030   // for the switch statement if the value being switched on exceeds the largest
2031   // case in the switch.
2032   SDValue CMP = DAG.getSetCC(
2033       dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
2034                                  Sub.getValueType()),
2035       Sub, DAG.getConstant(JTH.Last - JTH.First, dl, VT), ISD::SETUGT);
2036 
2037   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
2038                                MVT::Other, CopyTo, CMP,
2039                                DAG.getBasicBlock(JT.Default));
2040 
2041   // Avoid emitting unnecessary branches to the next block.
2042   if (JT.MBB != NextBlock(SwitchBB))
2043     BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
2044                          DAG.getBasicBlock(JT.MBB));
2045 
2046   DAG.setRoot(BrCond);
2047 }
2048 
2049 /// Create a LOAD_STACK_GUARD node, and let it carry the target specific global
2050 /// variable if there exists one.
2051 static SDValue getLoadStackGuard(SelectionDAG &DAG, const SDLoc &DL,
2052                                  SDValue &Chain) {
2053   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2054   EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
2055   MachineFunction &MF = DAG.getMachineFunction();
2056   Value *Global = TLI.getSDagStackGuard(*MF.getFunction()->getParent());
2057   MachineSDNode *Node =
2058       DAG.getMachineNode(TargetOpcode::LOAD_STACK_GUARD, DL, PtrTy, Chain);
2059   if (Global) {
2060     MachinePointerInfo MPInfo(Global);
2061     MachineInstr::mmo_iterator MemRefs = MF.allocateMemRefsArray(1);
2062     auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant |
2063                  MachineMemOperand::MODereferenceable;
2064     *MemRefs = MF.getMachineMemOperand(MPInfo, Flags, PtrTy.getSizeInBits() / 8,
2065                                        DAG.getEVTAlignment(PtrTy));
2066     Node->setMemRefs(MemRefs, MemRefs + 1);
2067   }
2068   return SDValue(Node, 0);
2069 }
2070 
2071 /// Codegen a new tail for a stack protector check ParentMBB which has had its
2072 /// tail spliced into a stack protector check success bb.
2073 ///
2074 /// For a high level explanation of how this fits into the stack protector
2075 /// generation see the comment on the declaration of class
2076 /// StackProtectorDescriptor.
2077 void SelectionDAGBuilder::visitSPDescriptorParent(StackProtectorDescriptor &SPD,
2078                                                   MachineBasicBlock *ParentBB) {
2079 
2080   // First create the loads to the guard/stack slot for the comparison.
2081   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2082   EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
2083 
2084   MachineFrameInfo &MFI = ParentBB->getParent()->getFrameInfo();
2085   int FI = MFI.getStackProtectorIndex();
2086 
2087   SDValue Guard;
2088   SDLoc dl = getCurSDLoc();
2089   SDValue StackSlotPtr = DAG.getFrameIndex(FI, PtrTy);
2090   const Module &M = *ParentBB->getParent()->getFunction()->getParent();
2091   unsigned Align = DL->getPrefTypeAlignment(Type::getInt8PtrTy(M.getContext()));
2092 
2093   // Generate code to load the content of the guard slot.
2094   SDValue StackSlot = DAG.getLoad(
2095       PtrTy, dl, DAG.getEntryNode(), StackSlotPtr,
2096       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), Align,
2097       MachineMemOperand::MOVolatile);
2098 
2099   // Retrieve guard check function, nullptr if instrumentation is inlined.
2100   if (const Value *GuardCheck = TLI.getSSPStackGuardCheck(M)) {
2101     // The target provides a guard check function to validate the guard value.
2102     // Generate a call to that function with the content of the guard slot as
2103     // argument.
2104     auto *Fn = cast<Function>(GuardCheck);
2105     FunctionType *FnTy = Fn->getFunctionType();
2106     assert(FnTy->getNumParams() == 1 && "Invalid function signature");
2107 
2108     TargetLowering::ArgListTy Args;
2109     TargetLowering::ArgListEntry Entry;
2110     Entry.Node = StackSlot;
2111     Entry.Ty = FnTy->getParamType(0);
2112     if (Fn->hasAttribute(1, Attribute::AttrKind::InReg))
2113       Entry.IsInReg = true;
2114     Args.push_back(Entry);
2115 
2116     TargetLowering::CallLoweringInfo CLI(DAG);
2117     CLI.setDebugLoc(getCurSDLoc())
2118       .setChain(DAG.getEntryNode())
2119       .setCallee(Fn->getCallingConv(), FnTy->getReturnType(),
2120                  getValue(GuardCheck), std::move(Args));
2121 
2122     std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
2123     DAG.setRoot(Result.second);
2124     return;
2125   }
2126 
2127   // If useLoadStackGuardNode returns true, generate LOAD_STACK_GUARD.
2128   // Otherwise, emit a volatile load to retrieve the stack guard value.
2129   SDValue Chain = DAG.getEntryNode();
2130   if (TLI.useLoadStackGuardNode()) {
2131     Guard = getLoadStackGuard(DAG, dl, Chain);
2132   } else {
2133     const Value *IRGuard = TLI.getSDagStackGuard(M);
2134     SDValue GuardPtr = getValue(IRGuard);
2135 
2136     Guard =
2137         DAG.getLoad(PtrTy, dl, Chain, GuardPtr, MachinePointerInfo(IRGuard, 0),
2138                     Align, MachineMemOperand::MOVolatile);
2139   }
2140 
2141   // Perform the comparison via a subtract/getsetcc.
2142   EVT VT = Guard.getValueType();
2143   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, Guard, StackSlot);
2144 
2145   SDValue Cmp = DAG.getSetCC(dl, TLI.getSetCCResultType(DAG.getDataLayout(),
2146                                                         *DAG.getContext(),
2147                                                         Sub.getValueType()),
2148                              Sub, DAG.getConstant(0, dl, VT), ISD::SETNE);
2149 
2150   // If the sub is not 0, then we know the guard/stackslot do not equal, so
2151   // branch to failure MBB.
2152   SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
2153                                MVT::Other, StackSlot.getOperand(0),
2154                                Cmp, DAG.getBasicBlock(SPD.getFailureMBB()));
2155   // Otherwise branch to success MBB.
2156   SDValue Br = DAG.getNode(ISD::BR, dl,
2157                            MVT::Other, BrCond,
2158                            DAG.getBasicBlock(SPD.getSuccessMBB()));
2159 
2160   DAG.setRoot(Br);
2161 }
2162 
2163 /// Codegen the failure basic block for a stack protector check.
2164 ///
2165 /// A failure stack protector machine basic block consists simply of a call to
2166 /// __stack_chk_fail().
2167 ///
2168 /// For a high level explanation of how this fits into the stack protector
2169 /// generation see the comment on the declaration of class
2170 /// StackProtectorDescriptor.
2171 void
2172 SelectionDAGBuilder::visitSPDescriptorFailure(StackProtectorDescriptor &SPD) {
2173   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2174   SDValue Chain =
2175       TLI.makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid,
2176                       None, false, getCurSDLoc(), false, false).second;
2177   DAG.setRoot(Chain);
2178 }
2179 
2180 /// visitBitTestHeader - This function emits necessary code to produce value
2181 /// suitable for "bit tests"
2182 void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B,
2183                                              MachineBasicBlock *SwitchBB) {
2184   SDLoc dl = getCurSDLoc();
2185 
2186   // Subtract the minimum value
2187   SDValue SwitchOp = getValue(B.SValue);
2188   EVT VT = SwitchOp.getValueType();
2189   SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp,
2190                             DAG.getConstant(B.First, dl, VT));
2191 
2192   // Check range
2193   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2194   SDValue RangeCmp = DAG.getSetCC(
2195       dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
2196                                  Sub.getValueType()),
2197       Sub, DAG.getConstant(B.Range, dl, VT), ISD::SETUGT);
2198 
2199   // Determine the type of the test operands.
2200   bool UsePtrType = false;
2201   if (!TLI.isTypeLegal(VT))
2202     UsePtrType = true;
2203   else {
2204     for (unsigned i = 0, e = B.Cases.size(); i != e; ++i)
2205       if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) {
2206         // Switch table case range are encoded into series of masks.
2207         // Just use pointer type, it's guaranteed to fit.
2208         UsePtrType = true;
2209         break;
2210       }
2211   }
2212   if (UsePtrType) {
2213     VT = TLI.getPointerTy(DAG.getDataLayout());
2214     Sub = DAG.getZExtOrTrunc(Sub, dl, VT);
2215   }
2216 
2217   B.RegVT = VT.getSimpleVT();
2218   B.Reg = FuncInfo.CreateReg(B.RegVT);
2219   SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl, B.Reg, Sub);
2220 
2221   MachineBasicBlock* MBB = B.Cases[0].ThisBB;
2222 
2223   addSuccessorWithProb(SwitchBB, B.Default, B.DefaultProb);
2224   addSuccessorWithProb(SwitchBB, MBB, B.Prob);
2225   SwitchBB->normalizeSuccProbs();
2226 
2227   SDValue BrRange = DAG.getNode(ISD::BRCOND, dl,
2228                                 MVT::Other, CopyTo, RangeCmp,
2229                                 DAG.getBasicBlock(B.Default));
2230 
2231   // Avoid emitting unnecessary branches to the next block.
2232   if (MBB != NextBlock(SwitchBB))
2233     BrRange = DAG.getNode(ISD::BR, dl, MVT::Other, BrRange,
2234                           DAG.getBasicBlock(MBB));
2235 
2236   DAG.setRoot(BrRange);
2237 }
2238 
2239 /// visitBitTestCase - this function produces one "bit test"
2240 void SelectionDAGBuilder::visitBitTestCase(BitTestBlock &BB,
2241                                            MachineBasicBlock* NextMBB,
2242                                            BranchProbability BranchProbToNext,
2243                                            unsigned Reg,
2244                                            BitTestCase &B,
2245                                            MachineBasicBlock *SwitchBB) {
2246   SDLoc dl = getCurSDLoc();
2247   MVT VT = BB.RegVT;
2248   SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), dl, Reg, VT);
2249   SDValue Cmp;
2250   unsigned PopCount = countPopulation(B.Mask);
2251   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2252   if (PopCount == 1) {
2253     // Testing for a single bit; just compare the shift count with what it
2254     // would need to be to shift a 1 bit in that position.
2255     Cmp = DAG.getSetCC(
2256         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2257         ShiftOp, DAG.getConstant(countTrailingZeros(B.Mask), dl, VT),
2258         ISD::SETEQ);
2259   } else if (PopCount == BB.Range) {
2260     // There is only one zero bit in the range, test for it directly.
2261     Cmp = DAG.getSetCC(
2262         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2263         ShiftOp, DAG.getConstant(countTrailingOnes(B.Mask), dl, VT),
2264         ISD::SETNE);
2265   } else {
2266     // Make desired shift
2267     SDValue SwitchVal = DAG.getNode(ISD::SHL, dl, VT,
2268                                     DAG.getConstant(1, dl, VT), ShiftOp);
2269 
2270     // Emit bit tests and jumps
2271     SDValue AndOp = DAG.getNode(ISD::AND, dl,
2272                                 VT, SwitchVal, DAG.getConstant(B.Mask, dl, VT));
2273     Cmp = DAG.getSetCC(
2274         dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT),
2275         AndOp, DAG.getConstant(0, dl, VT), ISD::SETNE);
2276   }
2277 
2278   // The branch probability from SwitchBB to B.TargetBB is B.ExtraProb.
2279   addSuccessorWithProb(SwitchBB, B.TargetBB, B.ExtraProb);
2280   // The branch probability from SwitchBB to NextMBB is BranchProbToNext.
2281   addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext);
2282   // It is not guaranteed that the sum of B.ExtraProb and BranchProbToNext is
2283   // one as they are relative probabilities (and thus work more like weights),
2284   // and hence we need to normalize them to let the sum of them become one.
2285   SwitchBB->normalizeSuccProbs();
2286 
2287   SDValue BrAnd = DAG.getNode(ISD::BRCOND, dl,
2288                               MVT::Other, getControlRoot(),
2289                               Cmp, DAG.getBasicBlock(B.TargetBB));
2290 
2291   // Avoid emitting unnecessary branches to the next block.
2292   if (NextMBB != NextBlock(SwitchBB))
2293     BrAnd = DAG.getNode(ISD::BR, dl, MVT::Other, BrAnd,
2294                         DAG.getBasicBlock(NextMBB));
2295 
2296   DAG.setRoot(BrAnd);
2297 }
2298 
2299 void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) {
2300   MachineBasicBlock *InvokeMBB = FuncInfo.MBB;
2301 
2302   // Retrieve successors. Look through artificial IR level blocks like
2303   // catchswitch for successors.
2304   MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
2305   const BasicBlock *EHPadBB = I.getSuccessor(1);
2306 
2307   // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't
2308   // have to do anything here to lower funclet bundles.
2309   assert(!I.hasOperandBundlesOtherThan(
2310              {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) &&
2311          "Cannot lower invokes with arbitrary operand bundles yet!");
2312 
2313   const Value *Callee(I.getCalledValue());
2314   const Function *Fn = dyn_cast<Function>(Callee);
2315   if (isa<InlineAsm>(Callee))
2316     visitInlineAsm(&I);
2317   else if (Fn && Fn->isIntrinsic()) {
2318     switch (Fn->getIntrinsicID()) {
2319     default:
2320       llvm_unreachable("Cannot invoke this intrinsic");
2321     case Intrinsic::donothing:
2322       // Ignore invokes to @llvm.donothing: jump directly to the next BB.
2323       break;
2324     case Intrinsic::experimental_patchpoint_void:
2325     case Intrinsic::experimental_patchpoint_i64:
2326       visitPatchpoint(&I, EHPadBB);
2327       break;
2328     case Intrinsic::experimental_gc_statepoint:
2329       LowerStatepoint(ImmutableStatepoint(&I), EHPadBB);
2330       break;
2331     }
2332   } else if (I.countOperandBundlesOfType(LLVMContext::OB_deopt)) {
2333     // Currently we do not lower any intrinsic calls with deopt operand bundles.
2334     // Eventually we will support lowering the @llvm.experimental.deoptimize
2335     // intrinsic, and right now there are no plans to support other intrinsics
2336     // with deopt state.
2337     LowerCallSiteWithDeoptBundle(&I, getValue(Callee), EHPadBB);
2338   } else {
2339     LowerCallTo(&I, getValue(Callee), false, EHPadBB);
2340   }
2341 
2342   // If the value of the invoke is used outside of its defining block, make it
2343   // available as a virtual register.
2344   // We already took care of the exported value for the statepoint instruction
2345   // during call to the LowerStatepoint.
2346   if (!isStatepoint(I)) {
2347     CopyToExportRegsIfNeeded(&I);
2348   }
2349 
2350   SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests;
2351   BranchProbabilityInfo *BPI = FuncInfo.BPI;
2352   BranchProbability EHPadBBProb =
2353       BPI ? BPI->getEdgeProbability(InvokeMBB->getBasicBlock(), EHPadBB)
2354           : BranchProbability::getZero();
2355   findUnwindDestinations(FuncInfo, EHPadBB, EHPadBBProb, UnwindDests);
2356 
2357   // Update successor info.
2358   addSuccessorWithProb(InvokeMBB, Return);
2359   for (auto &UnwindDest : UnwindDests) {
2360     UnwindDest.first->setIsEHPad();
2361     addSuccessorWithProb(InvokeMBB, UnwindDest.first, UnwindDest.second);
2362   }
2363   InvokeMBB->normalizeSuccProbs();
2364 
2365   // Drop into normal successor.
2366   DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(),
2367                           MVT::Other, getControlRoot(),
2368                           DAG.getBasicBlock(Return)));
2369 }
2370 
2371 void SelectionDAGBuilder::visitResume(const ResumeInst &RI) {
2372   llvm_unreachable("SelectionDAGBuilder shouldn't visit resume instructions!");
2373 }
2374 
2375 void SelectionDAGBuilder::visitLandingPad(const LandingPadInst &LP) {
2376   assert(FuncInfo.MBB->isEHPad() &&
2377          "Call to landingpad not in landing pad!");
2378 
2379   MachineBasicBlock *MBB = FuncInfo.MBB;
2380   addLandingPadInfo(LP, *MBB);
2381 
2382   // If there aren't registers to copy the values into (e.g., during SjLj
2383   // exceptions), then don't bother to create these DAG nodes.
2384   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2385   const Constant *PersonalityFn = FuncInfo.Fn->getPersonalityFn();
2386   if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 &&
2387       TLI.getExceptionSelectorRegister(PersonalityFn) == 0)
2388     return;
2389 
2390   // If landingpad's return type is token type, we don't create DAG nodes
2391   // for its exception pointer and selector value. The extraction of exception
2392   // pointer or selector value from token type landingpads is not currently
2393   // supported.
2394   if (LP.getType()->isTokenTy())
2395     return;
2396 
2397   SmallVector<EVT, 2> ValueVTs;
2398   SDLoc dl = getCurSDLoc();
2399   ComputeValueVTs(TLI, DAG.getDataLayout(), LP.getType(), ValueVTs);
2400   assert(ValueVTs.size() == 2 && "Only two-valued landingpads are supported");
2401 
2402   // Get the two live-in registers as SDValues. The physregs have already been
2403   // copied into virtual registers.
2404   SDValue Ops[2];
2405   if (FuncInfo.ExceptionPointerVirtReg) {
2406     Ops[0] = DAG.getZExtOrTrunc(
2407         DAG.getCopyFromReg(DAG.getEntryNode(), dl,
2408                            FuncInfo.ExceptionPointerVirtReg,
2409                            TLI.getPointerTy(DAG.getDataLayout())),
2410         dl, ValueVTs[0]);
2411   } else {
2412     Ops[0] = DAG.getConstant(0, dl, TLI.getPointerTy(DAG.getDataLayout()));
2413   }
2414   Ops[1] = DAG.getZExtOrTrunc(
2415       DAG.getCopyFromReg(DAG.getEntryNode(), dl,
2416                          FuncInfo.ExceptionSelectorVirtReg,
2417                          TLI.getPointerTy(DAG.getDataLayout())),
2418       dl, ValueVTs[1]);
2419 
2420   // Merge into one.
2421   SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
2422                             DAG.getVTList(ValueVTs), Ops);
2423   setValue(&LP, Res);
2424 }
2425 
2426 void SelectionDAGBuilder::sortAndRangeify(CaseClusterVector &Clusters) {
2427 #ifndef NDEBUG
2428   for (const CaseCluster &CC : Clusters)
2429     assert(CC.Low == CC.High && "Input clusters must be single-case");
2430 #endif
2431 
2432   std::sort(Clusters.begin(), Clusters.end(),
2433             [](const CaseCluster &a, const CaseCluster &b) {
2434     return a.Low->getValue().slt(b.Low->getValue());
2435   });
2436 
2437   // Merge adjacent clusters with the same destination.
2438   const unsigned N = Clusters.size();
2439   unsigned DstIndex = 0;
2440   for (unsigned SrcIndex = 0; SrcIndex < N; ++SrcIndex) {
2441     CaseCluster &CC = Clusters[SrcIndex];
2442     const ConstantInt *CaseVal = CC.Low;
2443     MachineBasicBlock *Succ = CC.MBB;
2444 
2445     if (DstIndex != 0 && Clusters[DstIndex - 1].MBB == Succ &&
2446         (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) {
2447       // If this case has the same successor and is a neighbour, merge it into
2448       // the previous cluster.
2449       Clusters[DstIndex - 1].High = CaseVal;
2450       Clusters[DstIndex - 1].Prob += CC.Prob;
2451     } else {
2452       std::memmove(&Clusters[DstIndex++], &Clusters[SrcIndex],
2453                    sizeof(Clusters[SrcIndex]));
2454     }
2455   }
2456   Clusters.resize(DstIndex);
2457 }
2458 
2459 void SelectionDAGBuilder::UpdateSplitBlock(MachineBasicBlock *First,
2460                                            MachineBasicBlock *Last) {
2461   // Update JTCases.
2462   for (unsigned i = 0, e = JTCases.size(); i != e; ++i)
2463     if (JTCases[i].first.HeaderBB == First)
2464       JTCases[i].first.HeaderBB = Last;
2465 
2466   // Update BitTestCases.
2467   for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i)
2468     if (BitTestCases[i].Parent == First)
2469       BitTestCases[i].Parent = Last;
2470 }
2471 
2472 void SelectionDAGBuilder::visitIndirectBr(const IndirectBrInst &I) {
2473   MachineBasicBlock *IndirectBrMBB = FuncInfo.MBB;
2474 
2475   // Update machine-CFG edges with unique successors.
2476   SmallSet<BasicBlock*, 32> Done;
2477   for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i) {
2478     BasicBlock *BB = I.getSuccessor(i);
2479     bool Inserted = Done.insert(BB).second;
2480     if (!Inserted)
2481         continue;
2482 
2483     MachineBasicBlock *Succ = FuncInfo.MBBMap[BB];
2484     addSuccessorWithProb(IndirectBrMBB, Succ);
2485   }
2486   IndirectBrMBB->normalizeSuccProbs();
2487 
2488   DAG.setRoot(DAG.getNode(ISD::BRIND, getCurSDLoc(),
2489                           MVT::Other, getControlRoot(),
2490                           getValue(I.getAddress())));
2491 }
2492 
2493 void SelectionDAGBuilder::visitUnreachable(const UnreachableInst &I) {
2494   if (DAG.getTarget().Options.TrapUnreachable)
2495     DAG.setRoot(
2496         DAG.getNode(ISD::TRAP, getCurSDLoc(), MVT::Other, DAG.getRoot()));
2497 }
2498 
2499 void SelectionDAGBuilder::visitFSub(const User &I) {
2500   // -0.0 - X --> fneg
2501   Type *Ty = I.getType();
2502   if (isa<Constant>(I.getOperand(0)) &&
2503       I.getOperand(0) == ConstantFP::getZeroValueForNegation(Ty)) {
2504     SDValue Op2 = getValue(I.getOperand(1));
2505     setValue(&I, DAG.getNode(ISD::FNEG, getCurSDLoc(),
2506                              Op2.getValueType(), Op2));
2507     return;
2508   }
2509 
2510   visitBinary(I, ISD::FSUB);
2511 }
2512 
2513 /// Checks if the given instruction performs a vector reduction, in which case
2514 /// we have the freedom to alter the elements in the result as long as the
2515 /// reduction of them stays unchanged.
2516 static bool isVectorReductionOp(const User *I) {
2517   const Instruction *Inst = dyn_cast<Instruction>(I);
2518   if (!Inst || !Inst->getType()->isVectorTy())
2519     return false;
2520 
2521   auto OpCode = Inst->getOpcode();
2522   switch (OpCode) {
2523   case Instruction::Add:
2524   case Instruction::Mul:
2525   case Instruction::And:
2526   case Instruction::Or:
2527   case Instruction::Xor:
2528     break;
2529   case Instruction::FAdd:
2530   case Instruction::FMul:
2531     if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst))
2532       if (FPOp->getFastMathFlags().unsafeAlgebra())
2533         break;
2534     LLVM_FALLTHROUGH;
2535   default:
2536     return false;
2537   }
2538 
2539   unsigned ElemNum = Inst->getType()->getVectorNumElements();
2540   unsigned ElemNumToReduce = ElemNum;
2541 
2542   // Do DFS search on the def-use chain from the given instruction. We only
2543   // allow four kinds of operations during the search until we reach the
2544   // instruction that extracts the first element from the vector:
2545   //
2546   //   1. The reduction operation of the same opcode as the given instruction.
2547   //
2548   //   2. PHI node.
2549   //
2550   //   3. ShuffleVector instruction together with a reduction operation that
2551   //      does a partial reduction.
2552   //
2553   //   4. ExtractElement that extracts the first element from the vector, and we
2554   //      stop searching the def-use chain here.
2555   //
2556   // 3 & 4 above perform a reduction on all elements of the vector. We push defs
2557   // from 1-3 to the stack to continue the DFS. The given instruction is not
2558   // a reduction operation if we meet any other instructions other than those
2559   // listed above.
2560 
2561   SmallVector<const User *, 16> UsersToVisit{Inst};
2562   SmallPtrSet<const User *, 16> Visited;
2563   bool ReduxExtracted = false;
2564 
2565   while (!UsersToVisit.empty()) {
2566     auto User = UsersToVisit.back();
2567     UsersToVisit.pop_back();
2568     if (!Visited.insert(User).second)
2569       continue;
2570 
2571     for (const auto &U : User->users()) {
2572       auto Inst = dyn_cast<Instruction>(U);
2573       if (!Inst)
2574         return false;
2575 
2576       if (Inst->getOpcode() == OpCode || isa<PHINode>(U)) {
2577         if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst))
2578           if (!isa<PHINode>(FPOp) && !FPOp->getFastMathFlags().unsafeAlgebra())
2579             return false;
2580         UsersToVisit.push_back(U);
2581       } else if (const ShuffleVectorInst *ShufInst =
2582                      dyn_cast<ShuffleVectorInst>(U)) {
2583         // Detect the following pattern: A ShuffleVector instruction together
2584         // with a reduction that do partial reduction on the first and second
2585         // ElemNumToReduce / 2 elements, and store the result in
2586         // ElemNumToReduce / 2 elements in another vector.
2587 
2588         unsigned ResultElements = ShufInst->getType()->getVectorNumElements();
2589         if (ResultElements < ElemNum)
2590           return false;
2591 
2592         if (ElemNumToReduce == 1)
2593           return false;
2594         if (!isa<UndefValue>(U->getOperand(1)))
2595           return false;
2596         for (unsigned i = 0; i < ElemNumToReduce / 2; ++i)
2597           if (ShufInst->getMaskValue(i) != int(i + ElemNumToReduce / 2))
2598             return false;
2599         for (unsigned i = ElemNumToReduce / 2; i < ElemNum; ++i)
2600           if (ShufInst->getMaskValue(i) != -1)
2601             return false;
2602 
2603         // There is only one user of this ShuffleVector instruction, which
2604         // must be a reduction operation.
2605         if (!U->hasOneUse())
2606           return false;
2607 
2608         auto U2 = dyn_cast<Instruction>(*U->user_begin());
2609         if (!U2 || U2->getOpcode() != OpCode)
2610           return false;
2611 
2612         // Check operands of the reduction operation.
2613         if ((U2->getOperand(0) == U->getOperand(0) && U2->getOperand(1) == U) ||
2614             (U2->getOperand(1) == U->getOperand(0) && U2->getOperand(0) == U)) {
2615           UsersToVisit.push_back(U2);
2616           ElemNumToReduce /= 2;
2617         } else
2618           return false;
2619       } else if (isa<ExtractElementInst>(U)) {
2620         // At this moment we should have reduced all elements in the vector.
2621         if (ElemNumToReduce != 1)
2622           return false;
2623 
2624         const ConstantInt *Val = dyn_cast<ConstantInt>(U->getOperand(1));
2625         if (!Val || Val->getZExtValue() != 0)
2626           return false;
2627 
2628         ReduxExtracted = true;
2629       } else
2630         return false;
2631     }
2632   }
2633   return ReduxExtracted;
2634 }
2635 
2636 void SelectionDAGBuilder::visitBinary(const User &I, unsigned OpCode) {
2637   SDValue Op1 = getValue(I.getOperand(0));
2638   SDValue Op2 = getValue(I.getOperand(1));
2639 
2640   bool nuw = false;
2641   bool nsw = false;
2642   bool exact = false;
2643   bool vec_redux = false;
2644   FastMathFlags FMF;
2645 
2646   if (const OverflowingBinaryOperator *OFBinOp =
2647           dyn_cast<const OverflowingBinaryOperator>(&I)) {
2648     nuw = OFBinOp->hasNoUnsignedWrap();
2649     nsw = OFBinOp->hasNoSignedWrap();
2650   }
2651   if (const PossiblyExactOperator *ExactOp =
2652           dyn_cast<const PossiblyExactOperator>(&I))
2653     exact = ExactOp->isExact();
2654   if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(&I))
2655     FMF = FPOp->getFastMathFlags();
2656 
2657   if (isVectorReductionOp(&I)) {
2658     vec_redux = true;
2659     DEBUG(dbgs() << "Detected a reduction operation:" << I << "\n");
2660   }
2661 
2662   SDNodeFlags Flags;
2663   Flags.setExact(exact);
2664   Flags.setNoSignedWrap(nsw);
2665   Flags.setNoUnsignedWrap(nuw);
2666   Flags.setVectorReduction(vec_redux);
2667   Flags.setAllowReciprocal(FMF.allowReciprocal());
2668   Flags.setAllowContract(FMF.allowContract());
2669   Flags.setNoInfs(FMF.noInfs());
2670   Flags.setNoNaNs(FMF.noNaNs());
2671   Flags.setNoSignedZeros(FMF.noSignedZeros());
2672   Flags.setUnsafeAlgebra(FMF.unsafeAlgebra());
2673 
2674   SDValue BinNodeValue = DAG.getNode(OpCode, getCurSDLoc(), Op1.getValueType(),
2675                                      Op1, Op2, Flags);
2676   setValue(&I, BinNodeValue);
2677 }
2678 
2679 void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) {
2680   SDValue Op1 = getValue(I.getOperand(0));
2681   SDValue Op2 = getValue(I.getOperand(1));
2682 
2683   EVT ShiftTy = DAG.getTargetLoweringInfo().getShiftAmountTy(
2684       Op2.getValueType(), DAG.getDataLayout());
2685 
2686   // Coerce the shift amount to the right type if we can.
2687   if (!I.getType()->isVectorTy() && Op2.getValueType() != ShiftTy) {
2688     unsigned ShiftSize = ShiftTy.getSizeInBits();
2689     unsigned Op2Size = Op2.getValueSizeInBits();
2690     SDLoc DL = getCurSDLoc();
2691 
2692     // If the operand is smaller than the shift count type, promote it.
2693     if (ShiftSize > Op2Size)
2694       Op2 = DAG.getNode(ISD::ZERO_EXTEND, DL, ShiftTy, Op2);
2695 
2696     // If the operand is larger than the shift count type but the shift
2697     // count type has enough bits to represent any shift value, truncate
2698     // it now. This is a common case and it exposes the truncate to
2699     // optimization early.
2700     else if (ShiftSize >= Log2_32_Ceil(Op2.getValueSizeInBits()))
2701       Op2 = DAG.getNode(ISD::TRUNCATE, DL, ShiftTy, Op2);
2702     // Otherwise we'll need to temporarily settle for some other convenient
2703     // type.  Type legalization will make adjustments once the shiftee is split.
2704     else
2705       Op2 = DAG.getZExtOrTrunc(Op2, DL, MVT::i32);
2706   }
2707 
2708   bool nuw = false;
2709   bool nsw = false;
2710   bool exact = false;
2711 
2712   if (Opcode == ISD::SRL || Opcode == ISD::SRA || Opcode == ISD::SHL) {
2713 
2714     if (const OverflowingBinaryOperator *OFBinOp =
2715             dyn_cast<const OverflowingBinaryOperator>(&I)) {
2716       nuw = OFBinOp->hasNoUnsignedWrap();
2717       nsw = OFBinOp->hasNoSignedWrap();
2718     }
2719     if (const PossiblyExactOperator *ExactOp =
2720             dyn_cast<const PossiblyExactOperator>(&I))
2721       exact = ExactOp->isExact();
2722   }
2723   SDNodeFlags Flags;
2724   Flags.setExact(exact);
2725   Flags.setNoSignedWrap(nsw);
2726   Flags.setNoUnsignedWrap(nuw);
2727   SDValue Res = DAG.getNode(Opcode, getCurSDLoc(), Op1.getValueType(), Op1, Op2,
2728                             Flags);
2729   setValue(&I, Res);
2730 }
2731 
2732 void SelectionDAGBuilder::visitSDiv(const User &I) {
2733   SDValue Op1 = getValue(I.getOperand(0));
2734   SDValue Op2 = getValue(I.getOperand(1));
2735 
2736   SDNodeFlags Flags;
2737   Flags.setExact(isa<PossiblyExactOperator>(&I) &&
2738                  cast<PossiblyExactOperator>(&I)->isExact());
2739   setValue(&I, DAG.getNode(ISD::SDIV, getCurSDLoc(), Op1.getValueType(), Op1,
2740                            Op2, Flags));
2741 }
2742 
2743 void SelectionDAGBuilder::visitICmp(const User &I) {
2744   ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2745   if (const ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2746     predicate = IC->getPredicate();
2747   else if (const ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2748     predicate = ICmpInst::Predicate(IC->getPredicate());
2749   SDValue Op1 = getValue(I.getOperand(0));
2750   SDValue Op2 = getValue(I.getOperand(1));
2751   ISD::CondCode Opcode = getICmpCondCode(predicate);
2752 
2753   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2754                                                         I.getType());
2755   setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Opcode));
2756 }
2757 
2758 void SelectionDAGBuilder::visitFCmp(const User &I) {
2759   FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2760   if (const FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2761     predicate = FC->getPredicate();
2762   else if (const ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2763     predicate = FCmpInst::Predicate(FC->getPredicate());
2764   SDValue Op1 = getValue(I.getOperand(0));
2765   SDValue Op2 = getValue(I.getOperand(1));
2766   ISD::CondCode Condition = getFCmpCondCode(predicate);
2767 
2768   // FIXME: Fcmp instructions have fast-math-flags in IR, so we should use them.
2769   // FIXME: We should propagate the fast-math-flags to the DAG node itself for
2770   // further optimization, but currently FMF is only applicable to binary nodes.
2771   if (TM.Options.NoNaNsFPMath)
2772     Condition = getFCmpCodeWithoutNaN(Condition);
2773   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2774                                                         I.getType());
2775   setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Condition));
2776 }
2777 
2778 // Check if the condition of the select has one use or two users that are both
2779 // selects with the same condition.
2780 static bool hasOnlySelectUsers(const Value *Cond) {
2781   return all_of(Cond->users(), [](const Value *V) {
2782     return isa<SelectInst>(V);
2783   });
2784 }
2785 
2786 void SelectionDAGBuilder::visitSelect(const User &I) {
2787   SmallVector<EVT, 4> ValueVTs;
2788   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), I.getType(),
2789                   ValueVTs);
2790   unsigned NumValues = ValueVTs.size();
2791   if (NumValues == 0) return;
2792 
2793   SmallVector<SDValue, 4> Values(NumValues);
2794   SDValue Cond     = getValue(I.getOperand(0));
2795   SDValue LHSVal   = getValue(I.getOperand(1));
2796   SDValue RHSVal   = getValue(I.getOperand(2));
2797   auto BaseOps = {Cond};
2798   ISD::NodeType OpCode = Cond.getValueType().isVector() ?
2799     ISD::VSELECT : ISD::SELECT;
2800 
2801   // Min/max matching is only viable if all output VTs are the same.
2802   if (std::equal(ValueVTs.begin(), ValueVTs.end(), ValueVTs.begin())) {
2803     EVT VT = ValueVTs[0];
2804     LLVMContext &Ctx = *DAG.getContext();
2805     auto &TLI = DAG.getTargetLoweringInfo();
2806 
2807     // We care about the legality of the operation after it has been type
2808     // legalized.
2809     while (TLI.getTypeAction(Ctx, VT) != TargetLoweringBase::TypeLegal &&
2810            VT != TLI.getTypeToTransformTo(Ctx, VT))
2811       VT = TLI.getTypeToTransformTo(Ctx, VT);
2812 
2813     // If the vselect is legal, assume we want to leave this as a vector setcc +
2814     // vselect. Otherwise, if this is going to be scalarized, we want to see if
2815     // min/max is legal on the scalar type.
2816     bool UseScalarMinMax = VT.isVector() &&
2817       !TLI.isOperationLegalOrCustom(ISD::VSELECT, VT);
2818 
2819     Value *LHS, *RHS;
2820     auto SPR = matchSelectPattern(const_cast<User*>(&I), LHS, RHS);
2821     ISD::NodeType Opc = ISD::DELETED_NODE;
2822     switch (SPR.Flavor) {
2823     case SPF_UMAX:    Opc = ISD::UMAX; break;
2824     case SPF_UMIN:    Opc = ISD::UMIN; break;
2825     case SPF_SMAX:    Opc = ISD::SMAX; break;
2826     case SPF_SMIN:    Opc = ISD::SMIN; break;
2827     case SPF_FMINNUM:
2828       switch (SPR.NaNBehavior) {
2829       case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?");
2830       case SPNB_RETURNS_NAN:   Opc = ISD::FMINNAN; break;
2831       case SPNB_RETURNS_OTHER: Opc = ISD::FMINNUM; break;
2832       case SPNB_RETURNS_ANY: {
2833         if (TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT))
2834           Opc = ISD::FMINNUM;
2835         else if (TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT))
2836           Opc = ISD::FMINNAN;
2837         else if (UseScalarMinMax)
2838           Opc = TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT.getScalarType()) ?
2839             ISD::FMINNUM : ISD::FMINNAN;
2840         break;
2841       }
2842       }
2843       break;
2844     case SPF_FMAXNUM:
2845       switch (SPR.NaNBehavior) {
2846       case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?");
2847       case SPNB_RETURNS_NAN:   Opc = ISD::FMAXNAN; break;
2848       case SPNB_RETURNS_OTHER: Opc = ISD::FMAXNUM; break;
2849       case SPNB_RETURNS_ANY:
2850 
2851         if (TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT))
2852           Opc = ISD::FMAXNUM;
2853         else if (TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT))
2854           Opc = ISD::FMAXNAN;
2855         else if (UseScalarMinMax)
2856           Opc = TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT.getScalarType()) ?
2857             ISD::FMAXNUM : ISD::FMAXNAN;
2858         break;
2859       }
2860       break;
2861     default: break;
2862     }
2863 
2864     if (Opc != ISD::DELETED_NODE &&
2865         (TLI.isOperationLegalOrCustom(Opc, VT) ||
2866          (UseScalarMinMax &&
2867           TLI.isOperationLegalOrCustom(Opc, VT.getScalarType()))) &&
2868         // If the underlying comparison instruction is used by any other
2869         // instruction, the consumed instructions won't be destroyed, so it is
2870         // not profitable to convert to a min/max.
2871         hasOnlySelectUsers(cast<SelectInst>(I).getCondition())) {
2872       OpCode = Opc;
2873       LHSVal = getValue(LHS);
2874       RHSVal = getValue(RHS);
2875       BaseOps = {};
2876     }
2877   }
2878 
2879   for (unsigned i = 0; i != NumValues; ++i) {
2880     SmallVector<SDValue, 3> Ops(BaseOps.begin(), BaseOps.end());
2881     Ops.push_back(SDValue(LHSVal.getNode(), LHSVal.getResNo() + i));
2882     Ops.push_back(SDValue(RHSVal.getNode(), RHSVal.getResNo() + i));
2883     Values[i] = DAG.getNode(OpCode, getCurSDLoc(),
2884                             LHSVal.getNode()->getValueType(LHSVal.getResNo()+i),
2885                             Ops);
2886   }
2887 
2888   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
2889                            DAG.getVTList(ValueVTs), Values));
2890 }
2891 
2892 void SelectionDAGBuilder::visitTrunc(const User &I) {
2893   // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2894   SDValue N = getValue(I.getOperand(0));
2895   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2896                                                         I.getType());
2897   setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), DestVT, N));
2898 }
2899 
2900 void SelectionDAGBuilder::visitZExt(const User &I) {
2901   // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2902   // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2903   SDValue N = getValue(I.getOperand(0));
2904   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2905                                                         I.getType());
2906   setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurSDLoc(), DestVT, N));
2907 }
2908 
2909 void SelectionDAGBuilder::visitSExt(const User &I) {
2910   // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2911   // SExt also can't be a cast to bool for same reason. So, nothing much to do
2912   SDValue N = getValue(I.getOperand(0));
2913   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2914                                                         I.getType());
2915   setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurSDLoc(), DestVT, N));
2916 }
2917 
2918 void SelectionDAGBuilder::visitFPTrunc(const User &I) {
2919   // FPTrunc is never a no-op cast, no need to check
2920   SDValue N = getValue(I.getOperand(0));
2921   SDLoc dl = getCurSDLoc();
2922   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2923   EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
2924   setValue(&I, DAG.getNode(ISD::FP_ROUND, dl, DestVT, N,
2925                            DAG.getTargetConstant(
2926                                0, dl, TLI.getPointerTy(DAG.getDataLayout()))));
2927 }
2928 
2929 void SelectionDAGBuilder::visitFPExt(const User &I) {
2930   // FPExt is never a no-op cast, no need to check
2931   SDValue N = getValue(I.getOperand(0));
2932   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2933                                                         I.getType());
2934   setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurSDLoc(), DestVT, N));
2935 }
2936 
2937 void SelectionDAGBuilder::visitFPToUI(const User &I) {
2938   // FPToUI is never a no-op cast, no need to check
2939   SDValue N = getValue(I.getOperand(0));
2940   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2941                                                         I.getType());
2942   setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurSDLoc(), DestVT, N));
2943 }
2944 
2945 void SelectionDAGBuilder::visitFPToSI(const User &I) {
2946   // FPToSI is never a no-op cast, no need to check
2947   SDValue N = getValue(I.getOperand(0));
2948   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2949                                                         I.getType());
2950   setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurSDLoc(), DestVT, N));
2951 }
2952 
2953 void SelectionDAGBuilder::visitUIToFP(const User &I) {
2954   // UIToFP is never a no-op cast, no need to check
2955   SDValue N = getValue(I.getOperand(0));
2956   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2957                                                         I.getType());
2958   setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurSDLoc(), DestVT, N));
2959 }
2960 
2961 void SelectionDAGBuilder::visitSIToFP(const User &I) {
2962   // SIToFP is never a no-op cast, no need to check
2963   SDValue N = getValue(I.getOperand(0));
2964   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2965                                                         I.getType());
2966   setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurSDLoc(), DestVT, N));
2967 }
2968 
2969 void SelectionDAGBuilder::visitPtrToInt(const User &I) {
2970   // What to do depends on the size of the integer and the size of the pointer.
2971   // We can either truncate, zero extend, or no-op, accordingly.
2972   SDValue N = getValue(I.getOperand(0));
2973   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2974                                                         I.getType());
2975   setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
2976 }
2977 
2978 void SelectionDAGBuilder::visitIntToPtr(const User &I) {
2979   // What to do depends on the size of the integer and the size of the pointer.
2980   // We can either truncate, zero extend, or no-op, accordingly.
2981   SDValue N = getValue(I.getOperand(0));
2982   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2983                                                         I.getType());
2984   setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT));
2985 }
2986 
2987 void SelectionDAGBuilder::visitBitCast(const User &I) {
2988   SDValue N = getValue(I.getOperand(0));
2989   SDLoc dl = getCurSDLoc();
2990   EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
2991                                                         I.getType());
2992 
2993   // BitCast assures us that source and destination are the same size so this is
2994   // either a BITCAST or a no-op.
2995   if (DestVT != N.getValueType())
2996     setValue(&I, DAG.getNode(ISD::BITCAST, dl,
2997                              DestVT, N)); // convert types.
2998   // Check if the original LLVM IR Operand was a ConstantInt, because getValue()
2999   // might fold any kind of constant expression to an integer constant and that
3000   // is not what we are looking for. Only recognize a bitcast of a genuine
3001   // constant integer as an opaque constant.
3002   else if(ConstantInt *C = dyn_cast<ConstantInt>(I.getOperand(0)))
3003     setValue(&I, DAG.getConstant(C->getValue(), dl, DestVT, /*isTarget=*/false,
3004                                  /*isOpaque*/true));
3005   else
3006     setValue(&I, N);            // noop cast.
3007 }
3008 
3009 void SelectionDAGBuilder::visitAddrSpaceCast(const User &I) {
3010   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3011   const Value *SV = I.getOperand(0);
3012   SDValue N = getValue(SV);
3013   EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3014 
3015   unsigned SrcAS = SV->getType()->getPointerAddressSpace();
3016   unsigned DestAS = I.getType()->getPointerAddressSpace();
3017 
3018   if (!TLI.isNoopAddrSpaceCast(SrcAS, DestAS))
3019     N = DAG.getAddrSpaceCast(getCurSDLoc(), DestVT, N, SrcAS, DestAS);
3020 
3021   setValue(&I, N);
3022 }
3023 
3024 void SelectionDAGBuilder::visitInsertElement(const User &I) {
3025   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3026   SDValue InVec = getValue(I.getOperand(0));
3027   SDValue InVal = getValue(I.getOperand(1));
3028   SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(2)), getCurSDLoc(),
3029                                      TLI.getVectorIdxTy(DAG.getDataLayout()));
3030   setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurSDLoc(),
3031                            TLI.getValueType(DAG.getDataLayout(), I.getType()),
3032                            InVec, InVal, InIdx));
3033 }
3034 
3035 void SelectionDAGBuilder::visitExtractElement(const User &I) {
3036   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3037   SDValue InVec = getValue(I.getOperand(0));
3038   SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), getCurSDLoc(),
3039                                      TLI.getVectorIdxTy(DAG.getDataLayout()));
3040   setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurSDLoc(),
3041                            TLI.getValueType(DAG.getDataLayout(), I.getType()),
3042                            InVec, InIdx));
3043 }
3044 
3045 void SelectionDAGBuilder::visitShuffleVector(const User &I) {
3046   SDValue Src1 = getValue(I.getOperand(0));
3047   SDValue Src2 = getValue(I.getOperand(1));
3048   SDLoc DL = getCurSDLoc();
3049 
3050   SmallVector<int, 8> Mask;
3051   ShuffleVectorInst::getShuffleMask(cast<Constant>(I.getOperand(2)), Mask);
3052   unsigned MaskNumElts = Mask.size();
3053 
3054   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3055   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3056   EVT SrcVT = Src1.getValueType();
3057   unsigned SrcNumElts = SrcVT.getVectorNumElements();
3058 
3059   if (SrcNumElts == MaskNumElts) {
3060     setValue(&I, DAG.getVectorShuffle(VT, DL, Src1, Src2, Mask));
3061     return;
3062   }
3063 
3064   // Normalize the shuffle vector since mask and vector length don't match.
3065   if (SrcNumElts < MaskNumElts) {
3066     // Mask is longer than the source vectors. We can use concatenate vector to
3067     // make the mask and vectors lengths match.
3068 
3069     if (MaskNumElts % SrcNumElts == 0) {
3070       // Mask length is a multiple of the source vector length.
3071       // Check if the shuffle is some kind of concatenation of the input
3072       // vectors.
3073       unsigned NumConcat = MaskNumElts / SrcNumElts;
3074       bool IsConcat = true;
3075       SmallVector<int, 8> ConcatSrcs(NumConcat, -1);
3076       for (unsigned i = 0; i != MaskNumElts; ++i) {
3077         int Idx = Mask[i];
3078         if (Idx < 0)
3079           continue;
3080         // Ensure the indices in each SrcVT sized piece are sequential and that
3081         // the same source is used for the whole piece.
3082         if ((Idx % SrcNumElts != (i % SrcNumElts)) ||
3083             (ConcatSrcs[i / SrcNumElts] >= 0 &&
3084              ConcatSrcs[i / SrcNumElts] != (int)(Idx / SrcNumElts))) {
3085           IsConcat = false;
3086           break;
3087         }
3088         // Remember which source this index came from.
3089         ConcatSrcs[i / SrcNumElts] = Idx / SrcNumElts;
3090       }
3091 
3092       // The shuffle is concatenating multiple vectors together. Just emit
3093       // a CONCAT_VECTORS operation.
3094       if (IsConcat) {
3095         SmallVector<SDValue, 8> ConcatOps;
3096         for (auto Src : ConcatSrcs) {
3097           if (Src < 0)
3098             ConcatOps.push_back(DAG.getUNDEF(SrcVT));
3099           else if (Src == 0)
3100             ConcatOps.push_back(Src1);
3101           else
3102             ConcatOps.push_back(Src2);
3103         }
3104         setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, ConcatOps));
3105         return;
3106       }
3107     }
3108 
3109     unsigned PaddedMaskNumElts = alignTo(MaskNumElts, SrcNumElts);
3110     unsigned NumConcat = PaddedMaskNumElts / SrcNumElts;
3111     EVT PaddedVT = EVT::getVectorVT(*DAG.getContext(), VT.getScalarType(),
3112                                     PaddedMaskNumElts);
3113 
3114     // Pad both vectors with undefs to make them the same length as the mask.
3115     SDValue UndefVal = DAG.getUNDEF(SrcVT);
3116 
3117     SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
3118     SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
3119     MOps1[0] = Src1;
3120     MOps2[0] = Src2;
3121 
3122     Src1 = Src1.isUndef()
3123                ? DAG.getUNDEF(PaddedVT)
3124                : DAG.getNode(ISD::CONCAT_VECTORS, DL, PaddedVT, MOps1);
3125     Src2 = Src2.isUndef()
3126                ? DAG.getUNDEF(PaddedVT)
3127                : DAG.getNode(ISD::CONCAT_VECTORS, DL, PaddedVT, MOps2);
3128 
3129     // Readjust mask for new input vector length.
3130     SmallVector<int, 8> MappedOps(PaddedMaskNumElts, -1);
3131     for (unsigned i = 0; i != MaskNumElts; ++i) {
3132       int Idx = Mask[i];
3133       if (Idx >= (int)SrcNumElts)
3134         Idx -= SrcNumElts - PaddedMaskNumElts;
3135       MappedOps[i] = Idx;
3136     }
3137 
3138     SDValue Result = DAG.getVectorShuffle(PaddedVT, DL, Src1, Src2, MappedOps);
3139 
3140     // If the concatenated vector was padded, extract a subvector with the
3141     // correct number of elements.
3142     if (MaskNumElts != PaddedMaskNumElts)
3143       Result = DAG.getNode(
3144           ISD::EXTRACT_SUBVECTOR, DL, VT, Result,
3145           DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout())));
3146 
3147     setValue(&I, Result);
3148     return;
3149   }
3150 
3151   if (SrcNumElts > MaskNumElts) {
3152     // Analyze the access pattern of the vector to see if we can extract
3153     // two subvectors and do the shuffle.
3154     int StartIdx[2] = { -1, -1 };  // StartIdx to extract from
3155     bool CanExtract = true;
3156     for (int Idx : Mask) {
3157       unsigned Input = 0;
3158       if (Idx < 0)
3159         continue;
3160 
3161       if (Idx >= (int)SrcNumElts) {
3162         Input = 1;
3163         Idx -= SrcNumElts;
3164       }
3165 
3166       // If all the indices come from the same MaskNumElts sized portion of
3167       // the sources we can use extract. Also make sure the extract wouldn't
3168       // extract past the end of the source.
3169       int NewStartIdx = alignDown(Idx, MaskNumElts);
3170       if (NewStartIdx + MaskNumElts > SrcNumElts ||
3171           (StartIdx[Input] >= 0 && StartIdx[Input] != NewStartIdx))
3172         CanExtract = false;
3173       // Make sure we always update StartIdx as we use it to track if all
3174       // elements are undef.
3175       StartIdx[Input] = NewStartIdx;
3176     }
3177 
3178     if (StartIdx[0] < 0 && StartIdx[1] < 0) {
3179       setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
3180       return;
3181     }
3182     if (CanExtract) {
3183       // Extract appropriate subvector and generate a vector shuffle
3184       for (unsigned Input = 0; Input < 2; ++Input) {
3185         SDValue &Src = Input == 0 ? Src1 : Src2;
3186         if (StartIdx[Input] < 0)
3187           Src = DAG.getUNDEF(VT);
3188         else {
3189           Src = DAG.getNode(
3190               ISD::EXTRACT_SUBVECTOR, DL, VT, Src,
3191               DAG.getConstant(StartIdx[Input], DL,
3192                               TLI.getVectorIdxTy(DAG.getDataLayout())));
3193         }
3194       }
3195 
3196       // Calculate new mask.
3197       SmallVector<int, 8> MappedOps(Mask.begin(), Mask.end());
3198       for (int &Idx : MappedOps) {
3199         if (Idx >= (int)SrcNumElts)
3200           Idx -= SrcNumElts + StartIdx[1] - MaskNumElts;
3201         else if (Idx >= 0)
3202           Idx -= StartIdx[0];
3203       }
3204 
3205       setValue(&I, DAG.getVectorShuffle(VT, DL, Src1, Src2, MappedOps));
3206       return;
3207     }
3208   }
3209 
3210   // We can't use either concat vectors or extract subvectors so fall back to
3211   // replacing the shuffle with extract and build vector.
3212   // to insert and build vector.
3213   EVT EltVT = VT.getVectorElementType();
3214   EVT IdxVT = TLI.getVectorIdxTy(DAG.getDataLayout());
3215   SmallVector<SDValue,8> Ops;
3216   for (int Idx : Mask) {
3217     SDValue Res;
3218 
3219     if (Idx < 0) {
3220       Res = DAG.getUNDEF(EltVT);
3221     } else {
3222       SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2;
3223       if (Idx >= (int)SrcNumElts) Idx -= SrcNumElts;
3224 
3225       Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
3226                         EltVT, Src, DAG.getConstant(Idx, DL, IdxVT));
3227     }
3228 
3229     Ops.push_back(Res);
3230   }
3231 
3232   setValue(&I, DAG.getBuildVector(VT, DL, Ops));
3233 }
3234 
3235 void SelectionDAGBuilder::visitInsertValue(const User &I) {
3236   ArrayRef<unsigned> Indices;
3237   if (const InsertValueInst *IV = dyn_cast<InsertValueInst>(&I))
3238     Indices = IV->getIndices();
3239   else
3240     Indices = cast<ConstantExpr>(&I)->getIndices();
3241 
3242   const Value *Op0 = I.getOperand(0);
3243   const Value *Op1 = I.getOperand(1);
3244   Type *AggTy = I.getType();
3245   Type *ValTy = Op1->getType();
3246   bool IntoUndef = isa<UndefValue>(Op0);
3247   bool FromUndef = isa<UndefValue>(Op1);
3248 
3249   unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
3250 
3251   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3252   SmallVector<EVT, 4> AggValueVTs;
3253   ComputeValueVTs(TLI, DAG.getDataLayout(), AggTy, AggValueVTs);
3254   SmallVector<EVT, 4> ValValueVTs;
3255   ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs);
3256 
3257   unsigned NumAggValues = AggValueVTs.size();
3258   unsigned NumValValues = ValValueVTs.size();
3259   SmallVector<SDValue, 4> Values(NumAggValues);
3260 
3261   // Ignore an insertvalue that produces an empty object
3262   if (!NumAggValues) {
3263     setValue(&I, DAG.getUNDEF(MVT(MVT::Other)));
3264     return;
3265   }
3266 
3267   SDValue Agg = getValue(Op0);
3268   unsigned i = 0;
3269   // Copy the beginning value(s) from the original aggregate.
3270   for (; i != LinearIndex; ++i)
3271     Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3272                 SDValue(Agg.getNode(), Agg.getResNo() + i);
3273   // Copy values from the inserted value(s).
3274   if (NumValValues) {
3275     SDValue Val = getValue(Op1);
3276     for (; i != LinearIndex + NumValValues; ++i)
3277       Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3278                   SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
3279   }
3280   // Copy remaining value(s) from the original aggregate.
3281   for (; i != NumAggValues; ++i)
3282     Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
3283                 SDValue(Agg.getNode(), Agg.getResNo() + i);
3284 
3285   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
3286                            DAG.getVTList(AggValueVTs), Values));
3287 }
3288 
3289 void SelectionDAGBuilder::visitExtractValue(const User &I) {
3290   ArrayRef<unsigned> Indices;
3291   if (const ExtractValueInst *EV = dyn_cast<ExtractValueInst>(&I))
3292     Indices = EV->getIndices();
3293   else
3294     Indices = cast<ConstantExpr>(&I)->getIndices();
3295 
3296   const Value *Op0 = I.getOperand(0);
3297   Type *AggTy = Op0->getType();
3298   Type *ValTy = I.getType();
3299   bool OutOfUndef = isa<UndefValue>(Op0);
3300 
3301   unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
3302 
3303   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3304   SmallVector<EVT, 4> ValValueVTs;
3305   ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs);
3306 
3307   unsigned NumValValues = ValValueVTs.size();
3308 
3309   // Ignore a extractvalue that produces an empty object
3310   if (!NumValValues) {
3311     setValue(&I, DAG.getUNDEF(MVT(MVT::Other)));
3312     return;
3313   }
3314 
3315   SmallVector<SDValue, 4> Values(NumValValues);
3316 
3317   SDValue Agg = getValue(Op0);
3318   // Copy out the selected value(s).
3319   for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
3320     Values[i - LinearIndex] =
3321       OutOfUndef ?
3322         DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
3323         SDValue(Agg.getNode(), Agg.getResNo() + i);
3324 
3325   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(),
3326                            DAG.getVTList(ValValueVTs), Values));
3327 }
3328 
3329 void SelectionDAGBuilder::visitGetElementPtr(const User &I) {
3330   Value *Op0 = I.getOperand(0);
3331   // Note that the pointer operand may be a vector of pointers. Take the scalar
3332   // element which holds a pointer.
3333   unsigned AS = Op0->getType()->getScalarType()->getPointerAddressSpace();
3334   SDValue N = getValue(Op0);
3335   SDLoc dl = getCurSDLoc();
3336 
3337   // Normalize Vector GEP - all scalar operands should be converted to the
3338   // splat vector.
3339   unsigned VectorWidth = I.getType()->isVectorTy() ?
3340     cast<VectorType>(I.getType())->getVectorNumElements() : 0;
3341 
3342   if (VectorWidth && !N.getValueType().isVector()) {
3343     LLVMContext &Context = *DAG.getContext();
3344     EVT VT = EVT::getVectorVT(Context, N.getValueType(), VectorWidth);
3345     N = DAG.getSplatBuildVector(VT, dl, N);
3346   }
3347 
3348   for (gep_type_iterator GTI = gep_type_begin(&I), E = gep_type_end(&I);
3349        GTI != E; ++GTI) {
3350     const Value *Idx = GTI.getOperand();
3351     if (StructType *StTy = GTI.getStructTypeOrNull()) {
3352       unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
3353       if (Field) {
3354         // N = N + Offset
3355         uint64_t Offset = DL->getStructLayout(StTy)->getElementOffset(Field);
3356 
3357         // In an inbounds GEP with an offset that is nonnegative even when
3358         // interpreted as signed, assume there is no unsigned overflow.
3359         SDNodeFlags Flags;
3360         if (int64_t(Offset) >= 0 && cast<GEPOperator>(I).isInBounds())
3361           Flags.setNoUnsignedWrap(true);
3362 
3363         N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N,
3364                         DAG.getConstant(Offset, dl, N.getValueType()), Flags);
3365       }
3366     } else {
3367       MVT PtrTy =
3368           DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout(), AS);
3369       unsigned PtrSize = PtrTy.getSizeInBits();
3370       APInt ElementSize(PtrSize, DL->getTypeAllocSize(GTI.getIndexedType()));
3371 
3372       // If this is a scalar constant or a splat vector of constants,
3373       // handle it quickly.
3374       const auto *CI = dyn_cast<ConstantInt>(Idx);
3375       if (!CI && isa<ConstantDataVector>(Idx) &&
3376           cast<ConstantDataVector>(Idx)->getSplatValue())
3377         CI = cast<ConstantInt>(cast<ConstantDataVector>(Idx)->getSplatValue());
3378 
3379       if (CI) {
3380         if (CI->isZero())
3381           continue;
3382         APInt Offs = ElementSize * CI->getValue().sextOrTrunc(PtrSize);
3383         LLVMContext &Context = *DAG.getContext();
3384         SDValue OffsVal = VectorWidth ?
3385           DAG.getConstant(Offs, dl, EVT::getVectorVT(Context, PtrTy, VectorWidth)) :
3386           DAG.getConstant(Offs, dl, PtrTy);
3387 
3388         // In an inbouds GEP with an offset that is nonnegative even when
3389         // interpreted as signed, assume there is no unsigned overflow.
3390         SDNodeFlags Flags;
3391         if (Offs.isNonNegative() && cast<GEPOperator>(I).isInBounds())
3392           Flags.setNoUnsignedWrap(true);
3393 
3394         N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N, OffsVal, Flags);
3395         continue;
3396       }
3397 
3398       // N = N + Idx * ElementSize;
3399       SDValue IdxN = getValue(Idx);
3400 
3401       if (!IdxN.getValueType().isVector() && VectorWidth) {
3402         EVT VT = EVT::getVectorVT(*Context, IdxN.getValueType(), VectorWidth);
3403         IdxN = DAG.getSplatBuildVector(VT, dl, IdxN);
3404       }
3405 
3406       // If the index is smaller or larger than intptr_t, truncate or extend
3407       // it.
3408       IdxN = DAG.getSExtOrTrunc(IdxN, dl, N.getValueType());
3409 
3410       // If this is a multiply by a power of two, turn it into a shl
3411       // immediately.  This is a very common case.
3412       if (ElementSize != 1) {
3413         if (ElementSize.isPowerOf2()) {
3414           unsigned Amt = ElementSize.logBase2();
3415           IdxN = DAG.getNode(ISD::SHL, dl,
3416                              N.getValueType(), IdxN,
3417                              DAG.getConstant(Amt, dl, IdxN.getValueType()));
3418         } else {
3419           SDValue Scale = DAG.getConstant(ElementSize, dl, IdxN.getValueType());
3420           IdxN = DAG.getNode(ISD::MUL, dl,
3421                              N.getValueType(), IdxN, Scale);
3422         }
3423       }
3424 
3425       N = DAG.getNode(ISD::ADD, dl,
3426                       N.getValueType(), N, IdxN);
3427     }
3428   }
3429 
3430   setValue(&I, N);
3431 }
3432 
3433 void SelectionDAGBuilder::visitAlloca(const AllocaInst &I) {
3434   // If this is a fixed sized alloca in the entry block of the function,
3435   // allocate it statically on the stack.
3436   if (FuncInfo.StaticAllocaMap.count(&I))
3437     return;   // getValue will auto-populate this.
3438 
3439   SDLoc dl = getCurSDLoc();
3440   Type *Ty = I.getAllocatedType();
3441   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3442   auto &DL = DAG.getDataLayout();
3443   uint64_t TySize = DL.getTypeAllocSize(Ty);
3444   unsigned Align =
3445       std::max((unsigned)DL.getPrefTypeAlignment(Ty), I.getAlignment());
3446 
3447   SDValue AllocSize = getValue(I.getArraySize());
3448 
3449   EVT IntPtr = TLI.getPointerTy(DAG.getDataLayout());
3450   if (AllocSize.getValueType() != IntPtr)
3451     AllocSize = DAG.getZExtOrTrunc(AllocSize, dl, IntPtr);
3452 
3453   AllocSize = DAG.getNode(ISD::MUL, dl, IntPtr,
3454                           AllocSize,
3455                           DAG.getConstant(TySize, dl, IntPtr));
3456 
3457   // Handle alignment.  If the requested alignment is less than or equal to
3458   // the stack alignment, ignore it.  If the size is greater than or equal to
3459   // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
3460   unsigned StackAlign =
3461       DAG.getSubtarget().getFrameLowering()->getStackAlignment();
3462   if (Align <= StackAlign)
3463     Align = 0;
3464 
3465   // Round the size of the allocation up to the stack alignment size
3466   // by add SA-1 to the size. This doesn't overflow because we're computing
3467   // an address inside an alloca.
3468   SDNodeFlags Flags;
3469   Flags.setNoUnsignedWrap(true);
3470   AllocSize = DAG.getNode(ISD::ADD, dl,
3471                           AllocSize.getValueType(), AllocSize,
3472                           DAG.getIntPtrConstant(StackAlign - 1, dl), Flags);
3473 
3474   // Mask out the low bits for alignment purposes.
3475   AllocSize = DAG.getNode(ISD::AND, dl,
3476                           AllocSize.getValueType(), AllocSize,
3477                           DAG.getIntPtrConstant(~(uint64_t)(StackAlign - 1),
3478                                                 dl));
3479 
3480   SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align, dl) };
3481   SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
3482   SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, dl, VTs, Ops);
3483   setValue(&I, DSA);
3484   DAG.setRoot(DSA.getValue(1));
3485 
3486   assert(FuncInfo.MF->getFrameInfo().hasVarSizedObjects());
3487 }
3488 
3489 void SelectionDAGBuilder::visitLoad(const LoadInst &I) {
3490   if (I.isAtomic())
3491     return visitAtomicLoad(I);
3492 
3493   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3494   const Value *SV = I.getOperand(0);
3495   if (TLI.supportSwiftError()) {
3496     // Swifterror values can come from either a function parameter with
3497     // swifterror attribute or an alloca with swifterror attribute.
3498     if (const Argument *Arg = dyn_cast<Argument>(SV)) {
3499       if (Arg->hasSwiftErrorAttr())
3500         return visitLoadFromSwiftError(I);
3501     }
3502 
3503     if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) {
3504       if (Alloca->isSwiftError())
3505         return visitLoadFromSwiftError(I);
3506     }
3507   }
3508 
3509   SDValue Ptr = getValue(SV);
3510 
3511   Type *Ty = I.getType();
3512 
3513   bool isVolatile = I.isVolatile();
3514   bool isNonTemporal = I.getMetadata(LLVMContext::MD_nontemporal) != nullptr;
3515   bool isInvariant = I.getMetadata(LLVMContext::MD_invariant_load) != nullptr;
3516   bool isDereferenceable = isDereferenceablePointer(SV, DAG.getDataLayout());
3517   unsigned Alignment = I.getAlignment();
3518 
3519   AAMDNodes AAInfo;
3520   I.getAAMetadata(AAInfo);
3521   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
3522 
3523   SmallVector<EVT, 4> ValueVTs;
3524   SmallVector<uint64_t, 4> Offsets;
3525   ComputeValueVTs(TLI, DAG.getDataLayout(), Ty, ValueVTs, &Offsets);
3526   unsigned NumValues = ValueVTs.size();
3527   if (NumValues == 0)
3528     return;
3529 
3530   SDValue Root;
3531   bool ConstantMemory = false;
3532   if (isVolatile || NumValues > MaxParallelChains)
3533     // Serialize volatile loads with other side effects.
3534     Root = getRoot();
3535   else if (AA && AA->pointsToConstantMemory(MemoryLocation(
3536                SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo))) {
3537     // Do not serialize (non-volatile) loads of constant memory with anything.
3538     Root = DAG.getEntryNode();
3539     ConstantMemory = true;
3540   } else {
3541     // Do not serialize non-volatile loads against each other.
3542     Root = DAG.getRoot();
3543   }
3544 
3545   SDLoc dl = getCurSDLoc();
3546 
3547   if (isVolatile)
3548     Root = TLI.prepareVolatileOrAtomicLoad(Root, dl, DAG);
3549 
3550   // An aggregate load cannot wrap around the address space, so offsets to its
3551   // parts don't wrap either.
3552   SDNodeFlags Flags;
3553   Flags.setNoUnsignedWrap(true);
3554 
3555   SmallVector<SDValue, 4> Values(NumValues);
3556   SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues));
3557   EVT PtrVT = Ptr.getValueType();
3558   unsigned ChainI = 0;
3559   for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3560     // Serializing loads here may result in excessive register pressure, and
3561     // TokenFactor places arbitrary choke points on the scheduler. SD scheduling
3562     // could recover a bit by hoisting nodes upward in the chain by recognizing
3563     // they are side-effect free or do not alias. The optimizer should really
3564     // avoid this case by converting large object/array copies to llvm.memcpy
3565     // (MaxParallelChains should always remain as failsafe).
3566     if (ChainI == MaxParallelChains) {
3567       assert(PendingLoads.empty() && "PendingLoads must be serialized first");
3568       SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3569                                   makeArrayRef(Chains.data(), ChainI));
3570       Root = Chain;
3571       ChainI = 0;
3572     }
3573     SDValue A = DAG.getNode(ISD::ADD, dl,
3574                             PtrVT, Ptr,
3575                             DAG.getConstant(Offsets[i], dl, PtrVT),
3576                             Flags);
3577     auto MMOFlags = MachineMemOperand::MONone;
3578     if (isVolatile)
3579       MMOFlags |= MachineMemOperand::MOVolatile;
3580     if (isNonTemporal)
3581       MMOFlags |= MachineMemOperand::MONonTemporal;
3582     if (isInvariant)
3583       MMOFlags |= MachineMemOperand::MOInvariant;
3584     if (isDereferenceable)
3585       MMOFlags |= MachineMemOperand::MODereferenceable;
3586     MMOFlags |= TLI.getMMOFlags(I);
3587 
3588     SDValue L = DAG.getLoad(ValueVTs[i], dl, Root, A,
3589                             MachinePointerInfo(SV, Offsets[i]), Alignment,
3590                             MMOFlags, AAInfo, Ranges);
3591 
3592     Values[i] = L;
3593     Chains[ChainI] = L.getValue(1);
3594   }
3595 
3596   if (!ConstantMemory) {
3597     SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3598                                 makeArrayRef(Chains.data(), ChainI));
3599     if (isVolatile)
3600       DAG.setRoot(Chain);
3601     else
3602       PendingLoads.push_back(Chain);
3603   }
3604 
3605   setValue(&I, DAG.getNode(ISD::MERGE_VALUES, dl,
3606                            DAG.getVTList(ValueVTs), Values));
3607 }
3608 
3609 void SelectionDAGBuilder::visitStoreToSwiftError(const StoreInst &I) {
3610   assert(DAG.getTargetLoweringInfo().supportSwiftError() &&
3611          "call visitStoreToSwiftError when backend supports swifterror");
3612 
3613   SmallVector<EVT, 4> ValueVTs;
3614   SmallVector<uint64_t, 4> Offsets;
3615   const Value *SrcV = I.getOperand(0);
3616   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(),
3617                   SrcV->getType(), ValueVTs, &Offsets);
3618   assert(ValueVTs.size() == 1 && Offsets[0] == 0 &&
3619          "expect a single EVT for swifterror");
3620 
3621   SDValue Src = getValue(SrcV);
3622   // Create a virtual register, then update the virtual register.
3623   unsigned VReg; bool CreatedVReg;
3624   std::tie(VReg, CreatedVReg) = FuncInfo.getOrCreateSwiftErrorVRegDefAt(&I);
3625   // Chain, DL, Reg, N or Chain, DL, Reg, N, Glue
3626   // Chain can be getRoot or getControlRoot.
3627   SDValue CopyNode = DAG.getCopyToReg(getRoot(), getCurSDLoc(), VReg,
3628                                       SDValue(Src.getNode(), Src.getResNo()));
3629   DAG.setRoot(CopyNode);
3630   if (CreatedVReg)
3631     FuncInfo.setCurrentSwiftErrorVReg(FuncInfo.MBB, I.getOperand(1), VReg);
3632 }
3633 
3634 void SelectionDAGBuilder::visitLoadFromSwiftError(const LoadInst &I) {
3635   assert(DAG.getTargetLoweringInfo().supportSwiftError() &&
3636          "call visitLoadFromSwiftError when backend supports swifterror");
3637 
3638   assert(!I.isVolatile() &&
3639          I.getMetadata(LLVMContext::MD_nontemporal) == nullptr &&
3640          I.getMetadata(LLVMContext::MD_invariant_load) == nullptr &&
3641          "Support volatile, non temporal, invariant for load_from_swift_error");
3642 
3643   const Value *SV = I.getOperand(0);
3644   Type *Ty = I.getType();
3645   AAMDNodes AAInfo;
3646   I.getAAMetadata(AAInfo);
3647   assert((!AA || !AA->pointsToConstantMemory(MemoryLocation(
3648              SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo))) &&
3649          "load_from_swift_error should not be constant memory");
3650 
3651   SmallVector<EVT, 4> ValueVTs;
3652   SmallVector<uint64_t, 4> Offsets;
3653   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), Ty,
3654                   ValueVTs, &Offsets);
3655   assert(ValueVTs.size() == 1 && Offsets[0] == 0 &&
3656          "expect a single EVT for swifterror");
3657 
3658   // Chain, DL, Reg, VT, Glue or Chain, DL, Reg, VT
3659   SDValue L = DAG.getCopyFromReg(
3660       getRoot(), getCurSDLoc(),
3661       FuncInfo.getOrCreateSwiftErrorVRegUseAt(&I, FuncInfo.MBB, SV).first,
3662       ValueVTs[0]);
3663 
3664   setValue(&I, L);
3665 }
3666 
3667 void SelectionDAGBuilder::visitStore(const StoreInst &I) {
3668   if (I.isAtomic())
3669     return visitAtomicStore(I);
3670 
3671   const Value *SrcV = I.getOperand(0);
3672   const Value *PtrV = I.getOperand(1);
3673 
3674   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3675   if (TLI.supportSwiftError()) {
3676     // Swifterror values can come from either a function parameter with
3677     // swifterror attribute or an alloca with swifterror attribute.
3678     if (const Argument *Arg = dyn_cast<Argument>(PtrV)) {
3679       if (Arg->hasSwiftErrorAttr())
3680         return visitStoreToSwiftError(I);
3681     }
3682 
3683     if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) {
3684       if (Alloca->isSwiftError())
3685         return visitStoreToSwiftError(I);
3686     }
3687   }
3688 
3689   SmallVector<EVT, 4> ValueVTs;
3690   SmallVector<uint64_t, 4> Offsets;
3691   ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(),
3692                   SrcV->getType(), ValueVTs, &Offsets);
3693   unsigned NumValues = ValueVTs.size();
3694   if (NumValues == 0)
3695     return;
3696 
3697   // Get the lowered operands. Note that we do this after
3698   // checking if NumResults is zero, because with zero results
3699   // the operands won't have values in the map.
3700   SDValue Src = getValue(SrcV);
3701   SDValue Ptr = getValue(PtrV);
3702 
3703   SDValue Root = getRoot();
3704   SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues));
3705   SDLoc dl = getCurSDLoc();
3706   EVT PtrVT = Ptr.getValueType();
3707   unsigned Alignment = I.getAlignment();
3708   AAMDNodes AAInfo;
3709   I.getAAMetadata(AAInfo);
3710 
3711   auto MMOFlags = MachineMemOperand::MONone;
3712   if (I.isVolatile())
3713     MMOFlags |= MachineMemOperand::MOVolatile;
3714   if (I.getMetadata(LLVMContext::MD_nontemporal) != nullptr)
3715     MMOFlags |= MachineMemOperand::MONonTemporal;
3716   MMOFlags |= TLI.getMMOFlags(I);
3717 
3718   // An aggregate load cannot wrap around the address space, so offsets to its
3719   // parts don't wrap either.
3720   SDNodeFlags Flags;
3721   Flags.setNoUnsignedWrap(true);
3722 
3723   unsigned ChainI = 0;
3724   for (unsigned i = 0; i != NumValues; ++i, ++ChainI) {
3725     // See visitLoad comments.
3726     if (ChainI == MaxParallelChains) {
3727       SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3728                                   makeArrayRef(Chains.data(), ChainI));
3729       Root = Chain;
3730       ChainI = 0;
3731     }
3732     SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, Ptr,
3733                               DAG.getConstant(Offsets[i], dl, PtrVT), Flags);
3734     SDValue St = DAG.getStore(
3735         Root, dl, SDValue(Src.getNode(), Src.getResNo() + i), Add,
3736         MachinePointerInfo(PtrV, Offsets[i]), Alignment, MMOFlags, AAInfo);
3737     Chains[ChainI] = St;
3738   }
3739 
3740   SDValue StoreNode = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3741                                   makeArrayRef(Chains.data(), ChainI));
3742   DAG.setRoot(StoreNode);
3743 }
3744 
3745 void SelectionDAGBuilder::visitMaskedStore(const CallInst &I,
3746                                            bool IsCompressing) {
3747   SDLoc sdl = getCurSDLoc();
3748 
3749   auto getMaskedStoreOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3750                            unsigned& Alignment) {
3751     // llvm.masked.store.*(Src0, Ptr, alignment, Mask)
3752     Src0 = I.getArgOperand(0);
3753     Ptr = I.getArgOperand(1);
3754     Alignment = cast<ConstantInt>(I.getArgOperand(2))->getZExtValue();
3755     Mask = I.getArgOperand(3);
3756   };
3757   auto getCompressingStoreOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3758                            unsigned& Alignment) {
3759     // llvm.masked.compressstore.*(Src0, Ptr, Mask)
3760     Src0 = I.getArgOperand(0);
3761     Ptr = I.getArgOperand(1);
3762     Mask = I.getArgOperand(2);
3763     Alignment = 0;
3764   };
3765 
3766   Value  *PtrOperand, *MaskOperand, *Src0Operand;
3767   unsigned Alignment;
3768   if (IsCompressing)
3769     getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3770   else
3771     getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3772 
3773   SDValue Ptr = getValue(PtrOperand);
3774   SDValue Src0 = getValue(Src0Operand);
3775   SDValue Mask = getValue(MaskOperand);
3776 
3777   EVT VT = Src0.getValueType();
3778   if (!Alignment)
3779     Alignment = DAG.getEVTAlignment(VT);
3780 
3781   AAMDNodes AAInfo;
3782   I.getAAMetadata(AAInfo);
3783 
3784   MachineMemOperand *MMO =
3785     DAG.getMachineFunction().
3786     getMachineMemOperand(MachinePointerInfo(PtrOperand),
3787                           MachineMemOperand::MOStore,  VT.getStoreSize(),
3788                           Alignment, AAInfo);
3789   SDValue StoreNode = DAG.getMaskedStore(getRoot(), sdl, Src0, Ptr, Mask, VT,
3790                                          MMO, false /* Truncating */,
3791                                          IsCompressing);
3792   DAG.setRoot(StoreNode);
3793   setValue(&I, StoreNode);
3794 }
3795 
3796 // Get a uniform base for the Gather/Scatter intrinsic.
3797 // The first argument of the Gather/Scatter intrinsic is a vector of pointers.
3798 // We try to represent it as a base pointer + vector of indices.
3799 // Usually, the vector of pointers comes from a 'getelementptr' instruction.
3800 // The first operand of the GEP may be a single pointer or a vector of pointers
3801 // Example:
3802 //   %gep.ptr = getelementptr i32, <8 x i32*> %vptr, <8 x i32> %ind
3803 //  or
3804 //   %gep.ptr = getelementptr i32, i32* %ptr,        <8 x i32> %ind
3805 // %res = call <8 x i32> @llvm.masked.gather.v8i32(<8 x i32*> %gep.ptr, ..
3806 //
3807 // When the first GEP operand is a single pointer - it is the uniform base we
3808 // are looking for. If first operand of the GEP is a splat vector - we
3809 // extract the spalt value and use it as a uniform base.
3810 // In all other cases the function returns 'false'.
3811 //
3812 static bool getUniformBase(const Value* &Ptr, SDValue& Base, SDValue& Index,
3813                            SelectionDAGBuilder* SDB) {
3814 
3815   SelectionDAG& DAG = SDB->DAG;
3816   LLVMContext &Context = *DAG.getContext();
3817 
3818   assert(Ptr->getType()->isVectorTy() && "Uexpected pointer type");
3819   const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr);
3820   if (!GEP || GEP->getNumOperands() > 2)
3821     return false;
3822 
3823   const Value *GEPPtr = GEP->getPointerOperand();
3824   if (!GEPPtr->getType()->isVectorTy())
3825     Ptr = GEPPtr;
3826   else if (!(Ptr = getSplatValue(GEPPtr)))
3827     return false;
3828 
3829   Value *IndexVal = GEP->getOperand(1);
3830 
3831   // The operands of the GEP may be defined in another basic block.
3832   // In this case we'll not find nodes for the operands.
3833   if (!SDB->findValue(Ptr) || !SDB->findValue(IndexVal))
3834     return false;
3835 
3836   Base = SDB->getValue(Ptr);
3837   Index = SDB->getValue(IndexVal);
3838 
3839   // Suppress sign extension.
3840   if (SExtInst* Sext = dyn_cast<SExtInst>(IndexVal)) {
3841     if (SDB->findValue(Sext->getOperand(0))) {
3842       IndexVal = Sext->getOperand(0);
3843       Index = SDB->getValue(IndexVal);
3844     }
3845   }
3846   if (!Index.getValueType().isVector()) {
3847     unsigned GEPWidth = GEP->getType()->getVectorNumElements();
3848     EVT VT = EVT::getVectorVT(Context, Index.getValueType(), GEPWidth);
3849     Index = DAG.getSplatBuildVector(VT, SDLoc(Index), Index);
3850   }
3851   return true;
3852 }
3853 
3854 void SelectionDAGBuilder::visitMaskedScatter(const CallInst &I) {
3855   SDLoc sdl = getCurSDLoc();
3856 
3857   // llvm.masked.scatter.*(Src0, Ptrs, alignemt, Mask)
3858   const Value *Ptr = I.getArgOperand(1);
3859   SDValue Src0 = getValue(I.getArgOperand(0));
3860   SDValue Mask = getValue(I.getArgOperand(3));
3861   EVT VT = Src0.getValueType();
3862   unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(2)))->getZExtValue();
3863   if (!Alignment)
3864     Alignment = DAG.getEVTAlignment(VT);
3865   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3866 
3867   AAMDNodes AAInfo;
3868   I.getAAMetadata(AAInfo);
3869 
3870   SDValue Base;
3871   SDValue Index;
3872   const Value *BasePtr = Ptr;
3873   bool UniformBase = getUniformBase(BasePtr, Base, Index, this);
3874 
3875   const Value *MemOpBasePtr = UniformBase ? BasePtr : nullptr;
3876   MachineMemOperand *MMO = DAG.getMachineFunction().
3877     getMachineMemOperand(MachinePointerInfo(MemOpBasePtr),
3878                          MachineMemOperand::MOStore,  VT.getStoreSize(),
3879                          Alignment, AAInfo);
3880   if (!UniformBase) {
3881     Base = DAG.getTargetConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout()));
3882     Index = getValue(Ptr);
3883   }
3884   SDValue Ops[] = { getRoot(), Src0, Mask, Base, Index };
3885   SDValue Scatter = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), VT, sdl,
3886                                          Ops, MMO);
3887   DAG.setRoot(Scatter);
3888   setValue(&I, Scatter);
3889 }
3890 
3891 void SelectionDAGBuilder::visitMaskedLoad(const CallInst &I, bool IsExpanding) {
3892   SDLoc sdl = getCurSDLoc();
3893 
3894   auto getMaskedLoadOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3895                            unsigned& Alignment) {
3896     // @llvm.masked.load.*(Ptr, alignment, Mask, Src0)
3897     Ptr = I.getArgOperand(0);
3898     Alignment = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue();
3899     Mask = I.getArgOperand(2);
3900     Src0 = I.getArgOperand(3);
3901   };
3902   auto getExpandingLoadOps = [&](Value* &Ptr, Value* &Mask, Value* &Src0,
3903                            unsigned& Alignment) {
3904     // @llvm.masked.expandload.*(Ptr, Mask, Src0)
3905     Ptr = I.getArgOperand(0);
3906     Alignment = 0;
3907     Mask = I.getArgOperand(1);
3908     Src0 = I.getArgOperand(2);
3909   };
3910 
3911   Value  *PtrOperand, *MaskOperand, *Src0Operand;
3912   unsigned Alignment;
3913   if (IsExpanding)
3914     getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3915   else
3916     getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
3917 
3918   SDValue Ptr = getValue(PtrOperand);
3919   SDValue Src0 = getValue(Src0Operand);
3920   SDValue Mask = getValue(MaskOperand);
3921 
3922   EVT VT = Src0.getValueType();
3923   if (!Alignment)
3924     Alignment = DAG.getEVTAlignment(VT);
3925 
3926   AAMDNodes AAInfo;
3927   I.getAAMetadata(AAInfo);
3928   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
3929 
3930   // Do not serialize masked loads of constant memory with anything.
3931   bool AddToChain = !AA || !AA->pointsToConstantMemory(MemoryLocation(
3932       PtrOperand, DAG.getDataLayout().getTypeStoreSize(I.getType()), AAInfo));
3933   SDValue InChain = AddToChain ? DAG.getRoot() : DAG.getEntryNode();
3934 
3935   MachineMemOperand *MMO =
3936     DAG.getMachineFunction().
3937     getMachineMemOperand(MachinePointerInfo(PtrOperand),
3938                           MachineMemOperand::MOLoad,  VT.getStoreSize(),
3939                           Alignment, AAInfo, Ranges);
3940 
3941   SDValue Load = DAG.getMaskedLoad(VT, sdl, InChain, Ptr, Mask, Src0, VT, MMO,
3942                                    ISD::NON_EXTLOAD, IsExpanding);
3943   if (AddToChain) {
3944     SDValue OutChain = Load.getValue(1);
3945     DAG.setRoot(OutChain);
3946   }
3947   setValue(&I, Load);
3948 }
3949 
3950 void SelectionDAGBuilder::visitMaskedGather(const CallInst &I) {
3951   SDLoc sdl = getCurSDLoc();
3952 
3953   // @llvm.masked.gather.*(Ptrs, alignment, Mask, Src0)
3954   const Value *Ptr = I.getArgOperand(0);
3955   SDValue Src0 = getValue(I.getArgOperand(3));
3956   SDValue Mask = getValue(I.getArgOperand(2));
3957 
3958   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3959   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
3960   unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(1)))->getZExtValue();
3961   if (!Alignment)
3962     Alignment = DAG.getEVTAlignment(VT);
3963 
3964   AAMDNodes AAInfo;
3965   I.getAAMetadata(AAInfo);
3966   const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range);
3967 
3968   SDValue Root = DAG.getRoot();
3969   SDValue Base;
3970   SDValue Index;
3971   const Value *BasePtr = Ptr;
3972   bool UniformBase = getUniformBase(BasePtr, Base, Index, this);
3973   bool ConstantMemory = false;
3974   if (UniformBase &&
3975       AA && AA->pointsToConstantMemory(MemoryLocation(
3976           BasePtr, DAG.getDataLayout().getTypeStoreSize(I.getType()),
3977           AAInfo))) {
3978     // Do not serialize (non-volatile) loads of constant memory with anything.
3979     Root = DAG.getEntryNode();
3980     ConstantMemory = true;
3981   }
3982 
3983   MachineMemOperand *MMO =
3984     DAG.getMachineFunction().
3985     getMachineMemOperand(MachinePointerInfo(UniformBase ? BasePtr : nullptr),
3986                          MachineMemOperand::MOLoad,  VT.getStoreSize(),
3987                          Alignment, AAInfo, Ranges);
3988 
3989   if (!UniformBase) {
3990     Base = DAG.getTargetConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout()));
3991     Index = getValue(Ptr);
3992   }
3993   SDValue Ops[] = { Root, Src0, Mask, Base, Index };
3994   SDValue Gather = DAG.getMaskedGather(DAG.getVTList(VT, MVT::Other), VT, sdl,
3995                                        Ops, MMO);
3996 
3997   SDValue OutChain = Gather.getValue(1);
3998   if (!ConstantMemory)
3999     PendingLoads.push_back(OutChain);
4000   setValue(&I, Gather);
4001 }
4002 
4003 void SelectionDAGBuilder::visitAtomicCmpXchg(const AtomicCmpXchgInst &I) {
4004   SDLoc dl = getCurSDLoc();
4005   AtomicOrdering SuccessOrder = I.getSuccessOrdering();
4006   AtomicOrdering FailureOrder = I.getFailureOrdering();
4007   SyncScope::ID SSID = I.getSyncScopeID();
4008 
4009   SDValue InChain = getRoot();
4010 
4011   MVT MemVT = getValue(I.getCompareOperand()).getSimpleValueType();
4012   SDVTList VTs = DAG.getVTList(MemVT, MVT::i1, MVT::Other);
4013   SDValue L = DAG.getAtomicCmpSwap(
4014       ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl, MemVT, VTs, InChain,
4015       getValue(I.getPointerOperand()), getValue(I.getCompareOperand()),
4016       getValue(I.getNewValOperand()), MachinePointerInfo(I.getPointerOperand()),
4017       /*Alignment=*/ 0, SuccessOrder, FailureOrder, SSID);
4018 
4019   SDValue OutChain = L.getValue(2);
4020 
4021   setValue(&I, L);
4022   DAG.setRoot(OutChain);
4023 }
4024 
4025 void SelectionDAGBuilder::visitAtomicRMW(const AtomicRMWInst &I) {
4026   SDLoc dl = getCurSDLoc();
4027   ISD::NodeType NT;
4028   switch (I.getOperation()) {
4029   default: llvm_unreachable("Unknown atomicrmw operation");
4030   case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break;
4031   case AtomicRMWInst::Add:  NT = ISD::ATOMIC_LOAD_ADD; break;
4032   case AtomicRMWInst::Sub:  NT = ISD::ATOMIC_LOAD_SUB; break;
4033   case AtomicRMWInst::And:  NT = ISD::ATOMIC_LOAD_AND; break;
4034   case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break;
4035   case AtomicRMWInst::Or:   NT = ISD::ATOMIC_LOAD_OR; break;
4036   case AtomicRMWInst::Xor:  NT = ISD::ATOMIC_LOAD_XOR; break;
4037   case AtomicRMWInst::Max:  NT = ISD::ATOMIC_LOAD_MAX; break;
4038   case AtomicRMWInst::Min:  NT = ISD::ATOMIC_LOAD_MIN; break;
4039   case AtomicRMWInst::UMax: NT = ISD::ATOMIC_LOAD_UMAX; break;
4040   case AtomicRMWInst::UMin: NT = ISD::ATOMIC_LOAD_UMIN; break;
4041   }
4042   AtomicOrdering Order = I.getOrdering();
4043   SyncScope::ID SSID = I.getSyncScopeID();
4044 
4045   SDValue InChain = getRoot();
4046 
4047   SDValue L =
4048     DAG.getAtomic(NT, dl,
4049                   getValue(I.getValOperand()).getSimpleValueType(),
4050                   InChain,
4051                   getValue(I.getPointerOperand()),
4052                   getValue(I.getValOperand()),
4053                   I.getPointerOperand(),
4054                   /* Alignment=*/ 0, Order, SSID);
4055 
4056   SDValue OutChain = L.getValue(1);
4057 
4058   setValue(&I, L);
4059   DAG.setRoot(OutChain);
4060 }
4061 
4062 void SelectionDAGBuilder::visitFence(const FenceInst &I) {
4063   SDLoc dl = getCurSDLoc();
4064   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4065   SDValue Ops[3];
4066   Ops[0] = getRoot();
4067   Ops[1] = DAG.getConstant((unsigned)I.getOrdering(), dl,
4068                            TLI.getFenceOperandTy(DAG.getDataLayout()));
4069   Ops[2] = DAG.getConstant(I.getSyncScopeID(), dl,
4070                            TLI.getFenceOperandTy(DAG.getDataLayout()));
4071   DAG.setRoot(DAG.getNode(ISD::ATOMIC_FENCE, dl, MVT::Other, Ops));
4072 }
4073 
4074 void SelectionDAGBuilder::visitAtomicLoad(const LoadInst &I) {
4075   SDLoc dl = getCurSDLoc();
4076   AtomicOrdering Order = I.getOrdering();
4077   SyncScope::ID SSID = I.getSyncScopeID();
4078 
4079   SDValue InChain = getRoot();
4080 
4081   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4082   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
4083 
4084   if (I.getAlignment() < VT.getSizeInBits() / 8)
4085     report_fatal_error("Cannot generate unaligned atomic load");
4086 
4087   MachineMemOperand *MMO =
4088       DAG.getMachineFunction().
4089       getMachineMemOperand(MachinePointerInfo(I.getPointerOperand()),
4090                            MachineMemOperand::MOVolatile |
4091                            MachineMemOperand::MOLoad,
4092                            VT.getStoreSize(),
4093                            I.getAlignment() ? I.getAlignment() :
4094                                               DAG.getEVTAlignment(VT),
4095                            AAMDNodes(), nullptr, SSID, Order);
4096 
4097   InChain = TLI.prepareVolatileOrAtomicLoad(InChain, dl, DAG);
4098   SDValue L =
4099       DAG.getAtomic(ISD::ATOMIC_LOAD, dl, VT, VT, InChain,
4100                     getValue(I.getPointerOperand()), MMO);
4101 
4102   SDValue OutChain = L.getValue(1);
4103 
4104   setValue(&I, L);
4105   DAG.setRoot(OutChain);
4106 }
4107 
4108 void SelectionDAGBuilder::visitAtomicStore(const StoreInst &I) {
4109   SDLoc dl = getCurSDLoc();
4110 
4111   AtomicOrdering Order = I.getOrdering();
4112   SyncScope::ID SSID = I.getSyncScopeID();
4113 
4114   SDValue InChain = getRoot();
4115 
4116   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4117   EVT VT =
4118       TLI.getValueType(DAG.getDataLayout(), I.getValueOperand()->getType());
4119 
4120   if (I.getAlignment() < VT.getSizeInBits() / 8)
4121     report_fatal_error("Cannot generate unaligned atomic store");
4122 
4123   SDValue OutChain =
4124     DAG.getAtomic(ISD::ATOMIC_STORE, dl, VT,
4125                   InChain,
4126                   getValue(I.getPointerOperand()),
4127                   getValue(I.getValueOperand()),
4128                   I.getPointerOperand(), I.getAlignment(),
4129                   Order, SSID);
4130 
4131   DAG.setRoot(OutChain);
4132 }
4133 
4134 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
4135 /// node.
4136 void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I,
4137                                                unsigned Intrinsic) {
4138   // Ignore the callsite's attributes. A specific call site may be marked with
4139   // readnone, but the lowering code will expect the chain based on the
4140   // definition.
4141   const Function *F = I.getCalledFunction();
4142   bool HasChain = !F->doesNotAccessMemory();
4143   bool OnlyLoad = HasChain && F->onlyReadsMemory();
4144 
4145   // Build the operand list.
4146   SmallVector<SDValue, 8> Ops;
4147   if (HasChain) {  // If this intrinsic has side-effects, chainify it.
4148     if (OnlyLoad) {
4149       // We don't need to serialize loads against other loads.
4150       Ops.push_back(DAG.getRoot());
4151     } else {
4152       Ops.push_back(getRoot());
4153     }
4154   }
4155 
4156   // Info is set by getTgtMemInstrinsic
4157   TargetLowering::IntrinsicInfo Info;
4158   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4159   bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
4160 
4161   // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
4162   if (!IsTgtIntrinsic || Info.opc == ISD::INTRINSIC_VOID ||
4163       Info.opc == ISD::INTRINSIC_W_CHAIN)
4164     Ops.push_back(DAG.getTargetConstant(Intrinsic, getCurSDLoc(),
4165                                         TLI.getPointerTy(DAG.getDataLayout())));
4166 
4167   // Add all operands of the call to the operand list.
4168   for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) {
4169     SDValue Op = getValue(I.getArgOperand(i));
4170     Ops.push_back(Op);
4171   }
4172 
4173   SmallVector<EVT, 4> ValueVTs;
4174   ComputeValueVTs(TLI, DAG.getDataLayout(), I.getType(), ValueVTs);
4175 
4176   if (HasChain)
4177     ValueVTs.push_back(MVT::Other);
4178 
4179   SDVTList VTs = DAG.getVTList(ValueVTs);
4180 
4181   // Create the node.
4182   SDValue Result;
4183   if (IsTgtIntrinsic) {
4184     // This is target intrinsic that touches memory
4185     Result = DAG.getMemIntrinsicNode(Info.opc, getCurSDLoc(),
4186                                      VTs, Ops, Info.memVT,
4187                                    MachinePointerInfo(Info.ptrVal, Info.offset),
4188                                      Info.align, Info.vol,
4189                                      Info.readMem, Info.writeMem, Info.size);
4190   } else if (!HasChain) {
4191     Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurSDLoc(), VTs, Ops);
4192   } else if (!I.getType()->isVoidTy()) {
4193     Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurSDLoc(), VTs, Ops);
4194   } else {
4195     Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurSDLoc(), VTs, Ops);
4196   }
4197 
4198   if (HasChain) {
4199     SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
4200     if (OnlyLoad)
4201       PendingLoads.push_back(Chain);
4202     else
4203       DAG.setRoot(Chain);
4204   }
4205 
4206   if (!I.getType()->isVoidTy()) {
4207     if (VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
4208       EVT VT = TLI.getValueType(DAG.getDataLayout(), PTy);
4209       Result = DAG.getNode(ISD::BITCAST, getCurSDLoc(), VT, Result);
4210     } else
4211       Result = lowerRangeToAssertZExt(DAG, I, Result);
4212 
4213     setValue(&I, Result);
4214   }
4215 }
4216 
4217 /// GetSignificand - Get the significand and build it into a floating-point
4218 /// number with exponent of 1:
4219 ///
4220 ///   Op = (Op & 0x007fffff) | 0x3f800000;
4221 ///
4222 /// where Op is the hexadecimal representation of floating point value.
4223 static SDValue GetSignificand(SelectionDAG &DAG, SDValue Op, const SDLoc &dl) {
4224   SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
4225                            DAG.getConstant(0x007fffff, dl, MVT::i32));
4226   SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
4227                            DAG.getConstant(0x3f800000, dl, MVT::i32));
4228   return DAG.getNode(ISD::BITCAST, dl, MVT::f32, t2);
4229 }
4230 
4231 /// GetExponent - Get the exponent:
4232 ///
4233 ///   (float)(int)(((Op & 0x7f800000) >> 23) - 127);
4234 ///
4235 /// where Op is the hexadecimal representation of floating point value.
4236 static SDValue GetExponent(SelectionDAG &DAG, SDValue Op,
4237                            const TargetLowering &TLI, const SDLoc &dl) {
4238   SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
4239                            DAG.getConstant(0x7f800000, dl, MVT::i32));
4240   SDValue t1 = DAG.getNode(
4241       ISD::SRL, dl, MVT::i32, t0,
4242       DAG.getConstant(23, dl, TLI.getPointerTy(DAG.getDataLayout())));
4243   SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
4244                            DAG.getConstant(127, dl, MVT::i32));
4245   return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
4246 }
4247 
4248 /// getF32Constant - Get 32-bit floating point constant.
4249 static SDValue getF32Constant(SelectionDAG &DAG, unsigned Flt,
4250                               const SDLoc &dl) {
4251   return DAG.getConstantFP(APFloat(APFloat::IEEEsingle(), APInt(32, Flt)), dl,
4252                            MVT::f32);
4253 }
4254 
4255 static SDValue getLimitedPrecisionExp2(SDValue t0, const SDLoc &dl,
4256                                        SelectionDAG &DAG) {
4257   // TODO: What fast-math-flags should be set on the floating-point nodes?
4258 
4259   //   IntegerPartOfX = ((int32_t)(t0);
4260   SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
4261 
4262   //   FractionalPartOfX = t0 - (float)IntegerPartOfX;
4263   SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
4264   SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
4265 
4266   //   IntegerPartOfX <<= 23;
4267   IntegerPartOfX = DAG.getNode(
4268       ISD::SHL, dl, MVT::i32, IntegerPartOfX,
4269       DAG.getConstant(23, dl, DAG.getTargetLoweringInfo().getPointerTy(
4270                                   DAG.getDataLayout())));
4271 
4272   SDValue TwoToFractionalPartOfX;
4273   if (LimitFloatPrecision <= 6) {
4274     // For floating-point precision of 6:
4275     //
4276     //   TwoToFractionalPartOfX =
4277     //     0.997535578f +
4278     //       (0.735607626f + 0.252464424f * x) * x;
4279     //
4280     // error 0.0144103317, which is 6 bits
4281     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4282                              getF32Constant(DAG, 0x3e814304, dl));
4283     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4284                              getF32Constant(DAG, 0x3f3c50c8, dl));
4285     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4286     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4287                                          getF32Constant(DAG, 0x3f7f5e7e, dl));
4288   } else if (LimitFloatPrecision <= 12) {
4289     // For floating-point precision of 12:
4290     //
4291     //   TwoToFractionalPartOfX =
4292     //     0.999892986f +
4293     //       (0.696457318f +
4294     //         (0.224338339f + 0.792043434e-1f * x) * x) * x;
4295     //
4296     // error 0.000107046256, which is 13 to 14 bits
4297     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4298                              getF32Constant(DAG, 0x3da235e3, dl));
4299     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4300                              getF32Constant(DAG, 0x3e65b8f3, dl));
4301     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4302     SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4303                              getF32Constant(DAG, 0x3f324b07, dl));
4304     SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4305     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4306                                          getF32Constant(DAG, 0x3f7ff8fd, dl));
4307   } else { // LimitFloatPrecision <= 18
4308     // For floating-point precision of 18:
4309     //
4310     //   TwoToFractionalPartOfX =
4311     //     0.999999982f +
4312     //       (0.693148872f +
4313     //         (0.240227044f +
4314     //           (0.554906021e-1f +
4315     //             (0.961591928e-2f +
4316     //               (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
4317     // error 2.47208000*10^(-7), which is better than 18 bits
4318     SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4319                              getF32Constant(DAG, 0x3924b03e, dl));
4320     SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4321                              getF32Constant(DAG, 0x3ab24b87, dl));
4322     SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4323     SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4324                              getF32Constant(DAG, 0x3c1d8c17, dl));
4325     SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4326     SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4327                              getF32Constant(DAG, 0x3d634a1d, dl));
4328     SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4329     SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4330                              getF32Constant(DAG, 0x3e75fe14, dl));
4331     SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4332     SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
4333                               getF32Constant(DAG, 0x3f317234, dl));
4334     SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
4335     TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
4336                                          getF32Constant(DAG, 0x3f800000, dl));
4337   }
4338 
4339   // Add the exponent into the result in integer domain.
4340   SDValue t13 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, TwoToFractionalPartOfX);
4341   return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4342                      DAG.getNode(ISD::ADD, dl, MVT::i32, t13, IntegerPartOfX));
4343 }
4344 
4345 /// expandExp - Lower an exp intrinsic. Handles the special sequences for
4346 /// limited-precision mode.
4347 static SDValue expandExp(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4348                          const TargetLowering &TLI) {
4349   if (Op.getValueType() == MVT::f32 &&
4350       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4351 
4352     // Put the exponent in the right bit position for later addition to the
4353     // final result:
4354     //
4355     //   #define LOG2OFe 1.4426950f
4356     //   t0 = Op * LOG2OFe
4357 
4358     // TODO: What fast-math-flags should be set here?
4359     SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
4360                              getF32Constant(DAG, 0x3fb8aa3b, dl));
4361     return getLimitedPrecisionExp2(t0, dl, DAG);
4362   }
4363 
4364   // No special expansion.
4365   return DAG.getNode(ISD::FEXP, dl, Op.getValueType(), Op);
4366 }
4367 
4368 /// expandLog - Lower a log intrinsic. Handles the special sequences for
4369 /// limited-precision mode.
4370 static SDValue expandLog(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4371                          const TargetLowering &TLI) {
4372 
4373   // TODO: What fast-math-flags should be set on the floating-point nodes?
4374 
4375   if (Op.getValueType() == MVT::f32 &&
4376       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4377     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4378 
4379     // Scale the exponent by log(2) [0.69314718f].
4380     SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
4381     SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
4382                                         getF32Constant(DAG, 0x3f317218, dl));
4383 
4384     // Get the significand and build it into a floating-point number with
4385     // exponent of 1.
4386     SDValue X = GetSignificand(DAG, Op1, dl);
4387 
4388     SDValue LogOfMantissa;
4389     if (LimitFloatPrecision <= 6) {
4390       // For floating-point precision of 6:
4391       //
4392       //   LogofMantissa =
4393       //     -1.1609546f +
4394       //       (1.4034025f - 0.23903021f * x) * x;
4395       //
4396       // error 0.0034276066, which is better than 8 bits
4397       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4398                                getF32Constant(DAG, 0xbe74c456, dl));
4399       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4400                                getF32Constant(DAG, 0x3fb3a2b1, dl));
4401       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4402       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4403                                   getF32Constant(DAG, 0x3f949a29, dl));
4404     } else if (LimitFloatPrecision <= 12) {
4405       // For floating-point precision of 12:
4406       //
4407       //   LogOfMantissa =
4408       //     -1.7417939f +
4409       //       (2.8212026f +
4410       //         (-1.4699568f +
4411       //           (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
4412       //
4413       // error 0.000061011436, which is 14 bits
4414       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4415                                getF32Constant(DAG, 0xbd67b6d6, dl));
4416       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4417                                getF32Constant(DAG, 0x3ee4f4b8, dl));
4418       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4419       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4420                                getF32Constant(DAG, 0x3fbc278b, dl));
4421       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4422       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4423                                getF32Constant(DAG, 0x40348e95, dl));
4424       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4425       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4426                                   getF32Constant(DAG, 0x3fdef31a, dl));
4427     } else { // LimitFloatPrecision <= 18
4428       // For floating-point precision of 18:
4429       //
4430       //   LogOfMantissa =
4431       //     -2.1072184f +
4432       //       (4.2372794f +
4433       //         (-3.7029485f +
4434       //           (2.2781945f +
4435       //             (-0.87823314f +
4436       //               (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
4437       //
4438       // error 0.0000023660568, which is better than 18 bits
4439       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4440                                getF32Constant(DAG, 0xbc91e5ac, dl));
4441       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4442                                getF32Constant(DAG, 0x3e4350aa, dl));
4443       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4444       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4445                                getF32Constant(DAG, 0x3f60d3e3, dl));
4446       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4447       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4448                                getF32Constant(DAG, 0x4011cdf0, dl));
4449       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4450       SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4451                                getF32Constant(DAG, 0x406cfd1c, dl));
4452       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4453       SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4454                                getF32Constant(DAG, 0x408797cb, dl));
4455       SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4456       LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
4457                                   getF32Constant(DAG, 0x4006dcab, dl));
4458     }
4459 
4460     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, LogOfMantissa);
4461   }
4462 
4463   // No special expansion.
4464   return DAG.getNode(ISD::FLOG, dl, Op.getValueType(), Op);
4465 }
4466 
4467 /// expandLog2 - Lower a log2 intrinsic. Handles the special sequences for
4468 /// limited-precision mode.
4469 static SDValue expandLog2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4470                           const TargetLowering &TLI) {
4471 
4472   // TODO: What fast-math-flags should be set on the floating-point nodes?
4473 
4474   if (Op.getValueType() == MVT::f32 &&
4475       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4476     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4477 
4478     // Get the exponent.
4479     SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
4480 
4481     // Get the significand and build it into a floating-point number with
4482     // exponent of 1.
4483     SDValue X = GetSignificand(DAG, Op1, dl);
4484 
4485     // Different possible minimax approximations of significand in
4486     // floating-point for various degrees of accuracy over [1,2].
4487     SDValue Log2ofMantissa;
4488     if (LimitFloatPrecision <= 6) {
4489       // For floating-point precision of 6:
4490       //
4491       //   Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
4492       //
4493       // error 0.0049451742, which is more than 7 bits
4494       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4495                                getF32Constant(DAG, 0xbeb08fe0, dl));
4496       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4497                                getF32Constant(DAG, 0x40019463, dl));
4498       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4499       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4500                                    getF32Constant(DAG, 0x3fd6633d, dl));
4501     } else if (LimitFloatPrecision <= 12) {
4502       // For floating-point precision of 12:
4503       //
4504       //   Log2ofMantissa =
4505       //     -2.51285454f +
4506       //       (4.07009056f +
4507       //         (-2.12067489f +
4508       //           (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
4509       //
4510       // error 0.0000876136000, which is better than 13 bits
4511       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4512                                getF32Constant(DAG, 0xbda7262e, dl));
4513       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4514                                getF32Constant(DAG, 0x3f25280b, dl));
4515       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4516       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4517                                getF32Constant(DAG, 0x4007b923, dl));
4518       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4519       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4520                                getF32Constant(DAG, 0x40823e2f, dl));
4521       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4522       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4523                                    getF32Constant(DAG, 0x4020d29c, dl));
4524     } else { // LimitFloatPrecision <= 18
4525       // For floating-point precision of 18:
4526       //
4527       //   Log2ofMantissa =
4528       //     -3.0400495f +
4529       //       (6.1129976f +
4530       //         (-5.3420409f +
4531       //           (3.2865683f +
4532       //             (-1.2669343f +
4533       //               (0.27515199f -
4534       //                 0.25691327e-1f * x) * x) * x) * x) * x) * x;
4535       //
4536       // error 0.0000018516, which is better than 18 bits
4537       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4538                                getF32Constant(DAG, 0xbcd2769e, dl));
4539       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4540                                getF32Constant(DAG, 0x3e8ce0b9, dl));
4541       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4542       SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4543                                getF32Constant(DAG, 0x3fa22ae7, dl));
4544       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4545       SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
4546                                getF32Constant(DAG, 0x40525723, dl));
4547       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4548       SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
4549                                getF32Constant(DAG, 0x40aaf200, dl));
4550       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4551       SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
4552                                getF32Constant(DAG, 0x40c39dad, dl));
4553       SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
4554       Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
4555                                    getF32Constant(DAG, 0x4042902c, dl));
4556     }
4557 
4558     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa);
4559   }
4560 
4561   // No special expansion.
4562   return DAG.getNode(ISD::FLOG2, dl, Op.getValueType(), Op);
4563 }
4564 
4565 /// expandLog10 - Lower a log10 intrinsic. Handles the special sequences for
4566 /// limited-precision mode.
4567 static SDValue expandLog10(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4568                            const TargetLowering &TLI) {
4569 
4570   // TODO: What fast-math-flags should be set on the floating-point nodes?
4571 
4572   if (Op.getValueType() == MVT::f32 &&
4573       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4574     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
4575 
4576     // Scale the exponent by log10(2) [0.30102999f].
4577     SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
4578     SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
4579                                         getF32Constant(DAG, 0x3e9a209a, dl));
4580 
4581     // Get the significand and build it into a floating-point number with
4582     // exponent of 1.
4583     SDValue X = GetSignificand(DAG, Op1, dl);
4584 
4585     SDValue Log10ofMantissa;
4586     if (LimitFloatPrecision <= 6) {
4587       // For floating-point precision of 6:
4588       //
4589       //   Log10ofMantissa =
4590       //     -0.50419619f +
4591       //       (0.60948995f - 0.10380950f * x) * x;
4592       //
4593       // error 0.0014886165, which is 6 bits
4594       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4595                                getF32Constant(DAG, 0xbdd49a13, dl));
4596       SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
4597                                getF32Constant(DAG, 0x3f1c0789, dl));
4598       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4599       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
4600                                     getF32Constant(DAG, 0x3f011300, dl));
4601     } else if (LimitFloatPrecision <= 12) {
4602       // For floating-point precision of 12:
4603       //
4604       //   Log10ofMantissa =
4605       //     -0.64831180f +
4606       //       (0.91751397f +
4607       //         (-0.31664806f + 0.47637168e-1f * x) * x) * x;
4608       //
4609       // error 0.00019228036, which is better than 12 bits
4610       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4611                                getF32Constant(DAG, 0x3d431f31, dl));
4612       SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
4613                                getF32Constant(DAG, 0x3ea21fb2, dl));
4614       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4615       SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4616                                getF32Constant(DAG, 0x3f6ae232, dl));
4617       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4618       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
4619                                     getF32Constant(DAG, 0x3f25f7c3, dl));
4620     } else { // LimitFloatPrecision <= 18
4621       // For floating-point precision of 18:
4622       //
4623       //   Log10ofMantissa =
4624       //     -0.84299375f +
4625       //       (1.5327582f +
4626       //         (-1.0688956f +
4627       //           (0.49102474f +
4628       //             (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
4629       //
4630       // error 0.0000037995730, which is better than 18 bits
4631       SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
4632                                getF32Constant(DAG, 0x3c5d51ce, dl));
4633       SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
4634                                getF32Constant(DAG, 0x3e00685a, dl));
4635       SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
4636       SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
4637                                getF32Constant(DAG, 0x3efb6798, dl));
4638       SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
4639       SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
4640                                getF32Constant(DAG, 0x3f88d192, dl));
4641       SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
4642       SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
4643                                getF32Constant(DAG, 0x3fc4316c, dl));
4644       SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
4645       Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
4646                                     getF32Constant(DAG, 0x3f57ce70, dl));
4647     }
4648 
4649     return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa);
4650   }
4651 
4652   // No special expansion.
4653   return DAG.getNode(ISD::FLOG10, dl, Op.getValueType(), Op);
4654 }
4655 
4656 /// expandExp2 - Lower an exp2 intrinsic. Handles the special sequences for
4657 /// limited-precision mode.
4658 static SDValue expandExp2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG,
4659                           const TargetLowering &TLI) {
4660   if (Op.getValueType() == MVT::f32 &&
4661       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18)
4662     return getLimitedPrecisionExp2(Op, dl, DAG);
4663 
4664   // No special expansion.
4665   return DAG.getNode(ISD::FEXP2, dl, Op.getValueType(), Op);
4666 }
4667 
4668 /// visitPow - Lower a pow intrinsic. Handles the special sequences for
4669 /// limited-precision mode with x == 10.0f.
4670 static SDValue expandPow(const SDLoc &dl, SDValue LHS, SDValue RHS,
4671                          SelectionDAG &DAG, const TargetLowering &TLI) {
4672   bool IsExp10 = false;
4673   if (LHS.getValueType() == MVT::f32 && RHS.getValueType() == MVT::f32 &&
4674       LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
4675     if (ConstantFPSDNode *LHSC = dyn_cast<ConstantFPSDNode>(LHS)) {
4676       APFloat Ten(10.0f);
4677       IsExp10 = LHSC->isExactlyValue(Ten);
4678     }
4679   }
4680 
4681   // TODO: What fast-math-flags should be set on the FMUL node?
4682   if (IsExp10) {
4683     // Put the exponent in the right bit position for later addition to the
4684     // final result:
4685     //
4686     //   #define LOG2OF10 3.3219281f
4687     //   t0 = Op * LOG2OF10;
4688     SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, RHS,
4689                              getF32Constant(DAG, 0x40549a78, dl));
4690     return getLimitedPrecisionExp2(t0, dl, DAG);
4691   }
4692 
4693   // No special expansion.
4694   return DAG.getNode(ISD::FPOW, dl, LHS.getValueType(), LHS, RHS);
4695 }
4696 
4697 
4698 /// ExpandPowI - Expand a llvm.powi intrinsic.
4699 static SDValue ExpandPowI(const SDLoc &DL, SDValue LHS, SDValue RHS,
4700                           SelectionDAG &DAG) {
4701   // If RHS is a constant, we can expand this out to a multiplication tree,
4702   // otherwise we end up lowering to a call to __powidf2 (for example).  When
4703   // optimizing for size, we only want to do this if the expansion would produce
4704   // a small number of multiplies, otherwise we do the full expansion.
4705   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
4706     // Get the exponent as a positive value.
4707     unsigned Val = RHSC->getSExtValue();
4708     if ((int)Val < 0) Val = -Val;
4709 
4710     // powi(x, 0) -> 1.0
4711     if (Val == 0)
4712       return DAG.getConstantFP(1.0, DL, LHS.getValueType());
4713 
4714     const Function *F = DAG.getMachineFunction().getFunction();
4715     if (!F->optForSize() ||
4716         // If optimizing for size, don't insert too many multiplies.
4717         // This inserts up to 5 multiplies.
4718         countPopulation(Val) + Log2_32(Val) < 7) {
4719       // We use the simple binary decomposition method to generate the multiply
4720       // sequence.  There are more optimal ways to do this (for example,
4721       // powi(x,15) generates one more multiply than it should), but this has
4722       // the benefit of being both really simple and much better than a libcall.
4723       SDValue Res;  // Logically starts equal to 1.0
4724       SDValue CurSquare = LHS;
4725       // TODO: Intrinsics should have fast-math-flags that propagate to these
4726       // nodes.
4727       while (Val) {
4728         if (Val & 1) {
4729           if (Res.getNode())
4730             Res = DAG.getNode(ISD::FMUL, DL,Res.getValueType(), Res, CurSquare);
4731           else
4732             Res = CurSquare;  // 1.0*CurSquare.
4733         }
4734 
4735         CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(),
4736                                 CurSquare, CurSquare);
4737         Val >>= 1;
4738       }
4739 
4740       // If the original was negative, invert the result, producing 1/(x*x*x).
4741       if (RHSC->getSExtValue() < 0)
4742         Res = DAG.getNode(ISD::FDIV, DL, LHS.getValueType(),
4743                           DAG.getConstantFP(1.0, DL, LHS.getValueType()), Res);
4744       return Res;
4745     }
4746   }
4747 
4748   // Otherwise, expand to a libcall.
4749   return DAG.getNode(ISD::FPOWI, DL, LHS.getValueType(), LHS, RHS);
4750 }
4751 
4752 // getUnderlyingArgReg - Find underlying register used for a truncated or
4753 // bitcasted argument.
4754 static unsigned getUnderlyingArgReg(const SDValue &N) {
4755   switch (N.getOpcode()) {
4756   case ISD::CopyFromReg:
4757     return cast<RegisterSDNode>(N.getOperand(1))->getReg();
4758   case ISD::BITCAST:
4759   case ISD::AssertZext:
4760   case ISD::AssertSext:
4761   case ISD::TRUNCATE:
4762     return getUnderlyingArgReg(N.getOperand(0));
4763   default:
4764     return 0;
4765   }
4766 }
4767 
4768 /// If the DbgValueInst is a dbg_value of a function argument, create the
4769 /// corresponding DBG_VALUE machine instruction for it now.  At the end of
4770 /// instruction selection, they will be inserted to the entry BB.
4771 bool SelectionDAGBuilder::EmitFuncArgumentDbgValue(
4772     const Value *V, DILocalVariable *Variable, DIExpression *Expr,
4773     DILocation *DL, bool IsDbgDeclare, const SDValue &N) {
4774   const Argument *Arg = dyn_cast<Argument>(V);
4775   if (!Arg)
4776     return false;
4777 
4778   MachineFunction &MF = DAG.getMachineFunction();
4779   const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo();
4780 
4781   // Ignore inlined function arguments here.
4782   //
4783   // FIXME: Should we be checking DL->inlinedAt() to determine this?
4784   if (!Variable->getScope()->getSubprogram()->describes(MF.getFunction()))
4785     return false;
4786 
4787   bool IsIndirect = false;
4788   Optional<MachineOperand> Op;
4789   // Some arguments' frame index is recorded during argument lowering.
4790   int FI = FuncInfo.getArgumentFrameIndex(Arg);
4791   if (FI != INT_MAX)
4792     Op = MachineOperand::CreateFI(FI);
4793 
4794   if (!Op && N.getNode()) {
4795     unsigned Reg = getUnderlyingArgReg(N);
4796     if (Reg && TargetRegisterInfo::isVirtualRegister(Reg)) {
4797       MachineRegisterInfo &RegInfo = MF.getRegInfo();
4798       unsigned PR = RegInfo.getLiveInPhysReg(Reg);
4799       if (PR)
4800         Reg = PR;
4801     }
4802     if (Reg) {
4803       Op = MachineOperand::CreateReg(Reg, false);
4804       IsIndirect = IsDbgDeclare;
4805     }
4806   }
4807 
4808   if (!Op) {
4809     // Check if ValueMap has reg number.
4810     DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
4811     if (VMI != FuncInfo.ValueMap.end()) {
4812       auto *Ty = V->getType();
4813       const auto &TLI = DAG.getTargetLoweringInfo();
4814       EVT VT = TLI.getValueType(DAG.getDataLayout(), Ty);
4815       unsigned NumRegs = TLI.getNumRegisters(Ty->getContext(), VT);
4816       if (NumRegs > 1) {
4817         // The registers are guaranteed to be allocated in sequence.
4818         unsigned Offset = 0;
4819         MVT RegisterVT = TLI.getRegisterType(Ty->getContext(), VT);
4820         unsigned RegisterSize = RegisterVT.getSizeInBits();
4821         for (unsigned I = 0; I != NumRegs; ++I) {
4822           Op = MachineOperand::CreateReg(VMI->second + I, false);
4823           auto *FragmentExpr = DIExpression::createFragmentExpression(
4824               Expr, Offset, RegisterSize);
4825           FuncInfo.ArgDbgValues.push_back(
4826               BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsDbgDeclare,
4827                       Op->getReg(), Variable, FragmentExpr));
4828           Offset += RegisterSize;
4829         }
4830         return true;
4831       }
4832       Op = MachineOperand::CreateReg(VMI->second, false);
4833       IsIndirect = IsDbgDeclare;
4834     }
4835   }
4836 
4837   if (!Op && N.getNode())
4838     // Check if frame index is available.
4839     if (LoadSDNode *LNode = dyn_cast<LoadSDNode>(N.getNode()))
4840       if (FrameIndexSDNode *FINode =
4841           dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
4842         Op = MachineOperand::CreateFI(FINode->getIndex());
4843 
4844   if (!Op)
4845     return false;
4846 
4847   assert(Variable->isValidLocationForIntrinsic(DL) &&
4848          "Expected inlined-at fields to agree");
4849   if (Op->isReg())
4850     FuncInfo.ArgDbgValues.push_back(
4851         BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsIndirect,
4852                 Op->getReg(), Variable, Expr));
4853   else
4854     FuncInfo.ArgDbgValues.push_back(
4855         BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE))
4856             .add(*Op)
4857             .addImm(0)
4858             .addMetadata(Variable)
4859             .addMetadata(Expr));
4860 
4861   return true;
4862 }
4863 
4864 /// Return the appropriate SDDbgValue based on N.
4865 SDDbgValue *SelectionDAGBuilder::getDbgValue(SDValue N,
4866                                              DILocalVariable *Variable,
4867                                              DIExpression *Expr,
4868                                              const DebugLoc &dl,
4869                                              unsigned DbgSDNodeOrder) {
4870   if (auto *FISDN = dyn_cast<FrameIndexSDNode>(N.getNode())) {
4871     // Construct a FrameIndexDbgValue for FrameIndexSDNodes so we can describe
4872     // stack slot locations as such instead of as indirectly addressed
4873     // locations.
4874     return DAG.getFrameIndexDbgValue(Variable, Expr, FISDN->getIndex(), dl,
4875                                      DbgSDNodeOrder);
4876   }
4877   return DAG.getDbgValue(Variable, Expr, N.getNode(), N.getResNo(), false, dl,
4878                          DbgSDNodeOrder);
4879 }
4880 
4881 // VisualStudio defines setjmp as _setjmp
4882 #if defined(_MSC_VER) && defined(setjmp) && \
4883                          !defined(setjmp_undefined_for_msvc)
4884 #  pragma push_macro("setjmp")
4885 #  undef setjmp
4886 #  define setjmp_undefined_for_msvc
4887 #endif
4888 
4889 /// Lower the call to the specified intrinsic function. If we want to emit this
4890 /// as a call to a named external function, return the name. Otherwise, lower it
4891 /// and return null.
4892 const char *
4893 SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
4894   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4895   SDLoc sdl = getCurSDLoc();
4896   DebugLoc dl = getCurDebugLoc();
4897   SDValue Res;
4898 
4899   switch (Intrinsic) {
4900   default:
4901     // By default, turn this into a target intrinsic node.
4902     visitTargetIntrinsic(I, Intrinsic);
4903     return nullptr;
4904   case Intrinsic::vastart:  visitVAStart(I); return nullptr;
4905   case Intrinsic::vaend:    visitVAEnd(I); return nullptr;
4906   case Intrinsic::vacopy:   visitVACopy(I); return nullptr;
4907   case Intrinsic::returnaddress:
4908     setValue(&I, DAG.getNode(ISD::RETURNADDR, sdl,
4909                              TLI.getPointerTy(DAG.getDataLayout()),
4910                              getValue(I.getArgOperand(0))));
4911     return nullptr;
4912   case Intrinsic::addressofreturnaddress:
4913     setValue(&I, DAG.getNode(ISD::ADDROFRETURNADDR, sdl,
4914                              TLI.getPointerTy(DAG.getDataLayout())));
4915     return nullptr;
4916   case Intrinsic::frameaddress:
4917     setValue(&I, DAG.getNode(ISD::FRAMEADDR, sdl,
4918                              TLI.getPointerTy(DAG.getDataLayout()),
4919                              getValue(I.getArgOperand(0))));
4920     return nullptr;
4921   case Intrinsic::read_register: {
4922     Value *Reg = I.getArgOperand(0);
4923     SDValue Chain = getRoot();
4924     SDValue RegName =
4925         DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata()));
4926     EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
4927     Res = DAG.getNode(ISD::READ_REGISTER, sdl,
4928       DAG.getVTList(VT, MVT::Other), Chain, RegName);
4929     setValue(&I, Res);
4930     DAG.setRoot(Res.getValue(1));
4931     return nullptr;
4932   }
4933   case Intrinsic::write_register: {
4934     Value *Reg = I.getArgOperand(0);
4935     Value *RegValue = I.getArgOperand(1);
4936     SDValue Chain = getRoot();
4937     SDValue RegName =
4938         DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata()));
4939     DAG.setRoot(DAG.getNode(ISD::WRITE_REGISTER, sdl, MVT::Other, Chain,
4940                             RegName, getValue(RegValue)));
4941     return nullptr;
4942   }
4943   case Intrinsic::setjmp:
4944     return &"_setjmp"[!TLI.usesUnderscoreSetJmp()];
4945   case Intrinsic::longjmp:
4946     return &"_longjmp"[!TLI.usesUnderscoreLongJmp()];
4947   case Intrinsic::memcpy: {
4948     SDValue Op1 = getValue(I.getArgOperand(0));
4949     SDValue Op2 = getValue(I.getArgOperand(1));
4950     SDValue Op3 = getValue(I.getArgOperand(2));
4951     unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
4952     if (!Align)
4953       Align = 1; // @llvm.memcpy defines 0 and 1 to both mean no alignment.
4954     bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
4955     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
4956     SDValue MC = DAG.getMemcpy(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
4957                                false, isTC,
4958                                MachinePointerInfo(I.getArgOperand(0)),
4959                                MachinePointerInfo(I.getArgOperand(1)));
4960     updateDAGForMaybeTailCall(MC);
4961     return nullptr;
4962   }
4963   case Intrinsic::memset: {
4964     SDValue Op1 = getValue(I.getArgOperand(0));
4965     SDValue Op2 = getValue(I.getArgOperand(1));
4966     SDValue Op3 = getValue(I.getArgOperand(2));
4967     unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
4968     if (!Align)
4969       Align = 1; // @llvm.memset defines 0 and 1 to both mean no alignment.
4970     bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
4971     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
4972     SDValue MS = DAG.getMemset(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
4973                                isTC, MachinePointerInfo(I.getArgOperand(0)));
4974     updateDAGForMaybeTailCall(MS);
4975     return nullptr;
4976   }
4977   case Intrinsic::memmove: {
4978     SDValue Op1 = getValue(I.getArgOperand(0));
4979     SDValue Op2 = getValue(I.getArgOperand(1));
4980     SDValue Op3 = getValue(I.getArgOperand(2));
4981     unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue();
4982     if (!Align)
4983       Align = 1; // @llvm.memmove defines 0 and 1 to both mean no alignment.
4984     bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue();
4985     bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
4986     SDValue MM = DAG.getMemmove(getRoot(), sdl, Op1, Op2, Op3, Align, isVol,
4987                                 isTC, MachinePointerInfo(I.getArgOperand(0)),
4988                                 MachinePointerInfo(I.getArgOperand(1)));
4989     updateDAGForMaybeTailCall(MM);
4990     return nullptr;
4991   }
4992   case Intrinsic::memcpy_element_unordered_atomic: {
4993     const ElementUnorderedAtomicMemCpyInst &MI =
4994         cast<ElementUnorderedAtomicMemCpyInst>(I);
4995     SDValue Dst = getValue(MI.getRawDest());
4996     SDValue Src = getValue(MI.getRawSource());
4997     SDValue Length = getValue(MI.getLength());
4998 
4999     // Emit a library call.
5000     TargetLowering::ArgListTy Args;
5001     TargetLowering::ArgListEntry Entry;
5002     Entry.Ty = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
5003     Entry.Node = Dst;
5004     Args.push_back(Entry);
5005 
5006     Entry.Node = Src;
5007     Args.push_back(Entry);
5008 
5009     Entry.Ty = MI.getLength()->getType();
5010     Entry.Node = Length;
5011     Args.push_back(Entry);
5012 
5013     uint64_t ElementSizeConstant = MI.getElementSizeInBytes();
5014     RTLIB::Libcall LibraryCall =
5015         RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(ElementSizeConstant);
5016     if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
5017       report_fatal_error("Unsupported element size");
5018 
5019     TargetLowering::CallLoweringInfo CLI(DAG);
5020     CLI.setDebugLoc(sdl).setChain(getRoot()).setLibCallee(
5021         TLI.getLibcallCallingConv(LibraryCall),
5022         Type::getVoidTy(*DAG.getContext()),
5023         DAG.getExternalSymbol(TLI.getLibcallName(LibraryCall),
5024                               TLI.getPointerTy(DAG.getDataLayout())),
5025         std::move(Args));
5026 
5027     std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
5028     DAG.setRoot(CallResult.second);
5029     return nullptr;
5030   }
5031   case Intrinsic::memmove_element_unordered_atomic: {
5032     auto &MI = cast<ElementUnorderedAtomicMemMoveInst>(I);
5033     SDValue Dst = getValue(MI.getRawDest());
5034     SDValue Src = getValue(MI.getRawSource());
5035     SDValue Length = getValue(MI.getLength());
5036 
5037     // Emit a library call.
5038     TargetLowering::ArgListTy Args;
5039     TargetLowering::ArgListEntry Entry;
5040     Entry.Ty = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
5041     Entry.Node = Dst;
5042     Args.push_back(Entry);
5043 
5044     Entry.Node = Src;
5045     Args.push_back(Entry);
5046 
5047     Entry.Ty = MI.getLength()->getType();
5048     Entry.Node = Length;
5049     Args.push_back(Entry);
5050 
5051     uint64_t ElementSizeConstant = MI.getElementSizeInBytes();
5052     RTLIB::Libcall LibraryCall =
5053         RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(ElementSizeConstant);
5054     if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
5055       report_fatal_error("Unsupported element size");
5056 
5057     TargetLowering::CallLoweringInfo CLI(DAG);
5058     CLI.setDebugLoc(sdl).setChain(getRoot()).setLibCallee(
5059         TLI.getLibcallCallingConv(LibraryCall),
5060         Type::getVoidTy(*DAG.getContext()),
5061         DAG.getExternalSymbol(TLI.getLibcallName(LibraryCall),
5062                               TLI.getPointerTy(DAG.getDataLayout())),
5063         std::move(Args));
5064 
5065     std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
5066     DAG.setRoot(CallResult.second);
5067     return nullptr;
5068   }
5069   case Intrinsic::memset_element_unordered_atomic: {
5070     auto &MI = cast<ElementUnorderedAtomicMemSetInst>(I);
5071     SDValue Dst = getValue(MI.getRawDest());
5072     SDValue Val = getValue(MI.getValue());
5073     SDValue Length = getValue(MI.getLength());
5074 
5075     // Emit a library call.
5076     TargetLowering::ArgListTy Args;
5077     TargetLowering::ArgListEntry Entry;
5078     Entry.Ty = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
5079     Entry.Node = Dst;
5080     Args.push_back(Entry);
5081 
5082     Entry.Ty = Type::getInt8Ty(*DAG.getContext());
5083     Entry.Node = Val;
5084     Args.push_back(Entry);
5085 
5086     Entry.Ty = MI.getLength()->getType();
5087     Entry.Node = Length;
5088     Args.push_back(Entry);
5089 
5090     uint64_t ElementSizeConstant = MI.getElementSizeInBytes();
5091     RTLIB::Libcall LibraryCall =
5092         RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(ElementSizeConstant);
5093     if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
5094       report_fatal_error("Unsupported element size");
5095 
5096     TargetLowering::CallLoweringInfo CLI(DAG);
5097     CLI.setDebugLoc(sdl).setChain(getRoot()).setLibCallee(
5098         TLI.getLibcallCallingConv(LibraryCall),
5099         Type::getVoidTy(*DAG.getContext()),
5100         DAG.getExternalSymbol(TLI.getLibcallName(LibraryCall),
5101                               TLI.getPointerTy(DAG.getDataLayout())),
5102         std::move(Args));
5103 
5104     std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
5105     DAG.setRoot(CallResult.second);
5106     return nullptr;
5107   }
5108   case Intrinsic::dbg_declare: {
5109     const DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
5110     DILocalVariable *Variable = DI.getVariable();
5111     DIExpression *Expression = DI.getExpression();
5112     const Value *Address = DI.getAddress();
5113     assert(Variable && "Missing variable");
5114     if (!Address) {
5115       DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
5116       return nullptr;
5117     }
5118 
5119     // Check if address has undef value.
5120     if (isa<UndefValue>(Address) ||
5121         (Address->use_empty() && !isa<Argument>(Address))) {
5122       DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
5123       return nullptr;
5124     }
5125 
5126     // Static allocas are handled more efficiently in the variable frame index
5127     // side table.
5128     if (const auto *AI =
5129             dyn_cast<AllocaInst>(Address->stripInBoundsConstantOffsets()))
5130       if (AI->isStaticAlloca() && FuncInfo.StaticAllocaMap.count(AI))
5131         return nullptr;
5132 
5133     // Byval arguments with frame indices were already handled after argument
5134     // lowering and before isel.
5135     if (const auto *Arg =
5136             dyn_cast<Argument>(Address->stripInBoundsConstantOffsets()))
5137       if (FuncInfo.getArgumentFrameIndex(Arg) != INT_MAX)
5138         return nullptr;
5139 
5140     SDValue &N = NodeMap[Address];
5141     if (!N.getNode() && isa<Argument>(Address))
5142       // Check unused arguments map.
5143       N = UnusedArgNodeMap[Address];
5144     SDDbgValue *SDV;
5145     if (N.getNode()) {
5146       if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
5147         Address = BCI->getOperand(0);
5148       // Parameters are handled specially.
5149       bool isParameter = Variable->isParameter() || isa<Argument>(Address);
5150       auto FINode = dyn_cast<FrameIndexSDNode>(N.getNode());
5151       if (isParameter && FINode) {
5152         // Byval parameter. We have a frame index at this point.
5153         SDV = DAG.getFrameIndexDbgValue(Variable, Expression,
5154                                         FINode->getIndex(), dl, SDNodeOrder);
5155       } else if (isa<Argument>(Address)) {
5156         // Address is an argument, so try to emit its dbg value using
5157         // virtual register info from the FuncInfo.ValueMap.
5158         EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, true, N);
5159         return nullptr;
5160       } else {
5161         SDV = DAG.getDbgValue(Variable, Expression, N.getNode(), N.getResNo(),
5162                               true, dl, SDNodeOrder);
5163       }
5164       DAG.AddDbgValue(SDV, N.getNode(), isParameter);
5165     } else {
5166       // If Address is an argument then try to emit its dbg value using
5167       // virtual register info from the FuncInfo.ValueMap.
5168       if (!EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, true,
5169                                     N)) {
5170         DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
5171       }
5172     }
5173     return nullptr;
5174   }
5175   case Intrinsic::dbg_value: {
5176     const DbgValueInst &DI = cast<DbgValueInst>(I);
5177     assert(DI.getVariable() && "Missing variable");
5178 
5179     DILocalVariable *Variable = DI.getVariable();
5180     DIExpression *Expression = DI.getExpression();
5181     const Value *V = DI.getValue();
5182     if (!V)
5183       return nullptr;
5184 
5185     SDDbgValue *SDV;
5186     if (isa<ConstantInt>(V) || isa<ConstantFP>(V) || isa<UndefValue>(V)) {
5187       SDV = DAG.getConstantDbgValue(Variable, Expression, V, dl, SDNodeOrder);
5188       DAG.AddDbgValue(SDV, nullptr, false);
5189       return nullptr;
5190     }
5191 
5192     // Do not use getValue() in here; we don't want to generate code at
5193     // this point if it hasn't been done yet.
5194     SDValue N = NodeMap[V];
5195     if (!N.getNode() && isa<Argument>(V)) // Check unused arguments map.
5196       N = UnusedArgNodeMap[V];
5197     if (N.getNode()) {
5198       if (EmitFuncArgumentDbgValue(V, Variable, Expression, dl, false, N))
5199         return nullptr;
5200       SDV = getDbgValue(N, Variable, Expression, dl, SDNodeOrder);
5201       DAG.AddDbgValue(SDV, N.getNode(), false);
5202       return nullptr;
5203     }
5204 
5205     if (!V->use_empty() ) {
5206       // Do not call getValue(V) yet, as we don't want to generate code.
5207       // Remember it for later.
5208       DanglingDebugInfo DDI(&DI, dl, SDNodeOrder);
5209       DanglingDebugInfoMap[V] = DDI;
5210       return nullptr;
5211     }
5212 
5213     DEBUG(dbgs() << "Dropping debug location info for:\n  " << DI << "\n");
5214     DEBUG(dbgs() << "  Last seen at:\n    " << *V << "\n");
5215     return nullptr;
5216   }
5217 
5218   case Intrinsic::eh_typeid_for: {
5219     // Find the type id for the given typeinfo.
5220     GlobalValue *GV = ExtractTypeInfo(I.getArgOperand(0));
5221     unsigned TypeID = DAG.getMachineFunction().getTypeIDFor(GV);
5222     Res = DAG.getConstant(TypeID, sdl, MVT::i32);
5223     setValue(&I, Res);
5224     return nullptr;
5225   }
5226 
5227   case Intrinsic::eh_return_i32:
5228   case Intrinsic::eh_return_i64:
5229     DAG.getMachineFunction().setCallsEHReturn(true);
5230     DAG.setRoot(DAG.getNode(ISD::EH_RETURN, sdl,
5231                             MVT::Other,
5232                             getControlRoot(),
5233                             getValue(I.getArgOperand(0)),
5234                             getValue(I.getArgOperand(1))));
5235     return nullptr;
5236   case Intrinsic::eh_unwind_init:
5237     DAG.getMachineFunction().setCallsUnwindInit(true);
5238     return nullptr;
5239   case Intrinsic::eh_dwarf_cfa: {
5240     setValue(&I, DAG.getNode(ISD::EH_DWARF_CFA, sdl,
5241                              TLI.getPointerTy(DAG.getDataLayout()),
5242                              getValue(I.getArgOperand(0))));
5243     return nullptr;
5244   }
5245   case Intrinsic::eh_sjlj_callsite: {
5246     MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
5247     ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(0));
5248     assert(CI && "Non-constant call site value in eh.sjlj.callsite!");
5249     assert(MMI.getCurrentCallSite() == 0 && "Overlapping call sites!");
5250 
5251     MMI.setCurrentCallSite(CI->getZExtValue());
5252     return nullptr;
5253   }
5254   case Intrinsic::eh_sjlj_functioncontext: {
5255     // Get and store the index of the function context.
5256     MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
5257     AllocaInst *FnCtx =
5258       cast<AllocaInst>(I.getArgOperand(0)->stripPointerCasts());
5259     int FI = FuncInfo.StaticAllocaMap[FnCtx];
5260     MFI.setFunctionContextIndex(FI);
5261     return nullptr;
5262   }
5263   case Intrinsic::eh_sjlj_setjmp: {
5264     SDValue Ops[2];
5265     Ops[0] = getRoot();
5266     Ops[1] = getValue(I.getArgOperand(0));
5267     SDValue Op = DAG.getNode(ISD::EH_SJLJ_SETJMP, sdl,
5268                              DAG.getVTList(MVT::i32, MVT::Other), Ops);
5269     setValue(&I, Op.getValue(0));
5270     DAG.setRoot(Op.getValue(1));
5271     return nullptr;
5272   }
5273   case Intrinsic::eh_sjlj_longjmp: {
5274     DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_LONGJMP, sdl, MVT::Other,
5275                             getRoot(), getValue(I.getArgOperand(0))));
5276     return nullptr;
5277   }
5278   case Intrinsic::eh_sjlj_setup_dispatch: {
5279     DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_SETUP_DISPATCH, sdl, MVT::Other,
5280                             getRoot()));
5281     return nullptr;
5282   }
5283 
5284   case Intrinsic::masked_gather:
5285     visitMaskedGather(I);
5286     return nullptr;
5287   case Intrinsic::masked_load:
5288     visitMaskedLoad(I);
5289     return nullptr;
5290   case Intrinsic::masked_scatter:
5291     visitMaskedScatter(I);
5292     return nullptr;
5293   case Intrinsic::masked_store:
5294     visitMaskedStore(I);
5295     return nullptr;
5296   case Intrinsic::masked_expandload:
5297     visitMaskedLoad(I, true /* IsExpanding */);
5298     return nullptr;
5299   case Intrinsic::masked_compressstore:
5300     visitMaskedStore(I, true /* IsCompressing */);
5301     return nullptr;
5302   case Intrinsic::x86_mmx_pslli_w:
5303   case Intrinsic::x86_mmx_pslli_d:
5304   case Intrinsic::x86_mmx_pslli_q:
5305   case Intrinsic::x86_mmx_psrli_w:
5306   case Intrinsic::x86_mmx_psrli_d:
5307   case Intrinsic::x86_mmx_psrli_q:
5308   case Intrinsic::x86_mmx_psrai_w:
5309   case Intrinsic::x86_mmx_psrai_d: {
5310     SDValue ShAmt = getValue(I.getArgOperand(1));
5311     if (isa<ConstantSDNode>(ShAmt)) {
5312       visitTargetIntrinsic(I, Intrinsic);
5313       return nullptr;
5314     }
5315     unsigned NewIntrinsic = 0;
5316     EVT ShAmtVT = MVT::v2i32;
5317     switch (Intrinsic) {
5318     case Intrinsic::x86_mmx_pslli_w:
5319       NewIntrinsic = Intrinsic::x86_mmx_psll_w;
5320       break;
5321     case Intrinsic::x86_mmx_pslli_d:
5322       NewIntrinsic = Intrinsic::x86_mmx_psll_d;
5323       break;
5324     case Intrinsic::x86_mmx_pslli_q:
5325       NewIntrinsic = Intrinsic::x86_mmx_psll_q;
5326       break;
5327     case Intrinsic::x86_mmx_psrli_w:
5328       NewIntrinsic = Intrinsic::x86_mmx_psrl_w;
5329       break;
5330     case Intrinsic::x86_mmx_psrli_d:
5331       NewIntrinsic = Intrinsic::x86_mmx_psrl_d;
5332       break;
5333     case Intrinsic::x86_mmx_psrli_q:
5334       NewIntrinsic = Intrinsic::x86_mmx_psrl_q;
5335       break;
5336     case Intrinsic::x86_mmx_psrai_w:
5337       NewIntrinsic = Intrinsic::x86_mmx_psra_w;
5338       break;
5339     case Intrinsic::x86_mmx_psrai_d:
5340       NewIntrinsic = Intrinsic::x86_mmx_psra_d;
5341       break;
5342     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5343     }
5344 
5345     // The vector shift intrinsics with scalars uses 32b shift amounts but
5346     // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
5347     // to be zero.
5348     // We must do this early because v2i32 is not a legal type.
5349     SDValue ShOps[2];
5350     ShOps[0] = ShAmt;
5351     ShOps[1] = DAG.getConstant(0, sdl, MVT::i32);
5352     ShAmt =  DAG.getBuildVector(ShAmtVT, sdl, ShOps);
5353     EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType());
5354     ShAmt = DAG.getNode(ISD::BITCAST, sdl, DestVT, ShAmt);
5355     Res = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, sdl, DestVT,
5356                        DAG.getConstant(NewIntrinsic, sdl, MVT::i32),
5357                        getValue(I.getArgOperand(0)), ShAmt);
5358     setValue(&I, Res);
5359     return nullptr;
5360   }
5361   case Intrinsic::powi:
5362     setValue(&I, ExpandPowI(sdl, getValue(I.getArgOperand(0)),
5363                             getValue(I.getArgOperand(1)), DAG));
5364     return nullptr;
5365   case Intrinsic::log:
5366     setValue(&I, expandLog(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5367     return nullptr;
5368   case Intrinsic::log2:
5369     setValue(&I, expandLog2(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5370     return nullptr;
5371   case Intrinsic::log10:
5372     setValue(&I, expandLog10(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5373     return nullptr;
5374   case Intrinsic::exp:
5375     setValue(&I, expandExp(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5376     return nullptr;
5377   case Intrinsic::exp2:
5378     setValue(&I, expandExp2(sdl, getValue(I.getArgOperand(0)), DAG, TLI));
5379     return nullptr;
5380   case Intrinsic::pow:
5381     setValue(&I, expandPow(sdl, getValue(I.getArgOperand(0)),
5382                            getValue(I.getArgOperand(1)), DAG, TLI));
5383     return nullptr;
5384   case Intrinsic::sqrt:
5385   case Intrinsic::fabs:
5386   case Intrinsic::sin:
5387   case Intrinsic::cos:
5388   case Intrinsic::floor:
5389   case Intrinsic::ceil:
5390   case Intrinsic::trunc:
5391   case Intrinsic::rint:
5392   case Intrinsic::nearbyint:
5393   case Intrinsic::round:
5394   case Intrinsic::canonicalize: {
5395     unsigned Opcode;
5396     switch (Intrinsic) {
5397     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5398     case Intrinsic::sqrt:      Opcode = ISD::FSQRT;      break;
5399     case Intrinsic::fabs:      Opcode = ISD::FABS;       break;
5400     case Intrinsic::sin:       Opcode = ISD::FSIN;       break;
5401     case Intrinsic::cos:       Opcode = ISD::FCOS;       break;
5402     case Intrinsic::floor:     Opcode = ISD::FFLOOR;     break;
5403     case Intrinsic::ceil:      Opcode = ISD::FCEIL;      break;
5404     case Intrinsic::trunc:     Opcode = ISD::FTRUNC;     break;
5405     case Intrinsic::rint:      Opcode = ISD::FRINT;      break;
5406     case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT; break;
5407     case Intrinsic::round:     Opcode = ISD::FROUND;     break;
5408     case Intrinsic::canonicalize: Opcode = ISD::FCANONICALIZE; break;
5409     }
5410 
5411     setValue(&I, DAG.getNode(Opcode, sdl,
5412                              getValue(I.getArgOperand(0)).getValueType(),
5413                              getValue(I.getArgOperand(0))));
5414     return nullptr;
5415   }
5416   case Intrinsic::minnum: {
5417     auto VT = getValue(I.getArgOperand(0)).getValueType();
5418     unsigned Opc =
5419         I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT)
5420             ? ISD::FMINNAN
5421             : ISD::FMINNUM;
5422     setValue(&I, DAG.getNode(Opc, sdl, VT,
5423                              getValue(I.getArgOperand(0)),
5424                              getValue(I.getArgOperand(1))));
5425     return nullptr;
5426   }
5427   case Intrinsic::maxnum: {
5428     auto VT = getValue(I.getArgOperand(0)).getValueType();
5429     unsigned Opc =
5430         I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT)
5431             ? ISD::FMAXNAN
5432             : ISD::FMAXNUM;
5433     setValue(&I, DAG.getNode(Opc, sdl, VT,
5434                              getValue(I.getArgOperand(0)),
5435                              getValue(I.getArgOperand(1))));
5436     return nullptr;
5437   }
5438   case Intrinsic::copysign:
5439     setValue(&I, DAG.getNode(ISD::FCOPYSIGN, sdl,
5440                              getValue(I.getArgOperand(0)).getValueType(),
5441                              getValue(I.getArgOperand(0)),
5442                              getValue(I.getArgOperand(1))));
5443     return nullptr;
5444   case Intrinsic::fma:
5445     setValue(&I, DAG.getNode(ISD::FMA, sdl,
5446                              getValue(I.getArgOperand(0)).getValueType(),
5447                              getValue(I.getArgOperand(0)),
5448                              getValue(I.getArgOperand(1)),
5449                              getValue(I.getArgOperand(2))));
5450     return nullptr;
5451   case Intrinsic::experimental_constrained_fadd:
5452   case Intrinsic::experimental_constrained_fsub:
5453   case Intrinsic::experimental_constrained_fmul:
5454   case Intrinsic::experimental_constrained_fdiv:
5455   case Intrinsic::experimental_constrained_frem:
5456   case Intrinsic::experimental_constrained_fma:
5457   case Intrinsic::experimental_constrained_sqrt:
5458   case Intrinsic::experimental_constrained_pow:
5459   case Intrinsic::experimental_constrained_powi:
5460   case Intrinsic::experimental_constrained_sin:
5461   case Intrinsic::experimental_constrained_cos:
5462   case Intrinsic::experimental_constrained_exp:
5463   case Intrinsic::experimental_constrained_exp2:
5464   case Intrinsic::experimental_constrained_log:
5465   case Intrinsic::experimental_constrained_log10:
5466   case Intrinsic::experimental_constrained_log2:
5467   case Intrinsic::experimental_constrained_rint:
5468   case Intrinsic::experimental_constrained_nearbyint:
5469     visitConstrainedFPIntrinsic(cast<ConstrainedFPIntrinsic>(I));
5470     return nullptr;
5471   case Intrinsic::fmuladd: {
5472     EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
5473     if (TM.Options.AllowFPOpFusion != FPOpFusion::Strict &&
5474         TLI.isFMAFasterThanFMulAndFAdd(VT)) {
5475       setValue(&I, DAG.getNode(ISD::FMA, sdl,
5476                                getValue(I.getArgOperand(0)).getValueType(),
5477                                getValue(I.getArgOperand(0)),
5478                                getValue(I.getArgOperand(1)),
5479                                getValue(I.getArgOperand(2))));
5480     } else {
5481       // TODO: Intrinsic calls should have fast-math-flags.
5482       SDValue Mul = DAG.getNode(ISD::FMUL, sdl,
5483                                 getValue(I.getArgOperand(0)).getValueType(),
5484                                 getValue(I.getArgOperand(0)),
5485                                 getValue(I.getArgOperand(1)));
5486       SDValue Add = DAG.getNode(ISD::FADD, sdl,
5487                                 getValue(I.getArgOperand(0)).getValueType(),
5488                                 Mul,
5489                                 getValue(I.getArgOperand(2)));
5490       setValue(&I, Add);
5491     }
5492     return nullptr;
5493   }
5494   case Intrinsic::convert_to_fp16:
5495     setValue(&I, DAG.getNode(ISD::BITCAST, sdl, MVT::i16,
5496                              DAG.getNode(ISD::FP_ROUND, sdl, MVT::f16,
5497                                          getValue(I.getArgOperand(0)),
5498                                          DAG.getTargetConstant(0, sdl,
5499                                                                MVT::i32))));
5500     return nullptr;
5501   case Intrinsic::convert_from_fp16:
5502     setValue(&I, DAG.getNode(ISD::FP_EXTEND, sdl,
5503                              TLI.getValueType(DAG.getDataLayout(), I.getType()),
5504                              DAG.getNode(ISD::BITCAST, sdl, MVT::f16,
5505                                          getValue(I.getArgOperand(0)))));
5506     return nullptr;
5507   case Intrinsic::pcmarker: {
5508     SDValue Tmp = getValue(I.getArgOperand(0));
5509     DAG.setRoot(DAG.getNode(ISD::PCMARKER, sdl, MVT::Other, getRoot(), Tmp));
5510     return nullptr;
5511   }
5512   case Intrinsic::readcyclecounter: {
5513     SDValue Op = getRoot();
5514     Res = DAG.getNode(ISD::READCYCLECOUNTER, sdl,
5515                       DAG.getVTList(MVT::i64, MVT::Other), Op);
5516     setValue(&I, Res);
5517     DAG.setRoot(Res.getValue(1));
5518     return nullptr;
5519   }
5520   case Intrinsic::bitreverse:
5521     setValue(&I, DAG.getNode(ISD::BITREVERSE, sdl,
5522                              getValue(I.getArgOperand(0)).getValueType(),
5523                              getValue(I.getArgOperand(0))));
5524     return nullptr;
5525   case Intrinsic::bswap:
5526     setValue(&I, DAG.getNode(ISD::BSWAP, sdl,
5527                              getValue(I.getArgOperand(0)).getValueType(),
5528                              getValue(I.getArgOperand(0))));
5529     return nullptr;
5530   case Intrinsic::cttz: {
5531     SDValue Arg = getValue(I.getArgOperand(0));
5532     ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
5533     EVT Ty = Arg.getValueType();
5534     setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTTZ : ISD::CTTZ_ZERO_UNDEF,
5535                              sdl, Ty, Arg));
5536     return nullptr;
5537   }
5538   case Intrinsic::ctlz: {
5539     SDValue Arg = getValue(I.getArgOperand(0));
5540     ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1));
5541     EVT Ty = Arg.getValueType();
5542     setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTLZ : ISD::CTLZ_ZERO_UNDEF,
5543                              sdl, Ty, Arg));
5544     return nullptr;
5545   }
5546   case Intrinsic::ctpop: {
5547     SDValue Arg = getValue(I.getArgOperand(0));
5548     EVT Ty = Arg.getValueType();
5549     setValue(&I, DAG.getNode(ISD::CTPOP, sdl, Ty, Arg));
5550     return nullptr;
5551   }
5552   case Intrinsic::stacksave: {
5553     SDValue Op = getRoot();
5554     Res = DAG.getNode(
5555         ISD::STACKSAVE, sdl,
5556         DAG.getVTList(TLI.getPointerTy(DAG.getDataLayout()), MVT::Other), Op);
5557     setValue(&I, Res);
5558     DAG.setRoot(Res.getValue(1));
5559     return nullptr;
5560   }
5561   case Intrinsic::stackrestore: {
5562     Res = getValue(I.getArgOperand(0));
5563     DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, sdl, MVT::Other, getRoot(), Res));
5564     return nullptr;
5565   }
5566   case Intrinsic::get_dynamic_area_offset: {
5567     SDValue Op = getRoot();
5568     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5569     EVT ResTy = TLI.getValueType(DAG.getDataLayout(), I.getType());
5570     // Result type for @llvm.get.dynamic.area.offset should match PtrTy for
5571     // target.
5572     if (PtrTy != ResTy)
5573       report_fatal_error("Wrong result type for @llvm.get.dynamic.area.offset"
5574                          " intrinsic!");
5575     Res = DAG.getNode(ISD::GET_DYNAMIC_AREA_OFFSET, sdl, DAG.getVTList(ResTy),
5576                       Op);
5577     DAG.setRoot(Op);
5578     setValue(&I, Res);
5579     return nullptr;
5580   }
5581   case Intrinsic::stackguard: {
5582     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5583     MachineFunction &MF = DAG.getMachineFunction();
5584     const Module &M = *MF.getFunction()->getParent();
5585     SDValue Chain = getRoot();
5586     if (TLI.useLoadStackGuardNode()) {
5587       Res = getLoadStackGuard(DAG, sdl, Chain);
5588     } else {
5589       const Value *Global = TLI.getSDagStackGuard(M);
5590       unsigned Align = DL->getPrefTypeAlignment(Global->getType());
5591       Res = DAG.getLoad(PtrTy, sdl, Chain, getValue(Global),
5592                         MachinePointerInfo(Global, 0), Align,
5593                         MachineMemOperand::MOVolatile);
5594     }
5595     DAG.setRoot(Chain);
5596     setValue(&I, Res);
5597     return nullptr;
5598   }
5599   case Intrinsic::stackprotector: {
5600     // Emit code into the DAG to store the stack guard onto the stack.
5601     MachineFunction &MF = DAG.getMachineFunction();
5602     MachineFrameInfo &MFI = MF.getFrameInfo();
5603     EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout());
5604     SDValue Src, Chain = getRoot();
5605 
5606     if (TLI.useLoadStackGuardNode())
5607       Src = getLoadStackGuard(DAG, sdl, Chain);
5608     else
5609       Src = getValue(I.getArgOperand(0));   // The guard's value.
5610 
5611     AllocaInst *Slot = cast<AllocaInst>(I.getArgOperand(1));
5612 
5613     int FI = FuncInfo.StaticAllocaMap[Slot];
5614     MFI.setStackProtectorIndex(FI);
5615 
5616     SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
5617 
5618     // Store the stack protector onto the stack.
5619     Res = DAG.getStore(Chain, sdl, Src, FIN, MachinePointerInfo::getFixedStack(
5620                                                  DAG.getMachineFunction(), FI),
5621                        /* Alignment = */ 0, MachineMemOperand::MOVolatile);
5622     setValue(&I, Res);
5623     DAG.setRoot(Res);
5624     return nullptr;
5625   }
5626   case Intrinsic::objectsize: {
5627     // If we don't know by now, we're never going to know.
5628     ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(1));
5629 
5630     assert(CI && "Non-constant type in __builtin_object_size?");
5631 
5632     SDValue Arg = getValue(I.getCalledValue());
5633     EVT Ty = Arg.getValueType();
5634 
5635     if (CI->isZero())
5636       Res = DAG.getConstant(-1ULL, sdl, Ty);
5637     else
5638       Res = DAG.getConstant(0, sdl, Ty);
5639 
5640     setValue(&I, Res);
5641     return nullptr;
5642   }
5643   case Intrinsic::annotation:
5644   case Intrinsic::ptr_annotation:
5645   case Intrinsic::invariant_group_barrier:
5646     // Drop the intrinsic, but forward the value
5647     setValue(&I, getValue(I.getOperand(0)));
5648     return nullptr;
5649   case Intrinsic::assume:
5650   case Intrinsic::var_annotation:
5651     // Discard annotate attributes and assumptions
5652     return nullptr;
5653 
5654   case Intrinsic::init_trampoline: {
5655     const Function *F = cast<Function>(I.getArgOperand(1)->stripPointerCasts());
5656 
5657     SDValue Ops[6];
5658     Ops[0] = getRoot();
5659     Ops[1] = getValue(I.getArgOperand(0));
5660     Ops[2] = getValue(I.getArgOperand(1));
5661     Ops[3] = getValue(I.getArgOperand(2));
5662     Ops[4] = DAG.getSrcValue(I.getArgOperand(0));
5663     Ops[5] = DAG.getSrcValue(F);
5664 
5665     Res = DAG.getNode(ISD::INIT_TRAMPOLINE, sdl, MVT::Other, Ops);
5666 
5667     DAG.setRoot(Res);
5668     return nullptr;
5669   }
5670   case Intrinsic::adjust_trampoline: {
5671     setValue(&I, DAG.getNode(ISD::ADJUST_TRAMPOLINE, sdl,
5672                              TLI.getPointerTy(DAG.getDataLayout()),
5673                              getValue(I.getArgOperand(0))));
5674     return nullptr;
5675   }
5676   case Intrinsic::gcroot: {
5677     MachineFunction &MF = DAG.getMachineFunction();
5678     const Function *F = MF.getFunction();
5679     (void)F;
5680     assert(F->hasGC() &&
5681            "only valid in functions with gc specified, enforced by Verifier");
5682     assert(GFI && "implied by previous");
5683     const Value *Alloca = I.getArgOperand(0)->stripPointerCasts();
5684     const Constant *TypeMap = cast<Constant>(I.getArgOperand(1));
5685 
5686     FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
5687     GFI->addStackRoot(FI->getIndex(), TypeMap);
5688     return nullptr;
5689   }
5690   case Intrinsic::gcread:
5691   case Intrinsic::gcwrite:
5692     llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
5693   case Intrinsic::flt_rounds:
5694     setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, sdl, MVT::i32));
5695     return nullptr;
5696 
5697   case Intrinsic::expect: {
5698     // Just replace __builtin_expect(exp, c) with EXP.
5699     setValue(&I, getValue(I.getArgOperand(0)));
5700     return nullptr;
5701   }
5702 
5703   case Intrinsic::debugtrap:
5704   case Intrinsic::trap: {
5705     StringRef TrapFuncName =
5706         I.getAttributes()
5707             .getAttribute(AttributeList::FunctionIndex, "trap-func-name")
5708             .getValueAsString();
5709     if (TrapFuncName.empty()) {
5710       ISD::NodeType Op = (Intrinsic == Intrinsic::trap) ?
5711         ISD::TRAP : ISD::DEBUGTRAP;
5712       DAG.setRoot(DAG.getNode(Op, sdl,MVT::Other, getRoot()));
5713       return nullptr;
5714     }
5715     TargetLowering::ArgListTy Args;
5716 
5717     TargetLowering::CallLoweringInfo CLI(DAG);
5718     CLI.setDebugLoc(sdl).setChain(getRoot()).setLibCallee(
5719         CallingConv::C, I.getType(),
5720         DAG.getExternalSymbol(TrapFuncName.data(),
5721                               TLI.getPointerTy(DAG.getDataLayout())),
5722         std::move(Args));
5723 
5724     std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
5725     DAG.setRoot(Result.second);
5726     return nullptr;
5727   }
5728 
5729   case Intrinsic::uadd_with_overflow:
5730   case Intrinsic::sadd_with_overflow:
5731   case Intrinsic::usub_with_overflow:
5732   case Intrinsic::ssub_with_overflow:
5733   case Intrinsic::umul_with_overflow:
5734   case Intrinsic::smul_with_overflow: {
5735     ISD::NodeType Op;
5736     switch (Intrinsic) {
5737     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5738     case Intrinsic::uadd_with_overflow: Op = ISD::UADDO; break;
5739     case Intrinsic::sadd_with_overflow: Op = ISD::SADDO; break;
5740     case Intrinsic::usub_with_overflow: Op = ISD::USUBO; break;
5741     case Intrinsic::ssub_with_overflow: Op = ISD::SSUBO; break;
5742     case Intrinsic::umul_with_overflow: Op = ISD::UMULO; break;
5743     case Intrinsic::smul_with_overflow: Op = ISD::SMULO; break;
5744     }
5745     SDValue Op1 = getValue(I.getArgOperand(0));
5746     SDValue Op2 = getValue(I.getArgOperand(1));
5747 
5748     SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
5749     setValue(&I, DAG.getNode(Op, sdl, VTs, Op1, Op2));
5750     return nullptr;
5751   }
5752   case Intrinsic::prefetch: {
5753     SDValue Ops[5];
5754     unsigned rw = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue();
5755     Ops[0] = getRoot();
5756     Ops[1] = getValue(I.getArgOperand(0));
5757     Ops[2] = getValue(I.getArgOperand(1));
5758     Ops[3] = getValue(I.getArgOperand(2));
5759     Ops[4] = getValue(I.getArgOperand(3));
5760     DAG.setRoot(DAG.getMemIntrinsicNode(ISD::PREFETCH, sdl,
5761                                         DAG.getVTList(MVT::Other), Ops,
5762                                         EVT::getIntegerVT(*Context, 8),
5763                                         MachinePointerInfo(I.getArgOperand(0)),
5764                                         0, /* align */
5765                                         false, /* volatile */
5766                                         rw==0, /* read */
5767                                         rw==1)); /* write */
5768     return nullptr;
5769   }
5770   case Intrinsic::lifetime_start:
5771   case Intrinsic::lifetime_end: {
5772     bool IsStart = (Intrinsic == Intrinsic::lifetime_start);
5773     // Stack coloring is not enabled in O0, discard region information.
5774     if (TM.getOptLevel() == CodeGenOpt::None)
5775       return nullptr;
5776 
5777     SmallVector<Value *, 4> Allocas;
5778     GetUnderlyingObjects(I.getArgOperand(1), Allocas, *DL);
5779 
5780     for (SmallVectorImpl<Value*>::iterator Object = Allocas.begin(),
5781            E = Allocas.end(); Object != E; ++Object) {
5782       AllocaInst *LifetimeObject = dyn_cast_or_null<AllocaInst>(*Object);
5783 
5784       // Could not find an Alloca.
5785       if (!LifetimeObject)
5786         continue;
5787 
5788       // First check that the Alloca is static, otherwise it won't have a
5789       // valid frame index.
5790       auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject);
5791       if (SI == FuncInfo.StaticAllocaMap.end())
5792         return nullptr;
5793 
5794       int FI = SI->second;
5795 
5796       SDValue Ops[2];
5797       Ops[0] = getRoot();
5798       Ops[1] =
5799           DAG.getFrameIndex(FI, TLI.getFrameIndexTy(DAG.getDataLayout()), true);
5800       unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END);
5801 
5802       Res = DAG.getNode(Opcode, sdl, MVT::Other, Ops);
5803       DAG.setRoot(Res);
5804     }
5805     return nullptr;
5806   }
5807   case Intrinsic::invariant_start:
5808     // Discard region information.
5809     setValue(&I, DAG.getUNDEF(TLI.getPointerTy(DAG.getDataLayout())));
5810     return nullptr;
5811   case Intrinsic::invariant_end:
5812     // Discard region information.
5813     return nullptr;
5814   case Intrinsic::clear_cache:
5815     return TLI.getClearCacheBuiltinName();
5816   case Intrinsic::donothing:
5817     // ignore
5818     return nullptr;
5819   case Intrinsic::experimental_stackmap: {
5820     visitStackmap(I);
5821     return nullptr;
5822   }
5823   case Intrinsic::experimental_patchpoint_void:
5824   case Intrinsic::experimental_patchpoint_i64: {
5825     visitPatchpoint(&I);
5826     return nullptr;
5827   }
5828   case Intrinsic::experimental_gc_statepoint: {
5829     LowerStatepoint(ImmutableStatepoint(&I));
5830     return nullptr;
5831   }
5832   case Intrinsic::experimental_gc_result: {
5833     visitGCResult(cast<GCResultInst>(I));
5834     return nullptr;
5835   }
5836   case Intrinsic::experimental_gc_relocate: {
5837     visitGCRelocate(cast<GCRelocateInst>(I));
5838     return nullptr;
5839   }
5840   case Intrinsic::instrprof_increment:
5841     llvm_unreachable("instrprof failed to lower an increment");
5842   case Intrinsic::instrprof_value_profile:
5843     llvm_unreachable("instrprof failed to lower a value profiling call");
5844   case Intrinsic::localescape: {
5845     MachineFunction &MF = DAG.getMachineFunction();
5846     const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo();
5847 
5848     // Directly emit some LOCAL_ESCAPE machine instrs. Label assignment emission
5849     // is the same on all targets.
5850     for (unsigned Idx = 0, E = I.getNumArgOperands(); Idx < E; ++Idx) {
5851       Value *Arg = I.getArgOperand(Idx)->stripPointerCasts();
5852       if (isa<ConstantPointerNull>(Arg))
5853         continue; // Skip null pointers. They represent a hole in index space.
5854       AllocaInst *Slot = cast<AllocaInst>(Arg);
5855       assert(FuncInfo.StaticAllocaMap.count(Slot) &&
5856              "can only escape static allocas");
5857       int FI = FuncInfo.StaticAllocaMap[Slot];
5858       MCSymbol *FrameAllocSym =
5859           MF.getMMI().getContext().getOrCreateFrameAllocSymbol(
5860               GlobalValue::dropLLVMManglingEscape(MF.getName()), Idx);
5861       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, dl,
5862               TII->get(TargetOpcode::LOCAL_ESCAPE))
5863           .addSym(FrameAllocSym)
5864           .addFrameIndex(FI);
5865     }
5866 
5867     return nullptr;
5868   }
5869 
5870   case Intrinsic::localrecover: {
5871     // i8* @llvm.localrecover(i8* %fn, i8* %fp, i32 %idx)
5872     MachineFunction &MF = DAG.getMachineFunction();
5873     MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout(), 0);
5874 
5875     // Get the symbol that defines the frame offset.
5876     auto *Fn = cast<Function>(I.getArgOperand(0)->stripPointerCasts());
5877     auto *Idx = cast<ConstantInt>(I.getArgOperand(2));
5878     unsigned IdxVal = unsigned(Idx->getLimitedValue(INT_MAX));
5879     MCSymbol *FrameAllocSym =
5880         MF.getMMI().getContext().getOrCreateFrameAllocSymbol(
5881             GlobalValue::dropLLVMManglingEscape(Fn->getName()), IdxVal);
5882 
5883     // Create a MCSymbol for the label to avoid any target lowering
5884     // that would make this PC relative.
5885     SDValue OffsetSym = DAG.getMCSymbol(FrameAllocSym, PtrVT);
5886     SDValue OffsetVal =
5887         DAG.getNode(ISD::LOCAL_RECOVER, sdl, PtrVT, OffsetSym);
5888 
5889     // Add the offset to the FP.
5890     Value *FP = I.getArgOperand(1);
5891     SDValue FPVal = getValue(FP);
5892     SDValue Add = DAG.getNode(ISD::ADD, sdl, PtrVT, FPVal, OffsetVal);
5893     setValue(&I, Add);
5894 
5895     return nullptr;
5896   }
5897 
5898   case Intrinsic::eh_exceptionpointer:
5899   case Intrinsic::eh_exceptioncode: {
5900     // Get the exception pointer vreg, copy from it, and resize it to fit.
5901     const auto *CPI = cast<CatchPadInst>(I.getArgOperand(0));
5902     MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
5903     const TargetRegisterClass *PtrRC = TLI.getRegClassFor(PtrVT);
5904     unsigned VReg = FuncInfo.getCatchPadExceptionPointerVReg(CPI, PtrRC);
5905     SDValue N =
5906         DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(), VReg, PtrVT);
5907     if (Intrinsic == Intrinsic::eh_exceptioncode)
5908       N = DAG.getZExtOrTrunc(N, getCurSDLoc(), MVT::i32);
5909     setValue(&I, N);
5910     return nullptr;
5911   }
5912   case Intrinsic::xray_customevent: {
5913     // Here we want to make sure that the intrinsic behaves as if it has a
5914     // specific calling convention, and only for x86_64.
5915     // FIXME: Support other platforms later.
5916     const auto &Triple = DAG.getTarget().getTargetTriple();
5917     if (Triple.getArch() != Triple::x86_64 || !Triple.isOSLinux())
5918       return nullptr;
5919 
5920     SDLoc DL = getCurSDLoc();
5921     SmallVector<SDValue, 8> Ops;
5922 
5923     // We want to say that we always want the arguments in registers.
5924     SDValue LogEntryVal = getValue(I.getArgOperand(0));
5925     SDValue StrSizeVal = getValue(I.getArgOperand(1));
5926     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
5927     SDValue Chain = getRoot();
5928     Ops.push_back(LogEntryVal);
5929     Ops.push_back(StrSizeVal);
5930     Ops.push_back(Chain);
5931 
5932     // We need to enforce the calling convention for the callsite, so that
5933     // argument ordering is enforced correctly, and that register allocation can
5934     // see that some registers may be assumed clobbered and have to preserve
5935     // them across calls to the intrinsic.
5936     MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHABLE_EVENT_CALL,
5937                                            DL, NodeTys, Ops);
5938     SDValue patchableNode = SDValue(MN, 0);
5939     DAG.setRoot(patchableNode);
5940     setValue(&I, patchableNode);
5941     return nullptr;
5942   }
5943   case Intrinsic::experimental_deoptimize:
5944     LowerDeoptimizeCall(&I);
5945     return nullptr;
5946 
5947   case Intrinsic::experimental_vector_reduce_fadd:
5948   case Intrinsic::experimental_vector_reduce_fmul:
5949   case Intrinsic::experimental_vector_reduce_add:
5950   case Intrinsic::experimental_vector_reduce_mul:
5951   case Intrinsic::experimental_vector_reduce_and:
5952   case Intrinsic::experimental_vector_reduce_or:
5953   case Intrinsic::experimental_vector_reduce_xor:
5954   case Intrinsic::experimental_vector_reduce_smax:
5955   case Intrinsic::experimental_vector_reduce_smin:
5956   case Intrinsic::experimental_vector_reduce_umax:
5957   case Intrinsic::experimental_vector_reduce_umin:
5958   case Intrinsic::experimental_vector_reduce_fmax:
5959   case Intrinsic::experimental_vector_reduce_fmin: {
5960     visitVectorReduce(I, Intrinsic);
5961     return nullptr;
5962   }
5963 
5964   }
5965 }
5966 
5967 void SelectionDAGBuilder::visitConstrainedFPIntrinsic(
5968     const ConstrainedFPIntrinsic &FPI) {
5969   SDLoc sdl = getCurSDLoc();
5970   unsigned Opcode;
5971   switch (FPI.getIntrinsicID()) {
5972   default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
5973   case Intrinsic::experimental_constrained_fadd:
5974     Opcode = ISD::STRICT_FADD;
5975     break;
5976   case Intrinsic::experimental_constrained_fsub:
5977     Opcode = ISD::STRICT_FSUB;
5978     break;
5979   case Intrinsic::experimental_constrained_fmul:
5980     Opcode = ISD::STRICT_FMUL;
5981     break;
5982   case Intrinsic::experimental_constrained_fdiv:
5983     Opcode = ISD::STRICT_FDIV;
5984     break;
5985   case Intrinsic::experimental_constrained_frem:
5986     Opcode = ISD::STRICT_FREM;
5987     break;
5988   case Intrinsic::experimental_constrained_fma:
5989     Opcode = ISD::STRICT_FMA;
5990     break;
5991   case Intrinsic::experimental_constrained_sqrt:
5992     Opcode = ISD::STRICT_FSQRT;
5993     break;
5994   case Intrinsic::experimental_constrained_pow:
5995     Opcode = ISD::STRICT_FPOW;
5996     break;
5997   case Intrinsic::experimental_constrained_powi:
5998     Opcode = ISD::STRICT_FPOWI;
5999     break;
6000   case Intrinsic::experimental_constrained_sin:
6001     Opcode = ISD::STRICT_FSIN;
6002     break;
6003   case Intrinsic::experimental_constrained_cos:
6004     Opcode = ISD::STRICT_FCOS;
6005     break;
6006   case Intrinsic::experimental_constrained_exp:
6007     Opcode = ISD::STRICT_FEXP;
6008     break;
6009   case Intrinsic::experimental_constrained_exp2:
6010     Opcode = ISD::STRICT_FEXP2;
6011     break;
6012   case Intrinsic::experimental_constrained_log:
6013     Opcode = ISD::STRICT_FLOG;
6014     break;
6015   case Intrinsic::experimental_constrained_log10:
6016     Opcode = ISD::STRICT_FLOG10;
6017     break;
6018   case Intrinsic::experimental_constrained_log2:
6019     Opcode = ISD::STRICT_FLOG2;
6020     break;
6021   case Intrinsic::experimental_constrained_rint:
6022     Opcode = ISD::STRICT_FRINT;
6023     break;
6024   case Intrinsic::experimental_constrained_nearbyint:
6025     Opcode = ISD::STRICT_FNEARBYINT;
6026     break;
6027   }
6028   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6029   SDValue Chain = getRoot();
6030   SmallVector<EVT, 4> ValueVTs;
6031   ComputeValueVTs(TLI, DAG.getDataLayout(), FPI.getType(), ValueVTs);
6032   ValueVTs.push_back(MVT::Other); // Out chain
6033 
6034   SDVTList VTs = DAG.getVTList(ValueVTs);
6035   SDValue Result;
6036   if (FPI.isUnaryOp())
6037     Result = DAG.getNode(Opcode, sdl, VTs,
6038                          { Chain, getValue(FPI.getArgOperand(0)) });
6039   else if (FPI.isTernaryOp())
6040     Result = DAG.getNode(Opcode, sdl, VTs,
6041                          { Chain, getValue(FPI.getArgOperand(0)),
6042                                   getValue(FPI.getArgOperand(1)),
6043                                   getValue(FPI.getArgOperand(2)) });
6044   else
6045     Result = DAG.getNode(Opcode, sdl, VTs,
6046                          { Chain, getValue(FPI.getArgOperand(0)),
6047                            getValue(FPI.getArgOperand(1))  });
6048 
6049   assert(Result.getNode()->getNumValues() == 2);
6050   SDValue OutChain = Result.getValue(1);
6051   DAG.setRoot(OutChain);
6052   SDValue FPResult = Result.getValue(0);
6053   setValue(&FPI, FPResult);
6054 }
6055 
6056 std::pair<SDValue, SDValue>
6057 SelectionDAGBuilder::lowerInvokable(TargetLowering::CallLoweringInfo &CLI,
6058                                     const BasicBlock *EHPadBB) {
6059   MachineFunction &MF = DAG.getMachineFunction();
6060   MachineModuleInfo &MMI = MF.getMMI();
6061   MCSymbol *BeginLabel = nullptr;
6062 
6063   if (EHPadBB) {
6064     // Insert a label before the invoke call to mark the try range.  This can be
6065     // used to detect deletion of the invoke via the MachineModuleInfo.
6066     BeginLabel = MMI.getContext().createTempSymbol();
6067 
6068     // For SjLj, keep track of which landing pads go with which invokes
6069     // so as to maintain the ordering of pads in the LSDA.
6070     unsigned CallSiteIndex = MMI.getCurrentCallSite();
6071     if (CallSiteIndex) {
6072       MF.setCallSiteBeginLabel(BeginLabel, CallSiteIndex);
6073       LPadToCallSiteMap[FuncInfo.MBBMap[EHPadBB]].push_back(CallSiteIndex);
6074 
6075       // Now that the call site is handled, stop tracking it.
6076       MMI.setCurrentCallSite(0);
6077     }
6078 
6079     // Both PendingLoads and PendingExports must be flushed here;
6080     // this call might not return.
6081     (void)getRoot();
6082     DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getControlRoot(), BeginLabel));
6083 
6084     CLI.setChain(getRoot());
6085   }
6086   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6087   std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
6088 
6089   assert((CLI.IsTailCall || Result.second.getNode()) &&
6090          "Non-null chain expected with non-tail call!");
6091   assert((Result.second.getNode() || !Result.first.getNode()) &&
6092          "Null value expected with tail call!");
6093 
6094   if (!Result.second.getNode()) {
6095     // As a special case, a null chain means that a tail call has been emitted
6096     // and the DAG root is already updated.
6097     HasTailCall = true;
6098 
6099     // Since there's no actual continuation from this block, nothing can be
6100     // relying on us setting vregs for them.
6101     PendingExports.clear();
6102   } else {
6103     DAG.setRoot(Result.second);
6104   }
6105 
6106   if (EHPadBB) {
6107     // Insert a label at the end of the invoke call to mark the try range.  This
6108     // can be used to detect deletion of the invoke via the MachineModuleInfo.
6109     MCSymbol *EndLabel = MMI.getContext().createTempSymbol();
6110     DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getRoot(), EndLabel));
6111 
6112     // Inform MachineModuleInfo of range.
6113     if (MF.hasEHFunclets()) {
6114       assert(CLI.CS);
6115       WinEHFuncInfo *EHInfo = DAG.getMachineFunction().getWinEHFuncInfo();
6116       EHInfo->addIPToStateRange(cast<InvokeInst>(CLI.CS.getInstruction()),
6117                                 BeginLabel, EndLabel);
6118     } else {
6119       MF.addInvoke(FuncInfo.MBBMap[EHPadBB], BeginLabel, EndLabel);
6120     }
6121   }
6122 
6123   return Result;
6124 }
6125 
6126 void SelectionDAGBuilder::LowerCallTo(ImmutableCallSite CS, SDValue Callee,
6127                                       bool isTailCall,
6128                                       const BasicBlock *EHPadBB) {
6129   auto &DL = DAG.getDataLayout();
6130   FunctionType *FTy = CS.getFunctionType();
6131   Type *RetTy = CS.getType();
6132 
6133   TargetLowering::ArgListTy Args;
6134   Args.reserve(CS.arg_size());
6135 
6136   const Value *SwiftErrorVal = nullptr;
6137   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6138 
6139   // We can't tail call inside a function with a swifterror argument. Lowering
6140   // does not support this yet. It would have to move into the swifterror
6141   // register before the call.
6142   auto *Caller = CS.getInstruction()->getParent()->getParent();
6143   if (TLI.supportSwiftError() &&
6144       Caller->getAttributes().hasAttrSomewhere(Attribute::SwiftError))
6145     isTailCall = false;
6146 
6147   for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
6148        i != e; ++i) {
6149     TargetLowering::ArgListEntry Entry;
6150     const Value *V = *i;
6151 
6152     // Skip empty types
6153     if (V->getType()->isEmptyTy())
6154       continue;
6155 
6156     SDValue ArgNode = getValue(V);
6157     Entry.Node = ArgNode; Entry.Ty = V->getType();
6158 
6159     Entry.setAttributes(&CS, i - CS.arg_begin());
6160 
6161     // Use swifterror virtual register as input to the call.
6162     if (Entry.IsSwiftError && TLI.supportSwiftError()) {
6163       SwiftErrorVal = V;
6164       // We find the virtual register for the actual swifterror argument.
6165       // Instead of using the Value, we use the virtual register instead.
6166       Entry.Node = DAG.getRegister(FuncInfo
6167                                        .getOrCreateSwiftErrorVRegUseAt(
6168                                            CS.getInstruction(), FuncInfo.MBB, V)
6169                                        .first,
6170                                    EVT(TLI.getPointerTy(DL)));
6171     }
6172 
6173     Args.push_back(Entry);
6174 
6175     // If we have an explicit sret argument that is an Instruction, (i.e., it
6176     // might point to function-local memory), we can't meaningfully tail-call.
6177     if (Entry.IsSRet && isa<Instruction>(V))
6178       isTailCall = false;
6179   }
6180 
6181   // Check if target-independent constraints permit a tail call here.
6182   // Target-dependent constraints are checked within TLI->LowerCallTo.
6183   if (isTailCall && !isInTailCallPosition(CS, DAG.getTarget()))
6184     isTailCall = false;
6185 
6186   // Disable tail calls if there is an swifterror argument. Targets have not
6187   // been updated to support tail calls.
6188   if (TLI.supportSwiftError() && SwiftErrorVal)
6189     isTailCall = false;
6190 
6191   TargetLowering::CallLoweringInfo CLI(DAG);
6192   CLI.setDebugLoc(getCurSDLoc())
6193       .setChain(getRoot())
6194       .setCallee(RetTy, FTy, Callee, std::move(Args), CS)
6195       .setTailCall(isTailCall)
6196       .setConvergent(CS.isConvergent());
6197   std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB);
6198 
6199   if (Result.first.getNode()) {
6200     const Instruction *Inst = CS.getInstruction();
6201     Result.first = lowerRangeToAssertZExt(DAG, *Inst, Result.first);
6202     setValue(Inst, Result.first);
6203   }
6204 
6205   // The last element of CLI.InVals has the SDValue for swifterror return.
6206   // Here we copy it to a virtual register and update SwiftErrorMap for
6207   // book-keeping.
6208   if (SwiftErrorVal && TLI.supportSwiftError()) {
6209     // Get the last element of InVals.
6210     SDValue Src = CLI.InVals.back();
6211     unsigned VReg; bool CreatedVReg;
6212     std::tie(VReg, CreatedVReg) =
6213         FuncInfo.getOrCreateSwiftErrorVRegDefAt(CS.getInstruction());
6214     SDValue CopyNode = CLI.DAG.getCopyToReg(Result.second, CLI.DL, VReg, Src);
6215     // We update the virtual register for the actual swifterror argument.
6216     if (CreatedVReg)
6217       FuncInfo.setCurrentSwiftErrorVReg(FuncInfo.MBB, SwiftErrorVal, VReg);
6218     DAG.setRoot(CopyNode);
6219   }
6220 }
6221 
6222 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT,
6223                              SelectionDAGBuilder &Builder) {
6224 
6225   // Check to see if this load can be trivially constant folded, e.g. if the
6226   // input is from a string literal.
6227   if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) {
6228     // Cast pointer to the type we really want to load.
6229     Type *LoadTy =
6230         Type::getIntNTy(PtrVal->getContext(), LoadVT.getScalarSizeInBits());
6231     if (LoadVT.isVector())
6232       LoadTy = VectorType::get(LoadTy, LoadVT.getVectorNumElements());
6233 
6234     LoadInput = ConstantExpr::getBitCast(const_cast<Constant *>(LoadInput),
6235                                          PointerType::getUnqual(LoadTy));
6236 
6237     if (const Constant *LoadCst = ConstantFoldLoadFromConstPtr(
6238             const_cast<Constant *>(LoadInput), LoadTy, *Builder.DL))
6239       return Builder.getValue(LoadCst);
6240   }
6241 
6242   // Otherwise, we have to emit the load.  If the pointer is to unfoldable but
6243   // still constant memory, the input chain can be the entry node.
6244   SDValue Root;
6245   bool ConstantMemory = false;
6246 
6247   // Do not serialize (non-volatile) loads of constant memory with anything.
6248   if (Builder.AA && Builder.AA->pointsToConstantMemory(PtrVal)) {
6249     Root = Builder.DAG.getEntryNode();
6250     ConstantMemory = true;
6251   } else {
6252     // Do not serialize non-volatile loads against each other.
6253     Root = Builder.DAG.getRoot();
6254   }
6255 
6256   SDValue Ptr = Builder.getValue(PtrVal);
6257   SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root,
6258                                         Ptr, MachinePointerInfo(PtrVal),
6259                                         /* Alignment = */ 1);
6260 
6261   if (!ConstantMemory)
6262     Builder.PendingLoads.push_back(LoadVal.getValue(1));
6263   return LoadVal;
6264 }
6265 
6266 /// Record the value for an instruction that produces an integer result,
6267 /// converting the type where necessary.
6268 void SelectionDAGBuilder::processIntegerCallValue(const Instruction &I,
6269                                                   SDValue Value,
6270                                                   bool IsSigned) {
6271   EVT VT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
6272                                                     I.getType(), true);
6273   if (IsSigned)
6274     Value = DAG.getSExtOrTrunc(Value, getCurSDLoc(), VT);
6275   else
6276     Value = DAG.getZExtOrTrunc(Value, getCurSDLoc(), VT);
6277   setValue(&I, Value);
6278 }
6279 
6280 /// See if we can lower a memcmp call into an optimized form. If so, return
6281 /// true and lower it. Otherwise return false, and it will be lowered like a
6282 /// normal call.
6283 /// The caller already checked that \p I calls the appropriate LibFunc with a
6284 /// correct prototype.
6285 bool SelectionDAGBuilder::visitMemCmpCall(const CallInst &I) {
6286   const Value *LHS = I.getArgOperand(0), *RHS = I.getArgOperand(1);
6287   const Value *Size = I.getArgOperand(2);
6288   const ConstantInt *CSize = dyn_cast<ConstantInt>(Size);
6289   if (CSize && CSize->getZExtValue() == 0) {
6290     EVT CallVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
6291                                                           I.getType(), true);
6292     setValue(&I, DAG.getConstant(0, getCurSDLoc(), CallVT));
6293     return true;
6294   }
6295 
6296   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6297   std::pair<SDValue, SDValue> Res = TSI.EmitTargetCodeForMemcmp(
6298       DAG, getCurSDLoc(), DAG.getRoot(), getValue(LHS), getValue(RHS),
6299       getValue(Size), MachinePointerInfo(LHS), MachinePointerInfo(RHS));
6300   if (Res.first.getNode()) {
6301     processIntegerCallValue(I, Res.first, true);
6302     PendingLoads.push_back(Res.second);
6303     return true;
6304   }
6305 
6306   // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS)  != 0
6307   // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS)  != 0
6308   if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I))
6309     return false;
6310 
6311   // If the target has a fast compare for the given size, it will return a
6312   // preferred load type for that size. Require that the load VT is legal and
6313   // that the target supports unaligned loads of that type. Otherwise, return
6314   // INVALID.
6315   auto hasFastLoadsAndCompare = [&](unsigned NumBits) {
6316     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6317     MVT LVT = TLI.hasFastEqualityCompare(NumBits);
6318     if (LVT != MVT::INVALID_SIMPLE_VALUE_TYPE) {
6319       // TODO: Handle 5 byte compare as 4-byte + 1 byte.
6320       // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads.
6321       // TODO: Check alignment of src and dest ptrs.
6322       unsigned DstAS = LHS->getType()->getPointerAddressSpace();
6323       unsigned SrcAS = RHS->getType()->getPointerAddressSpace();
6324       if (!TLI.isTypeLegal(LVT) ||
6325           !TLI.allowsMisalignedMemoryAccesses(LVT, SrcAS) ||
6326           !TLI.allowsMisalignedMemoryAccesses(LVT, DstAS))
6327         LVT = MVT::INVALID_SIMPLE_VALUE_TYPE;
6328     }
6329 
6330     return LVT;
6331   };
6332 
6333   // This turns into unaligned loads. We only do this if the target natively
6334   // supports the MVT we'll be loading or if it is small enough (<= 4) that
6335   // we'll only produce a small number of byte loads.
6336   MVT LoadVT;
6337   unsigned NumBitsToCompare = CSize->getZExtValue() * 8;
6338   switch (NumBitsToCompare) {
6339   default:
6340     return false;
6341   case 16:
6342     LoadVT = MVT::i16;
6343     break;
6344   case 32:
6345     LoadVT = MVT::i32;
6346     break;
6347   case 64:
6348   case 128:
6349   case 256:
6350     LoadVT = hasFastLoadsAndCompare(NumBitsToCompare);
6351     break;
6352   }
6353 
6354   if (LoadVT == MVT::INVALID_SIMPLE_VALUE_TYPE)
6355     return false;
6356 
6357   SDValue LoadL = getMemCmpLoad(LHS, LoadVT, *this);
6358   SDValue LoadR = getMemCmpLoad(RHS, LoadVT, *this);
6359 
6360   // Bitcast to a wide integer type if the loads are vectors.
6361   if (LoadVT.isVector()) {
6362     EVT CmpVT = EVT::getIntegerVT(LHS->getContext(), LoadVT.getSizeInBits());
6363     LoadL = DAG.getBitcast(CmpVT, LoadL);
6364     LoadR = DAG.getBitcast(CmpVT, LoadR);
6365   }
6366 
6367   SDValue Cmp = DAG.getSetCC(getCurSDLoc(), MVT::i1, LoadL, LoadR, ISD::SETNE);
6368   processIntegerCallValue(I, Cmp, false);
6369   return true;
6370 }
6371 
6372 /// See if we can lower a memchr call into an optimized form. If so, return
6373 /// true and lower it. Otherwise return false, and it will be lowered like a
6374 /// normal call.
6375 /// The caller already checked that \p I calls the appropriate LibFunc with a
6376 /// correct prototype.
6377 bool SelectionDAGBuilder::visitMemChrCall(const CallInst &I) {
6378   const Value *Src = I.getArgOperand(0);
6379   const Value *Char = I.getArgOperand(1);
6380   const Value *Length = I.getArgOperand(2);
6381 
6382   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6383   std::pair<SDValue, SDValue> Res =
6384     TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(),
6385                                 getValue(Src), getValue(Char), getValue(Length),
6386                                 MachinePointerInfo(Src));
6387   if (Res.first.getNode()) {
6388     setValue(&I, Res.first);
6389     PendingLoads.push_back(Res.second);
6390     return true;
6391   }
6392 
6393   return false;
6394 }
6395 
6396 /// See if we can lower a mempcpy call into an optimized form. If so, return
6397 /// true and lower it. Otherwise return false, and it will be lowered like a
6398 /// normal call.
6399 /// The caller already checked that \p I calls the appropriate LibFunc with a
6400 /// correct prototype.
6401 bool SelectionDAGBuilder::visitMemPCpyCall(const CallInst &I) {
6402   SDValue Dst = getValue(I.getArgOperand(0));
6403   SDValue Src = getValue(I.getArgOperand(1));
6404   SDValue Size = getValue(I.getArgOperand(2));
6405 
6406   unsigned DstAlign = DAG.InferPtrAlignment(Dst);
6407   unsigned SrcAlign = DAG.InferPtrAlignment(Src);
6408   unsigned Align = std::min(DstAlign, SrcAlign);
6409   if (Align == 0) // Alignment of one or both could not be inferred.
6410     Align = 1; // 0 and 1 both specify no alignment, but 0 is reserved.
6411 
6412   bool isVol = false;
6413   SDLoc sdl = getCurSDLoc();
6414 
6415   // In the mempcpy context we need to pass in a false value for isTailCall
6416   // because the return pointer needs to be adjusted by the size of
6417   // the copied memory.
6418   SDValue MC = DAG.getMemcpy(getRoot(), sdl, Dst, Src, Size, Align, isVol,
6419                              false, /*isTailCall=*/false,
6420                              MachinePointerInfo(I.getArgOperand(0)),
6421                              MachinePointerInfo(I.getArgOperand(1)));
6422   assert(MC.getNode() != nullptr &&
6423          "** memcpy should not be lowered as TailCall in mempcpy context **");
6424   DAG.setRoot(MC);
6425 
6426   // Check if Size needs to be truncated or extended.
6427   Size = DAG.getSExtOrTrunc(Size, sdl, Dst.getValueType());
6428 
6429   // Adjust return pointer to point just past the last dst byte.
6430   SDValue DstPlusSize = DAG.getNode(ISD::ADD, sdl, Dst.getValueType(),
6431                                     Dst, Size);
6432   setValue(&I, DstPlusSize);
6433   return true;
6434 }
6435 
6436 /// See if we can lower a strcpy call into an optimized form.  If so, return
6437 /// true and lower it, otherwise return false and it will be lowered like a
6438 /// normal call.
6439 /// The caller already checked that \p I calls the appropriate LibFunc with a
6440 /// correct prototype.
6441 bool SelectionDAGBuilder::visitStrCpyCall(const CallInst &I, bool isStpcpy) {
6442   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6443 
6444   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6445   std::pair<SDValue, SDValue> Res =
6446     TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(),
6447                                 getValue(Arg0), getValue(Arg1),
6448                                 MachinePointerInfo(Arg0),
6449                                 MachinePointerInfo(Arg1), isStpcpy);
6450   if (Res.first.getNode()) {
6451     setValue(&I, Res.first);
6452     DAG.setRoot(Res.second);
6453     return true;
6454   }
6455 
6456   return false;
6457 }
6458 
6459 /// See if we can lower a strcmp call into an optimized form.  If so, return
6460 /// true and lower it, otherwise return false and it will be lowered like a
6461 /// normal call.
6462 /// The caller already checked that \p I calls the appropriate LibFunc with a
6463 /// correct prototype.
6464 bool SelectionDAGBuilder::visitStrCmpCall(const CallInst &I) {
6465   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6466 
6467   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6468   std::pair<SDValue, SDValue> Res =
6469     TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot(),
6470                                 getValue(Arg0), getValue(Arg1),
6471                                 MachinePointerInfo(Arg0),
6472                                 MachinePointerInfo(Arg1));
6473   if (Res.first.getNode()) {
6474     processIntegerCallValue(I, Res.first, true);
6475     PendingLoads.push_back(Res.second);
6476     return true;
6477   }
6478 
6479   return false;
6480 }
6481 
6482 /// See if we can lower a strlen call into an optimized form.  If so, return
6483 /// true and lower it, otherwise return false and it will be lowered like a
6484 /// normal call.
6485 /// The caller already checked that \p I calls the appropriate LibFunc with a
6486 /// correct prototype.
6487 bool SelectionDAGBuilder::visitStrLenCall(const CallInst &I) {
6488   const Value *Arg0 = I.getArgOperand(0);
6489 
6490   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6491   std::pair<SDValue, SDValue> Res =
6492     TSI.EmitTargetCodeForStrlen(DAG, getCurSDLoc(), DAG.getRoot(),
6493                                 getValue(Arg0), MachinePointerInfo(Arg0));
6494   if (Res.first.getNode()) {
6495     processIntegerCallValue(I, Res.first, false);
6496     PendingLoads.push_back(Res.second);
6497     return true;
6498   }
6499 
6500   return false;
6501 }
6502 
6503 /// See if we can lower a strnlen call into an optimized form.  If so, return
6504 /// true and lower it, otherwise return false and it will be lowered like a
6505 /// normal call.
6506 /// The caller already checked that \p I calls the appropriate LibFunc with a
6507 /// correct prototype.
6508 bool SelectionDAGBuilder::visitStrNLenCall(const CallInst &I) {
6509   const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1);
6510 
6511   const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
6512   std::pair<SDValue, SDValue> Res =
6513     TSI.EmitTargetCodeForStrnlen(DAG, getCurSDLoc(), DAG.getRoot(),
6514                                  getValue(Arg0), getValue(Arg1),
6515                                  MachinePointerInfo(Arg0));
6516   if (Res.first.getNode()) {
6517     processIntegerCallValue(I, Res.first, false);
6518     PendingLoads.push_back(Res.second);
6519     return true;
6520   }
6521 
6522   return false;
6523 }
6524 
6525 /// See if we can lower a unary floating-point operation into an SDNode with
6526 /// the specified Opcode.  If so, return true and lower it, otherwise return
6527 /// false and it will be lowered like a normal call.
6528 /// The caller already checked that \p I calls the appropriate LibFunc with a
6529 /// correct prototype.
6530 bool SelectionDAGBuilder::visitUnaryFloatCall(const CallInst &I,
6531                                               unsigned Opcode) {
6532   // We already checked this call's prototype; verify it doesn't modify errno.
6533   if (!I.onlyReadsMemory())
6534     return false;
6535 
6536   SDValue Tmp = getValue(I.getArgOperand(0));
6537   setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), Tmp.getValueType(), Tmp));
6538   return true;
6539 }
6540 
6541 /// See if we can lower a binary floating-point operation into an SDNode with
6542 /// the specified Opcode. If so, return true and lower it. Otherwise return
6543 /// false, and it will be lowered like a normal call.
6544 /// The caller already checked that \p I calls the appropriate LibFunc with a
6545 /// correct prototype.
6546 bool SelectionDAGBuilder::visitBinaryFloatCall(const CallInst &I,
6547                                                unsigned Opcode) {
6548   // We already checked this call's prototype; verify it doesn't modify errno.
6549   if (!I.onlyReadsMemory())
6550     return false;
6551 
6552   SDValue Tmp0 = getValue(I.getArgOperand(0));
6553   SDValue Tmp1 = getValue(I.getArgOperand(1));
6554   EVT VT = Tmp0.getValueType();
6555   setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), VT, Tmp0, Tmp1));
6556   return true;
6557 }
6558 
6559 void SelectionDAGBuilder::visitCall(const CallInst &I) {
6560   // Handle inline assembly differently.
6561   if (isa<InlineAsm>(I.getCalledValue())) {
6562     visitInlineAsm(&I);
6563     return;
6564   }
6565 
6566   MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI();
6567   computeUsesVAFloatArgument(I, MMI);
6568 
6569   const char *RenameFn = nullptr;
6570   if (Function *F = I.getCalledFunction()) {
6571     if (F->isDeclaration()) {
6572       if (const TargetIntrinsicInfo *II = TM.getIntrinsicInfo()) {
6573         if (unsigned IID = II->getIntrinsicID(F)) {
6574           RenameFn = visitIntrinsicCall(I, IID);
6575           if (!RenameFn)
6576             return;
6577         }
6578       }
6579       if (Intrinsic::ID IID = F->getIntrinsicID()) {
6580         RenameFn = visitIntrinsicCall(I, IID);
6581         if (!RenameFn)
6582           return;
6583       }
6584     }
6585 
6586     // Check for well-known libc/libm calls.  If the function is internal, it
6587     // can't be a library call.  Don't do the check if marked as nobuiltin for
6588     // some reason or the call site requires strict floating point semantics.
6589     LibFunc Func;
6590     if (!I.isNoBuiltin() && !I.isStrictFP() && !F->hasLocalLinkage() &&
6591         F->hasName() && LibInfo->getLibFunc(*F, Func) &&
6592         LibInfo->hasOptimizedCodeGen(Func)) {
6593       switch (Func) {
6594       default: break;
6595       case LibFunc_copysign:
6596       case LibFunc_copysignf:
6597       case LibFunc_copysignl:
6598         // We already checked this call's prototype; verify it doesn't modify
6599         // errno.
6600         if (I.onlyReadsMemory()) {
6601           SDValue LHS = getValue(I.getArgOperand(0));
6602           SDValue RHS = getValue(I.getArgOperand(1));
6603           setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurSDLoc(),
6604                                    LHS.getValueType(), LHS, RHS));
6605           return;
6606         }
6607         break;
6608       case LibFunc_fabs:
6609       case LibFunc_fabsf:
6610       case LibFunc_fabsl:
6611         if (visitUnaryFloatCall(I, ISD::FABS))
6612           return;
6613         break;
6614       case LibFunc_fmin:
6615       case LibFunc_fminf:
6616       case LibFunc_fminl:
6617         if (visitBinaryFloatCall(I, ISD::FMINNUM))
6618           return;
6619         break;
6620       case LibFunc_fmax:
6621       case LibFunc_fmaxf:
6622       case LibFunc_fmaxl:
6623         if (visitBinaryFloatCall(I, ISD::FMAXNUM))
6624           return;
6625         break;
6626       case LibFunc_sin:
6627       case LibFunc_sinf:
6628       case LibFunc_sinl:
6629         if (visitUnaryFloatCall(I, ISD::FSIN))
6630           return;
6631         break;
6632       case LibFunc_cos:
6633       case LibFunc_cosf:
6634       case LibFunc_cosl:
6635         if (visitUnaryFloatCall(I, ISD::FCOS))
6636           return;
6637         break;
6638       case LibFunc_sqrt:
6639       case LibFunc_sqrtf:
6640       case LibFunc_sqrtl:
6641       case LibFunc_sqrt_finite:
6642       case LibFunc_sqrtf_finite:
6643       case LibFunc_sqrtl_finite:
6644         if (visitUnaryFloatCall(I, ISD::FSQRT))
6645           return;
6646         break;
6647       case LibFunc_floor:
6648       case LibFunc_floorf:
6649       case LibFunc_floorl:
6650         if (visitUnaryFloatCall(I, ISD::FFLOOR))
6651           return;
6652         break;
6653       case LibFunc_nearbyint:
6654       case LibFunc_nearbyintf:
6655       case LibFunc_nearbyintl:
6656         if (visitUnaryFloatCall(I, ISD::FNEARBYINT))
6657           return;
6658         break;
6659       case LibFunc_ceil:
6660       case LibFunc_ceilf:
6661       case LibFunc_ceill:
6662         if (visitUnaryFloatCall(I, ISD::FCEIL))
6663           return;
6664         break;
6665       case LibFunc_rint:
6666       case LibFunc_rintf:
6667       case LibFunc_rintl:
6668         if (visitUnaryFloatCall(I, ISD::FRINT))
6669           return;
6670         break;
6671       case LibFunc_round:
6672       case LibFunc_roundf:
6673       case LibFunc_roundl:
6674         if (visitUnaryFloatCall(I, ISD::FROUND))
6675           return;
6676         break;
6677       case LibFunc_trunc:
6678       case LibFunc_truncf:
6679       case LibFunc_truncl:
6680         if (visitUnaryFloatCall(I, ISD::FTRUNC))
6681           return;
6682         break;
6683       case LibFunc_log2:
6684       case LibFunc_log2f:
6685       case LibFunc_log2l:
6686         if (visitUnaryFloatCall(I, ISD::FLOG2))
6687           return;
6688         break;
6689       case LibFunc_exp2:
6690       case LibFunc_exp2f:
6691       case LibFunc_exp2l:
6692         if (visitUnaryFloatCall(I, ISD::FEXP2))
6693           return;
6694         break;
6695       case LibFunc_memcmp:
6696         if (visitMemCmpCall(I))
6697           return;
6698         break;
6699       case LibFunc_mempcpy:
6700         if (visitMemPCpyCall(I))
6701           return;
6702         break;
6703       case LibFunc_memchr:
6704         if (visitMemChrCall(I))
6705           return;
6706         break;
6707       case LibFunc_strcpy:
6708         if (visitStrCpyCall(I, false))
6709           return;
6710         break;
6711       case LibFunc_stpcpy:
6712         if (visitStrCpyCall(I, true))
6713           return;
6714         break;
6715       case LibFunc_strcmp:
6716         if (visitStrCmpCall(I))
6717           return;
6718         break;
6719       case LibFunc_strlen:
6720         if (visitStrLenCall(I))
6721           return;
6722         break;
6723       case LibFunc_strnlen:
6724         if (visitStrNLenCall(I))
6725           return;
6726         break;
6727       }
6728     }
6729   }
6730 
6731   SDValue Callee;
6732   if (!RenameFn)
6733     Callee = getValue(I.getCalledValue());
6734   else
6735     Callee = DAG.getExternalSymbol(
6736         RenameFn,
6737         DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()));
6738 
6739   // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't
6740   // have to do anything here to lower funclet bundles.
6741   assert(!I.hasOperandBundlesOtherThan(
6742              {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) &&
6743          "Cannot lower calls with arbitrary operand bundles!");
6744 
6745   if (I.countOperandBundlesOfType(LLVMContext::OB_deopt))
6746     LowerCallSiteWithDeoptBundle(&I, Callee, nullptr);
6747   else
6748     // Check if we can potentially perform a tail call. More detailed checking
6749     // is be done within LowerCallTo, after more information about the call is
6750     // known.
6751     LowerCallTo(&I, Callee, I.isTailCall());
6752 }
6753 
6754 namespace {
6755 
6756 /// AsmOperandInfo - This contains information for each constraint that we are
6757 /// lowering.
6758 class SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
6759 public:
6760   /// CallOperand - If this is the result output operand or a clobber
6761   /// this is null, otherwise it is the incoming operand to the CallInst.
6762   /// This gets modified as the asm is processed.
6763   SDValue CallOperand;
6764 
6765   /// AssignedRegs - If this is a register or register class operand, this
6766   /// contains the set of register corresponding to the operand.
6767   RegsForValue AssignedRegs;
6768 
6769   explicit SDISelAsmOperandInfo(const TargetLowering::AsmOperandInfo &info)
6770     : TargetLowering::AsmOperandInfo(info), CallOperand(nullptr,0) {
6771   }
6772 
6773   /// Whether or not this operand accesses memory
6774   bool hasMemory(const TargetLowering &TLI) const {
6775     // Indirect operand accesses access memory.
6776     if (isIndirect)
6777       return true;
6778 
6779     for (const auto &Code : Codes)
6780       if (TLI.getConstraintType(Code) == TargetLowering::C_Memory)
6781         return true;
6782 
6783     return false;
6784   }
6785 
6786   /// getCallOperandValEVT - Return the EVT of the Value* that this operand
6787   /// corresponds to.  If there is no Value* for this operand, it returns
6788   /// MVT::Other.
6789   EVT getCallOperandValEVT(LLVMContext &Context, const TargetLowering &TLI,
6790                            const DataLayout &DL) const {
6791     if (!CallOperandVal) return MVT::Other;
6792 
6793     if (isa<BasicBlock>(CallOperandVal))
6794       return TLI.getPointerTy(DL);
6795 
6796     llvm::Type *OpTy = CallOperandVal->getType();
6797 
6798     // FIXME: code duplicated from TargetLowering::ParseConstraints().
6799     // If this is an indirect operand, the operand is a pointer to the
6800     // accessed type.
6801     if (isIndirect) {
6802       llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
6803       if (!PtrTy)
6804         report_fatal_error("Indirect operand for inline asm not a pointer!");
6805       OpTy = PtrTy->getElementType();
6806     }
6807 
6808     // Look for vector wrapped in a struct. e.g. { <16 x i8> }.
6809     if (StructType *STy = dyn_cast<StructType>(OpTy))
6810       if (STy->getNumElements() == 1)
6811         OpTy = STy->getElementType(0);
6812 
6813     // If OpTy is not a single value, it may be a struct/union that we
6814     // can tile with integers.
6815     if (!OpTy->isSingleValueType() && OpTy->isSized()) {
6816       unsigned BitSize = DL.getTypeSizeInBits(OpTy);
6817       switch (BitSize) {
6818       default: break;
6819       case 1:
6820       case 8:
6821       case 16:
6822       case 32:
6823       case 64:
6824       case 128:
6825         OpTy = IntegerType::get(Context, BitSize);
6826         break;
6827       }
6828     }
6829 
6830     return TLI.getValueType(DL, OpTy, true);
6831   }
6832 };
6833 
6834 typedef SmallVector<SDISelAsmOperandInfo,16> SDISelAsmOperandInfoVector;
6835 
6836 } // end anonymous namespace
6837 
6838 /// Make sure that the output operand \p OpInfo and its corresponding input
6839 /// operand \p MatchingOpInfo have compatible constraint types (otherwise error
6840 /// out).
6841 static void patchMatchingInput(const SDISelAsmOperandInfo &OpInfo,
6842                                SDISelAsmOperandInfo &MatchingOpInfo,
6843                                SelectionDAG &DAG) {
6844   if (OpInfo.ConstraintVT == MatchingOpInfo.ConstraintVT)
6845     return;
6846 
6847   const TargetRegisterInfo *TRI = DAG.getSubtarget().getRegisterInfo();
6848   const auto &TLI = DAG.getTargetLoweringInfo();
6849 
6850   std::pair<unsigned, const TargetRegisterClass *> MatchRC =
6851       TLI.getRegForInlineAsmConstraint(TRI, OpInfo.ConstraintCode,
6852                                        OpInfo.ConstraintVT);
6853   std::pair<unsigned, const TargetRegisterClass *> InputRC =
6854       TLI.getRegForInlineAsmConstraint(TRI, MatchingOpInfo.ConstraintCode,
6855                                        MatchingOpInfo.ConstraintVT);
6856   if ((OpInfo.ConstraintVT.isInteger() !=
6857        MatchingOpInfo.ConstraintVT.isInteger()) ||
6858       (MatchRC.second != InputRC.second)) {
6859     // FIXME: error out in a more elegant fashion
6860     report_fatal_error("Unsupported asm: input constraint"
6861                        " with a matching output constraint of"
6862                        " incompatible type!");
6863   }
6864   MatchingOpInfo.ConstraintVT = OpInfo.ConstraintVT;
6865 }
6866 
6867 /// Get a direct memory input to behave well as an indirect operand.
6868 /// This may introduce stores, hence the need for a \p Chain.
6869 /// \return The (possibly updated) chain.
6870 static SDValue getAddressForMemoryInput(SDValue Chain, const SDLoc &Location,
6871                                         SDISelAsmOperandInfo &OpInfo,
6872                                         SelectionDAG &DAG) {
6873   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6874 
6875   // If we don't have an indirect input, put it in the constpool if we can,
6876   // otherwise spill it to a stack slot.
6877   // TODO: This isn't quite right. We need to handle these according to
6878   // the addressing mode that the constraint wants. Also, this may take
6879   // an additional register for the computation and we don't want that
6880   // either.
6881 
6882   // If the operand is a float, integer, or vector constant, spill to a
6883   // constant pool entry to get its address.
6884   const Value *OpVal = OpInfo.CallOperandVal;
6885   if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
6886       isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
6887     OpInfo.CallOperand = DAG.getConstantPool(
6888         cast<Constant>(OpVal), TLI.getPointerTy(DAG.getDataLayout()));
6889     return Chain;
6890   }
6891 
6892   // Otherwise, create a stack slot and emit a store to it before the asm.
6893   Type *Ty = OpVal->getType();
6894   auto &DL = DAG.getDataLayout();
6895   uint64_t TySize = DL.getTypeAllocSize(Ty);
6896   unsigned Align = DL.getPrefTypeAlignment(Ty);
6897   MachineFunction &MF = DAG.getMachineFunction();
6898   int SSFI = MF.getFrameInfo().CreateStackObject(TySize, Align, false);
6899   SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getFrameIndexTy(DL));
6900   Chain = DAG.getStore(Chain, Location, OpInfo.CallOperand, StackSlot,
6901                        MachinePointerInfo::getFixedStack(MF, SSFI));
6902   OpInfo.CallOperand = StackSlot;
6903 
6904   return Chain;
6905 }
6906 
6907 /// GetRegistersForValue - Assign registers (virtual or physical) for the
6908 /// specified operand.  We prefer to assign virtual registers, to allow the
6909 /// register allocator to handle the assignment process.  However, if the asm
6910 /// uses features that we can't model on machineinstrs, we have SDISel do the
6911 /// allocation.  This produces generally horrible, but correct, code.
6912 ///
6913 ///   OpInfo describes the operand.
6914 ///
6915 static void GetRegistersForValue(SelectionDAG &DAG, const TargetLowering &TLI,
6916                                  const SDLoc &DL,
6917                                  SDISelAsmOperandInfo &OpInfo) {
6918   LLVMContext &Context = *DAG.getContext();
6919 
6920   MachineFunction &MF = DAG.getMachineFunction();
6921   SmallVector<unsigned, 4> Regs;
6922   const TargetRegisterInfo &TRI = *MF.getSubtarget().getRegisterInfo();
6923 
6924   // If this is a constraint for a single physreg, or a constraint for a
6925   // register class, find it.
6926   std::pair<unsigned, const TargetRegisterClass *> PhysReg =
6927       TLI.getRegForInlineAsmConstraint(&TRI, OpInfo.ConstraintCode,
6928                                        OpInfo.ConstraintVT);
6929 
6930   unsigned NumRegs = 1;
6931   if (OpInfo.ConstraintVT != MVT::Other) {
6932     // If this is a FP input in an integer register (or visa versa) insert a bit
6933     // cast of the input value.  More generally, handle any case where the input
6934     // value disagrees with the register class we plan to stick this in.
6935     if (OpInfo.Type == InlineAsm::isInput && PhysReg.second &&
6936         !TRI.isTypeLegalForClass(*PhysReg.second, OpInfo.ConstraintVT)) {
6937       // Try to convert to the first EVT that the reg class contains.  If the
6938       // types are identical size, use a bitcast to convert (e.g. two differing
6939       // vector types).
6940       MVT RegVT = *TRI.legalclasstypes_begin(*PhysReg.second);
6941       if (RegVT.getSizeInBits() == OpInfo.CallOperand.getValueSizeInBits()) {
6942         OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
6943                                          RegVT, OpInfo.CallOperand);
6944         OpInfo.ConstraintVT = RegVT;
6945       } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
6946         // If the input is a FP value and we want it in FP registers, do a
6947         // bitcast to the corresponding integer type.  This turns an f64 value
6948         // into i64, which can be passed with two i32 values on a 32-bit
6949         // machine.
6950         RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
6951         OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL,
6952                                          RegVT, OpInfo.CallOperand);
6953         OpInfo.ConstraintVT = RegVT;
6954       }
6955     }
6956 
6957     NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
6958   }
6959 
6960   MVT RegVT;
6961   EVT ValueVT = OpInfo.ConstraintVT;
6962 
6963   // If this is a constraint for a specific physical register, like {r17},
6964   // assign it now.
6965   if (unsigned AssignedReg = PhysReg.first) {
6966     const TargetRegisterClass *RC = PhysReg.second;
6967     if (OpInfo.ConstraintVT == MVT::Other)
6968       ValueVT = *TRI.legalclasstypes_begin(*RC);
6969 
6970     // Get the actual register value type.  This is important, because the user
6971     // may have asked for (e.g.) the AX register in i32 type.  We need to
6972     // remember that AX is actually i16 to get the right extension.
6973     RegVT = *TRI.legalclasstypes_begin(*RC);
6974 
6975     // This is a explicit reference to a physical register.
6976     Regs.push_back(AssignedReg);
6977 
6978     // If this is an expanded reference, add the rest of the regs to Regs.
6979     if (NumRegs != 1) {
6980       TargetRegisterClass::iterator I = RC->begin();
6981       for (; *I != AssignedReg; ++I)
6982         assert(I != RC->end() && "Didn't find reg!");
6983 
6984       // Already added the first reg.
6985       --NumRegs; ++I;
6986       for (; NumRegs; --NumRegs, ++I) {
6987         assert(I != RC->end() && "Ran out of registers to allocate!");
6988         Regs.push_back(*I);
6989       }
6990     }
6991 
6992     OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
6993     return;
6994   }
6995 
6996   // Otherwise, if this was a reference to an LLVM register class, create vregs
6997   // for this reference.
6998   if (const TargetRegisterClass *RC = PhysReg.second) {
6999     RegVT = *TRI.legalclasstypes_begin(*RC);
7000     if (OpInfo.ConstraintVT == MVT::Other)
7001       ValueVT = RegVT;
7002 
7003     // Create the appropriate number of virtual registers.
7004     MachineRegisterInfo &RegInfo = MF.getRegInfo();
7005     for (; NumRegs; --NumRegs)
7006       Regs.push_back(RegInfo.createVirtualRegister(RC));
7007 
7008     OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT);
7009     return;
7010   }
7011 
7012   // Otherwise, we couldn't allocate enough registers for this.
7013 }
7014 
7015 static unsigned
7016 findMatchingInlineAsmOperand(unsigned OperandNo,
7017                              const std::vector<SDValue> &AsmNodeOperands) {
7018   // Scan until we find the definition we already emitted of this operand.
7019   unsigned CurOp = InlineAsm::Op_FirstOperand;
7020   for (; OperandNo; --OperandNo) {
7021     // Advance to the next operand.
7022     unsigned OpFlag =
7023         cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
7024     assert((InlineAsm::isRegDefKind(OpFlag) ||
7025             InlineAsm::isRegDefEarlyClobberKind(OpFlag) ||
7026             InlineAsm::isMemKind(OpFlag)) &&
7027            "Skipped past definitions?");
7028     CurOp += InlineAsm::getNumOperandRegisters(OpFlag) + 1;
7029   }
7030   return CurOp;
7031 }
7032 
7033 /// Fill \p Regs with \p NumRegs new virtual registers of type \p RegVT
7034 /// \return true if it has succeeded, false otherwise
7035 static bool createVirtualRegs(SmallVector<unsigned, 4> &Regs, unsigned NumRegs,
7036                               MVT RegVT, SelectionDAG &DAG) {
7037   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7038   MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
7039   for (unsigned i = 0, e = NumRegs; i != e; ++i) {
7040     if (const TargetRegisterClass *RC = TLI.getRegClassFor(RegVT))
7041       Regs.push_back(RegInfo.createVirtualRegister(RC));
7042     else
7043       return false;
7044   }
7045   return true;
7046 }
7047 
7048 namespace {
7049 class ExtraFlags {
7050   unsigned Flags = 0;
7051 
7052 public:
7053   explicit ExtraFlags(ImmutableCallSite CS) {
7054     const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
7055     if (IA->hasSideEffects())
7056       Flags |= InlineAsm::Extra_HasSideEffects;
7057     if (IA->isAlignStack())
7058       Flags |= InlineAsm::Extra_IsAlignStack;
7059     if (CS.isConvergent())
7060       Flags |= InlineAsm::Extra_IsConvergent;
7061     Flags |= IA->getDialect() * InlineAsm::Extra_AsmDialect;
7062   }
7063 
7064   void update(const llvm::TargetLowering::AsmOperandInfo &OpInfo) {
7065     // Ideally, we would only check against memory constraints.  However, the
7066     // meaning of an Other constraint can be target-specific and we can't easily
7067     // reason about it.  Therefore, be conservative and set MayLoad/MayStore
7068     // for Other constraints as well.
7069     if (OpInfo.ConstraintType == TargetLowering::C_Memory ||
7070         OpInfo.ConstraintType == TargetLowering::C_Other) {
7071       if (OpInfo.Type == InlineAsm::isInput)
7072         Flags |= InlineAsm::Extra_MayLoad;
7073       else if (OpInfo.Type == InlineAsm::isOutput)
7074         Flags |= InlineAsm::Extra_MayStore;
7075       else if (OpInfo.Type == InlineAsm::isClobber)
7076         Flags |= (InlineAsm::Extra_MayLoad | InlineAsm::Extra_MayStore);
7077     }
7078   }
7079 
7080   unsigned get() const { return Flags; }
7081 };
7082 } // namespace
7083 
7084 /// visitInlineAsm - Handle a call to an InlineAsm object.
7085 ///
7086 void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) {
7087   const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
7088 
7089   /// ConstraintOperands - Information about all of the constraints.
7090   SDISelAsmOperandInfoVector ConstraintOperands;
7091 
7092   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7093   TargetLowering::AsmOperandInfoVector TargetConstraints = TLI.ParseConstraints(
7094       DAG.getDataLayout(), DAG.getSubtarget().getRegisterInfo(), CS);
7095 
7096   bool hasMemory = false;
7097 
7098   // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore
7099   ExtraFlags ExtraInfo(CS);
7100 
7101   unsigned ArgNo = 0;   // ArgNo - The argument of the CallInst.
7102   unsigned ResNo = 0;   // ResNo - The result number of the next output.
7103   for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
7104     ConstraintOperands.push_back(SDISelAsmOperandInfo(TargetConstraints[i]));
7105     SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
7106 
7107     MVT OpVT = MVT::Other;
7108 
7109     // Compute the value type for each operand.
7110     if (OpInfo.Type == InlineAsm::isInput ||
7111         (OpInfo.Type == InlineAsm::isOutput && OpInfo.isIndirect)) {
7112       OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++));
7113 
7114       // Process the call argument. BasicBlocks are labels, currently appearing
7115       // only in asm's.
7116       if (const BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
7117         OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
7118       } else {
7119         OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
7120       }
7121 
7122       OpVT =
7123           OpInfo
7124               .getCallOperandValEVT(*DAG.getContext(), TLI, DAG.getDataLayout())
7125               .getSimpleVT();
7126     }
7127 
7128     if (OpInfo.Type == InlineAsm::isOutput && !OpInfo.isIndirect) {
7129       // The return value of the call is this value.  As such, there is no
7130       // corresponding argument.
7131       assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
7132       if (StructType *STy = dyn_cast<StructType>(CS.getType())) {
7133         OpVT = TLI.getSimpleValueType(DAG.getDataLayout(),
7134                                       STy->getElementType(ResNo));
7135       } else {
7136         assert(ResNo == 0 && "Asm only has one result!");
7137         OpVT = TLI.getSimpleValueType(DAG.getDataLayout(), CS.getType());
7138       }
7139       ++ResNo;
7140     }
7141 
7142     OpInfo.ConstraintVT = OpVT;
7143 
7144     if (!hasMemory)
7145       hasMemory = OpInfo.hasMemory(TLI);
7146 
7147     // Determine if this InlineAsm MayLoad or MayStore based on the constraints.
7148     // FIXME: Could we compute this on OpInfo rather than TargetConstraints[i]?
7149     auto TargetConstraint = TargetConstraints[i];
7150 
7151     // Compute the constraint code and ConstraintType to use.
7152     TLI.ComputeConstraintToUse(TargetConstraint, SDValue());
7153 
7154     ExtraInfo.update(TargetConstraint);
7155   }
7156 
7157   SDValue Chain, Flag;
7158 
7159   // We won't need to flush pending loads if this asm doesn't touch
7160   // memory and is nonvolatile.
7161   if (hasMemory || IA->hasSideEffects())
7162     Chain = getRoot();
7163   else
7164     Chain = DAG.getRoot();
7165 
7166   // Second pass over the constraints: compute which constraint option to use
7167   // and assign registers to constraints that want a specific physreg.
7168   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7169     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7170 
7171     // If this is an output operand with a matching input operand, look up the
7172     // matching input. If their types mismatch, e.g. one is an integer, the
7173     // other is floating point, or their sizes are different, flag it as an
7174     // error.
7175     if (OpInfo.hasMatchingInput()) {
7176       SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
7177       patchMatchingInput(OpInfo, Input, DAG);
7178     }
7179 
7180     // Compute the constraint code and ConstraintType to use.
7181     TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
7182 
7183     if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
7184         OpInfo.Type == InlineAsm::isClobber)
7185       continue;
7186 
7187     // If this is a memory input, and if the operand is not indirect, do what we
7188     // need to to provide an address for the memory input.
7189     if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
7190         !OpInfo.isIndirect) {
7191       assert((OpInfo.isMultipleAlternative ||
7192               (OpInfo.Type == InlineAsm::isInput)) &&
7193              "Can only indirectify direct input operands!");
7194 
7195       // Memory operands really want the address of the value.
7196       Chain = getAddressForMemoryInput(Chain, getCurSDLoc(), OpInfo, DAG);
7197 
7198       // There is no longer a Value* corresponding to this operand.
7199       OpInfo.CallOperandVal = nullptr;
7200 
7201       // It is now an indirect operand.
7202       OpInfo.isIndirect = true;
7203     }
7204 
7205     // If this constraint is for a specific register, allocate it before
7206     // anything else.
7207     if (OpInfo.ConstraintType == TargetLowering::C_Register)
7208       GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo);
7209   }
7210 
7211   // Third pass - Loop over all of the operands, assigning virtual or physregs
7212   // to register class operands.
7213   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7214     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7215 
7216     // C_Register operands have already been allocated, Other/Memory don't need
7217     // to be.
7218     if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
7219       GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo);
7220   }
7221 
7222   // AsmNodeOperands - The operands for the ISD::INLINEASM node.
7223   std::vector<SDValue> AsmNodeOperands;
7224   AsmNodeOperands.push_back(SDValue());  // reserve space for input chain
7225   AsmNodeOperands.push_back(DAG.getTargetExternalSymbol(
7226       IA->getAsmString().c_str(), TLI.getPointerTy(DAG.getDataLayout())));
7227 
7228   // If we have a !srcloc metadata node associated with it, we want to attach
7229   // this to the ultimately generated inline asm machineinstr.  To do this, we
7230   // pass in the third operand as this (potentially null) inline asm MDNode.
7231   const MDNode *SrcLoc = CS.getInstruction()->getMetadata("srcloc");
7232   AsmNodeOperands.push_back(DAG.getMDNode(SrcLoc));
7233 
7234   // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore
7235   // bits as operand 3.
7236   AsmNodeOperands.push_back(DAG.getTargetConstant(
7237       ExtraInfo.get(), getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7238 
7239   // Loop over all of the inputs, copying the operand values into the
7240   // appropriate registers and processing the output regs.
7241   RegsForValue RetValRegs;
7242 
7243   // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
7244   std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
7245 
7246   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
7247     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
7248 
7249     switch (OpInfo.Type) {
7250     case InlineAsm::isOutput: {
7251       if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
7252           OpInfo.ConstraintType != TargetLowering::C_Register) {
7253         // Memory output, or 'other' output (e.g. 'X' constraint).
7254         assert(OpInfo.isIndirect && "Memory output must be indirect operand");
7255 
7256         unsigned ConstraintID =
7257             TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode);
7258         assert(ConstraintID != InlineAsm::Constraint_Unknown &&
7259                "Failed to convert memory constraint code to constraint id.");
7260 
7261         // Add information to the INLINEASM node to know about this output.
7262         unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
7263         OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID);
7264         AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlags, getCurSDLoc(),
7265                                                         MVT::i32));
7266         AsmNodeOperands.push_back(OpInfo.CallOperand);
7267         break;
7268       }
7269 
7270       // Otherwise, this is a register or register class output.
7271 
7272       // Copy the output from the appropriate register.  Find a register that
7273       // we can use.
7274       if (OpInfo.AssignedRegs.Regs.empty()) {
7275         emitInlineAsmError(
7276             CS, "couldn't allocate output register for constraint '" +
7277                     Twine(OpInfo.ConstraintCode) + "'");
7278         return;
7279       }
7280 
7281       // If this is an indirect operand, store through the pointer after the
7282       // asm.
7283       if (OpInfo.isIndirect) {
7284         IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
7285                                                       OpInfo.CallOperandVal));
7286       } else {
7287         // This is the result value of the call.
7288         assert(!CS.getType()->isVoidTy() && "Bad inline asm!");
7289         // Concatenate this output onto the outputs list.
7290         RetValRegs.append(OpInfo.AssignedRegs);
7291       }
7292 
7293       // Add information to the INLINEASM node to know that this register is
7294       // set.
7295       OpInfo.AssignedRegs
7296           .AddInlineAsmOperands(OpInfo.isEarlyClobber
7297                                     ? InlineAsm::Kind_RegDefEarlyClobber
7298                                     : InlineAsm::Kind_RegDef,
7299                                 false, 0, getCurSDLoc(), DAG, AsmNodeOperands);
7300       break;
7301     }
7302     case InlineAsm::isInput: {
7303       SDValue InOperandVal = OpInfo.CallOperand;
7304 
7305       if (OpInfo.isMatchingInputConstraint()) {
7306         // If this is required to match an output register we have already set,
7307         // just use its register.
7308         auto CurOp = findMatchingInlineAsmOperand(OpInfo.getMatchedOperand(),
7309                                                   AsmNodeOperands);
7310         unsigned OpFlag =
7311           cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
7312         if (InlineAsm::isRegDefKind(OpFlag) ||
7313             InlineAsm::isRegDefEarlyClobberKind(OpFlag)) {
7314           // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
7315           if (OpInfo.isIndirect) {
7316             // This happens on gcc/testsuite/gcc.dg/pr8788-1.c
7317             emitInlineAsmError(CS, "inline asm not supported yet:"
7318                                    " don't know how to handle tied "
7319                                    "indirect register inputs");
7320             return;
7321           }
7322 
7323           MVT RegVT = AsmNodeOperands[CurOp+1].getSimpleValueType();
7324           SmallVector<unsigned, 4> Regs;
7325 
7326           if (!createVirtualRegs(Regs,
7327                                  InlineAsm::getNumOperandRegisters(OpFlag),
7328                                  RegVT, DAG)) {
7329             emitInlineAsmError(CS, "inline asm error: This value type register "
7330                                    "class is not natively supported!");
7331             return;
7332           }
7333 
7334           RegsForValue MatchedRegs(Regs, RegVT, InOperandVal.getValueType());
7335 
7336           SDLoc dl = getCurSDLoc();
7337           // Use the produced MatchedRegs object to
7338           MatchedRegs.getCopyToRegs(InOperandVal, DAG, dl, Chain, &Flag,
7339                                     CS.getInstruction());
7340           MatchedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse,
7341                                            true, OpInfo.getMatchedOperand(), dl,
7342                                            DAG, AsmNodeOperands);
7343           break;
7344         }
7345 
7346         assert(InlineAsm::isMemKind(OpFlag) && "Unknown matching constraint!");
7347         assert(InlineAsm::getNumOperandRegisters(OpFlag) == 1 &&
7348                "Unexpected number of operands");
7349         // Add information to the INLINEASM node to know about this input.
7350         // See InlineAsm.h isUseOperandTiedToDef.
7351         OpFlag = InlineAsm::convertMemFlagWordToMatchingFlagWord(OpFlag);
7352         OpFlag = InlineAsm::getFlagWordForMatchingOp(OpFlag,
7353                                                     OpInfo.getMatchedOperand());
7354         AsmNodeOperands.push_back(DAG.getTargetConstant(
7355             OpFlag, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7356         AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
7357         break;
7358       }
7359 
7360       // Treat indirect 'X' constraint as memory.
7361       if (OpInfo.ConstraintType == TargetLowering::C_Other &&
7362           OpInfo.isIndirect)
7363         OpInfo.ConstraintType = TargetLowering::C_Memory;
7364 
7365       if (OpInfo.ConstraintType == TargetLowering::C_Other) {
7366         std::vector<SDValue> Ops;
7367         TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode,
7368                                           Ops, DAG);
7369         if (Ops.empty()) {
7370           emitInlineAsmError(CS, "invalid operand for inline asm constraint '" +
7371                                      Twine(OpInfo.ConstraintCode) + "'");
7372           return;
7373         }
7374 
7375         // Add information to the INLINEASM node to know about this input.
7376         unsigned ResOpType =
7377           InlineAsm::getFlagWord(InlineAsm::Kind_Imm, Ops.size());
7378         AsmNodeOperands.push_back(DAG.getTargetConstant(
7379             ResOpType, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout())));
7380         AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
7381         break;
7382       }
7383 
7384       if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
7385         assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
7386         assert(InOperandVal.getValueType() ==
7387                    TLI.getPointerTy(DAG.getDataLayout()) &&
7388                "Memory operands expect pointer values");
7389 
7390         unsigned ConstraintID =
7391             TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode);
7392         assert(ConstraintID != InlineAsm::Constraint_Unknown &&
7393                "Failed to convert memory constraint code to constraint id.");
7394 
7395         // Add information to the INLINEASM node to know about this input.
7396         unsigned ResOpType = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1);
7397         ResOpType = InlineAsm::getFlagWordForMem(ResOpType, ConstraintID);
7398         AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
7399                                                         getCurSDLoc(),
7400                                                         MVT::i32));
7401         AsmNodeOperands.push_back(InOperandVal);
7402         break;
7403       }
7404 
7405       assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
7406               OpInfo.ConstraintType == TargetLowering::C_Register) &&
7407              "Unknown constraint type!");
7408 
7409       // TODO: Support this.
7410       if (OpInfo.isIndirect) {
7411         emitInlineAsmError(
7412             CS, "Don't know how to handle indirect register inputs yet "
7413                 "for constraint '" +
7414                     Twine(OpInfo.ConstraintCode) + "'");
7415         return;
7416       }
7417 
7418       // Copy the input into the appropriate registers.
7419       if (OpInfo.AssignedRegs.Regs.empty()) {
7420         emitInlineAsmError(CS, "couldn't allocate input reg for constraint '" +
7421                                    Twine(OpInfo.ConstraintCode) + "'");
7422         return;
7423       }
7424 
7425       SDLoc dl = getCurSDLoc();
7426 
7427       OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, dl,
7428                                         Chain, &Flag, CS.getInstruction());
7429 
7430       OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse, false, 0,
7431                                                dl, DAG, AsmNodeOperands);
7432       break;
7433     }
7434     case InlineAsm::isClobber: {
7435       // Add the clobbered value to the operand list, so that the register
7436       // allocator is aware that the physreg got clobbered.
7437       if (!OpInfo.AssignedRegs.Regs.empty())
7438         OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_Clobber,
7439                                                  false, 0, getCurSDLoc(), DAG,
7440                                                  AsmNodeOperands);
7441       break;
7442     }
7443     }
7444   }
7445 
7446   // Finish up input operands.  Set the input chain and add the flag last.
7447   AsmNodeOperands[InlineAsm::Op_InputChain] = Chain;
7448   if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
7449 
7450   Chain = DAG.getNode(ISD::INLINEASM, getCurSDLoc(),
7451                       DAG.getVTList(MVT::Other, MVT::Glue), AsmNodeOperands);
7452   Flag = Chain.getValue(1);
7453 
7454   // If this asm returns a register value, copy the result from that register
7455   // and set it as the value of the call.
7456   if (!RetValRegs.Regs.empty()) {
7457     SDValue Val = RetValRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
7458                                              Chain, &Flag, CS.getInstruction());
7459 
7460     // FIXME: Why don't we do this for inline asms with MRVs?
7461     if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
7462       EVT ResultType = TLI.getValueType(DAG.getDataLayout(), CS.getType());
7463 
7464       // If any of the results of the inline asm is a vector, it may have the
7465       // wrong width/num elts.  This can happen for register classes that can
7466       // contain multiple different value types.  The preg or vreg allocated may
7467       // not have the same VT as was expected.  Convert it to the right type
7468       // with bit_convert.
7469       if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
7470         Val = DAG.getNode(ISD::BITCAST, getCurSDLoc(),
7471                           ResultType, Val);
7472 
7473       } else if (ResultType != Val.getValueType() &&
7474                  ResultType.isInteger() && Val.getValueType().isInteger()) {
7475         // If a result value was tied to an input value, the computed result may
7476         // have a wider width than the expected result.  Extract the relevant
7477         // portion.
7478         Val = DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), ResultType, Val);
7479       }
7480 
7481       assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
7482     }
7483 
7484     setValue(CS.getInstruction(), Val);
7485     // Don't need to use this as a chain in this case.
7486     if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
7487       return;
7488   }
7489 
7490   std::vector<std::pair<SDValue, const Value *> > StoresToEmit;
7491 
7492   // Process indirect outputs, first output all of the flagged copies out of
7493   // physregs.
7494   for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
7495     RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
7496     const Value *Ptr = IndirectStoresToEmit[i].second;
7497     SDValue OutVal = OutRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
7498                                              Chain, &Flag, IA);
7499     StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
7500   }
7501 
7502   // Emit the non-flagged stores from the physregs.
7503   SmallVector<SDValue, 8> OutChains;
7504   for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) {
7505     SDValue Val = DAG.getStore(Chain, getCurSDLoc(), StoresToEmit[i].first,
7506                                getValue(StoresToEmit[i].second),
7507                                MachinePointerInfo(StoresToEmit[i].second));
7508     OutChains.push_back(Val);
7509   }
7510 
7511   if (!OutChains.empty())
7512     Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, OutChains);
7513 
7514   DAG.setRoot(Chain);
7515 }
7516 
7517 void SelectionDAGBuilder::emitInlineAsmError(ImmutableCallSite CS,
7518                                              const Twine &Message) {
7519   LLVMContext &Ctx = *DAG.getContext();
7520   Ctx.emitError(CS.getInstruction(), Message);
7521 
7522   // Make sure we leave the DAG in a valid state
7523   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7524   auto VT = TLI.getValueType(DAG.getDataLayout(), CS.getType());
7525   setValue(CS.getInstruction(), DAG.getUNDEF(VT));
7526 }
7527 
7528 void SelectionDAGBuilder::visitVAStart(const CallInst &I) {
7529   DAG.setRoot(DAG.getNode(ISD::VASTART, getCurSDLoc(),
7530                           MVT::Other, getRoot(),
7531                           getValue(I.getArgOperand(0)),
7532                           DAG.getSrcValue(I.getArgOperand(0))));
7533 }
7534 
7535 void SelectionDAGBuilder::visitVAArg(const VAArgInst &I) {
7536   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7537   const DataLayout &DL = DAG.getDataLayout();
7538   SDValue V = DAG.getVAArg(TLI.getValueType(DAG.getDataLayout(), I.getType()),
7539                            getCurSDLoc(), getRoot(), getValue(I.getOperand(0)),
7540                            DAG.getSrcValue(I.getOperand(0)),
7541                            DL.getABITypeAlignment(I.getType()));
7542   setValue(&I, V);
7543   DAG.setRoot(V.getValue(1));
7544 }
7545 
7546 void SelectionDAGBuilder::visitVAEnd(const CallInst &I) {
7547   DAG.setRoot(DAG.getNode(ISD::VAEND, getCurSDLoc(),
7548                           MVT::Other, getRoot(),
7549                           getValue(I.getArgOperand(0)),
7550                           DAG.getSrcValue(I.getArgOperand(0))));
7551 }
7552 
7553 void SelectionDAGBuilder::visitVACopy(const CallInst &I) {
7554   DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurSDLoc(),
7555                           MVT::Other, getRoot(),
7556                           getValue(I.getArgOperand(0)),
7557                           getValue(I.getArgOperand(1)),
7558                           DAG.getSrcValue(I.getArgOperand(0)),
7559                           DAG.getSrcValue(I.getArgOperand(1))));
7560 }
7561 
7562 SDValue SelectionDAGBuilder::lowerRangeToAssertZExt(SelectionDAG &DAG,
7563                                                     const Instruction &I,
7564                                                     SDValue Op) {
7565   const MDNode *Range = I.getMetadata(LLVMContext::MD_range);
7566   if (!Range)
7567     return Op;
7568 
7569   ConstantRange CR = getConstantRangeFromMetadata(*Range);
7570   if (CR.isFullSet() || CR.isEmptySet() || CR.isWrappedSet())
7571     return Op;
7572 
7573   APInt Lo = CR.getUnsignedMin();
7574   if (!Lo.isMinValue())
7575     return Op;
7576 
7577   APInt Hi = CR.getUnsignedMax();
7578   unsigned Bits = Hi.getActiveBits();
7579 
7580   EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), Bits);
7581 
7582   SDLoc SL = getCurSDLoc();
7583 
7584   SDValue ZExt = DAG.getNode(ISD::AssertZext, SL, Op.getValueType(), Op,
7585                              DAG.getValueType(SmallVT));
7586   unsigned NumVals = Op.getNode()->getNumValues();
7587   if (NumVals == 1)
7588     return ZExt;
7589 
7590   SmallVector<SDValue, 4> Ops;
7591 
7592   Ops.push_back(ZExt);
7593   for (unsigned I = 1; I != NumVals; ++I)
7594     Ops.push_back(Op.getValue(I));
7595 
7596   return DAG.getMergeValues(Ops, SL);
7597 }
7598 
7599 /// \brief Populate a CallLowerinInfo (into \p CLI) based on the properties of
7600 /// the call being lowered.
7601 ///
7602 /// This is a helper for lowering intrinsics that follow a target calling
7603 /// convention or require stack pointer adjustment. Only a subset of the
7604 /// intrinsic's operands need to participate in the calling convention.
7605 void SelectionDAGBuilder::populateCallLoweringInfo(
7606     TargetLowering::CallLoweringInfo &CLI, ImmutableCallSite CS,
7607     unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy,
7608     bool IsPatchPoint) {
7609   TargetLowering::ArgListTy Args;
7610   Args.reserve(NumArgs);
7611 
7612   // Populate the argument list.
7613   // Attributes for args start at offset 1, after the return attribute.
7614   for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs;
7615        ArgI != ArgE; ++ArgI) {
7616     const Value *V = CS->getOperand(ArgI);
7617 
7618     assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic.");
7619 
7620     TargetLowering::ArgListEntry Entry;
7621     Entry.Node = getValue(V);
7622     Entry.Ty = V->getType();
7623     Entry.setAttributes(&CS, ArgIdx);
7624     Args.push_back(Entry);
7625   }
7626 
7627   CLI.setDebugLoc(getCurSDLoc())
7628       .setChain(getRoot())
7629       .setCallee(CS.getCallingConv(), ReturnTy, Callee, std::move(Args))
7630       .setDiscardResult(CS->use_empty())
7631       .setIsPatchPoint(IsPatchPoint);
7632 }
7633 
7634 /// \brief Add a stack map intrinsic call's live variable operands to a stackmap
7635 /// or patchpoint target node's operand list.
7636 ///
7637 /// Constants are converted to TargetConstants purely as an optimization to
7638 /// avoid constant materialization and register allocation.
7639 ///
7640 /// FrameIndex operands are converted to TargetFrameIndex so that ISEL does not
7641 /// generate addess computation nodes, and so ExpandISelPseudo can convert the
7642 /// TargetFrameIndex into a DirectMemRefOp StackMap location. This avoids
7643 /// address materialization and register allocation, but may also be required
7644 /// for correctness. If a StackMap (or PatchPoint) intrinsic directly uses an
7645 /// alloca in the entry block, then the runtime may assume that the alloca's
7646 /// StackMap location can be read immediately after compilation and that the
7647 /// location is valid at any point during execution (this is similar to the
7648 /// assumption made by the llvm.gcroot intrinsic). If the alloca's location were
7649 /// only available in a register, then the runtime would need to trap when
7650 /// execution reaches the StackMap in order to read the alloca's location.
7651 static void addStackMapLiveVars(ImmutableCallSite CS, unsigned StartIdx,
7652                                 const SDLoc &DL, SmallVectorImpl<SDValue> &Ops,
7653                                 SelectionDAGBuilder &Builder) {
7654   for (unsigned i = StartIdx, e = CS.arg_size(); i != e; ++i) {
7655     SDValue OpVal = Builder.getValue(CS.getArgument(i));
7656     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
7657       Ops.push_back(
7658         Builder.DAG.getTargetConstant(StackMaps::ConstantOp, DL, MVT::i64));
7659       Ops.push_back(
7660         Builder.DAG.getTargetConstant(C->getSExtValue(), DL, MVT::i64));
7661     } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) {
7662       const TargetLowering &TLI = Builder.DAG.getTargetLoweringInfo();
7663       Ops.push_back(Builder.DAG.getTargetFrameIndex(
7664           FI->getIndex(), TLI.getFrameIndexTy(Builder.DAG.getDataLayout())));
7665     } else
7666       Ops.push_back(OpVal);
7667   }
7668 }
7669 
7670 /// \brief Lower llvm.experimental.stackmap directly to its target opcode.
7671 void SelectionDAGBuilder::visitStackmap(const CallInst &CI) {
7672   // void @llvm.experimental.stackmap(i32 <id>, i32 <numShadowBytes>,
7673   //                                  [live variables...])
7674 
7675   assert(CI.getType()->isVoidTy() && "Stackmap cannot return a value.");
7676 
7677   SDValue Chain, InFlag, Callee, NullPtr;
7678   SmallVector<SDValue, 32> Ops;
7679 
7680   SDLoc DL = getCurSDLoc();
7681   Callee = getValue(CI.getCalledValue());
7682   NullPtr = DAG.getIntPtrConstant(0, DL, true);
7683 
7684   // The stackmap intrinsic only records the live variables (the arguemnts
7685   // passed to it) and emits NOPS (if requested). Unlike the patchpoint
7686   // intrinsic, this won't be lowered to a function call. This means we don't
7687   // have to worry about calling conventions and target specific lowering code.
7688   // Instead we perform the call lowering right here.
7689   //
7690   // chain, flag = CALLSEQ_START(chain, 0, 0)
7691   // chain, flag = STACKMAP(id, nbytes, ..., chain, flag)
7692   // chain, flag = CALLSEQ_END(chain, 0, 0, flag)
7693   //
7694   Chain = DAG.getCALLSEQ_START(getRoot(), 0, 0, DL);
7695   InFlag = Chain.getValue(1);
7696 
7697   // Add the <id> and <numBytes> constants.
7698   SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos));
7699   Ops.push_back(DAG.getTargetConstant(
7700                   cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64));
7701   SDValue NBytesVal = getValue(CI.getOperand(PatchPointOpers::NBytesPos));
7702   Ops.push_back(DAG.getTargetConstant(
7703                   cast<ConstantSDNode>(NBytesVal)->getZExtValue(), DL,
7704                   MVT::i32));
7705 
7706   // Push live variables for the stack map.
7707   addStackMapLiveVars(&CI, 2, DL, Ops, *this);
7708 
7709   // We are not pushing any register mask info here on the operands list,
7710   // because the stackmap doesn't clobber anything.
7711 
7712   // Push the chain and the glue flag.
7713   Ops.push_back(Chain);
7714   Ops.push_back(InFlag);
7715 
7716   // Create the STACKMAP node.
7717   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7718   SDNode *SM = DAG.getMachineNode(TargetOpcode::STACKMAP, DL, NodeTys, Ops);
7719   Chain = SDValue(SM, 0);
7720   InFlag = Chain.getValue(1);
7721 
7722   Chain = DAG.getCALLSEQ_END(Chain, NullPtr, NullPtr, InFlag, DL);
7723 
7724   // Stackmaps don't generate values, so nothing goes into the NodeMap.
7725 
7726   // Set the root to the target-lowered call chain.
7727   DAG.setRoot(Chain);
7728 
7729   // Inform the Frame Information that we have a stackmap in this function.
7730   FuncInfo.MF->getFrameInfo().setHasStackMap();
7731 }
7732 
7733 /// \brief Lower llvm.experimental.patchpoint directly to its target opcode.
7734 void SelectionDAGBuilder::visitPatchpoint(ImmutableCallSite CS,
7735                                           const BasicBlock *EHPadBB) {
7736   // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>,
7737   //                                                 i32 <numBytes>,
7738   //                                                 i8* <target>,
7739   //                                                 i32 <numArgs>,
7740   //                                                 [Args...],
7741   //                                                 [live variables...])
7742 
7743   CallingConv::ID CC = CS.getCallingConv();
7744   bool IsAnyRegCC = CC == CallingConv::AnyReg;
7745   bool HasDef = !CS->getType()->isVoidTy();
7746   SDLoc dl = getCurSDLoc();
7747   SDValue Callee = getValue(CS->getOperand(PatchPointOpers::TargetPos));
7748 
7749   // Handle immediate and symbolic callees.
7750   if (auto* ConstCallee = dyn_cast<ConstantSDNode>(Callee))
7751     Callee = DAG.getIntPtrConstant(ConstCallee->getZExtValue(), dl,
7752                                    /*isTarget=*/true);
7753   else if (auto* SymbolicCallee = dyn_cast<GlobalAddressSDNode>(Callee))
7754     Callee =  DAG.getTargetGlobalAddress(SymbolicCallee->getGlobal(),
7755                                          SDLoc(SymbolicCallee),
7756                                          SymbolicCallee->getValueType(0));
7757 
7758   // Get the real number of arguments participating in the call <numArgs>
7759   SDValue NArgVal = getValue(CS.getArgument(PatchPointOpers::NArgPos));
7760   unsigned NumArgs = cast<ConstantSDNode>(NArgVal)->getZExtValue();
7761 
7762   // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs>
7763   // Intrinsics include all meta-operands up to but not including CC.
7764   unsigned NumMetaOpers = PatchPointOpers::CCPos;
7765   assert(CS.arg_size() >= NumMetaOpers + NumArgs &&
7766          "Not enough arguments provided to the patchpoint intrinsic");
7767 
7768   // For AnyRegCC the arguments are lowered later on manually.
7769   unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
7770   Type *ReturnTy =
7771     IsAnyRegCC ? Type::getVoidTy(*DAG.getContext()) : CS->getType();
7772 
7773   TargetLowering::CallLoweringInfo CLI(DAG);
7774   populateCallLoweringInfo(CLI, CS, NumMetaOpers, NumCallArgs, Callee, ReturnTy,
7775                            true);
7776   std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB);
7777 
7778   SDNode *CallEnd = Result.second.getNode();
7779   if (HasDef && (CallEnd->getOpcode() == ISD::CopyFromReg))
7780     CallEnd = CallEnd->getOperand(0).getNode();
7781 
7782   /// Get a call instruction from the call sequence chain.
7783   /// Tail calls are not allowed.
7784   assert(CallEnd->getOpcode() == ISD::CALLSEQ_END &&
7785          "Expected a callseq node.");
7786   SDNode *Call = CallEnd->getOperand(0).getNode();
7787   bool HasGlue = Call->getGluedNode();
7788 
7789   // Replace the target specific call node with the patchable intrinsic.
7790   SmallVector<SDValue, 8> Ops;
7791 
7792   // Add the <id> and <numBytes> constants.
7793   SDValue IDVal = getValue(CS->getOperand(PatchPointOpers::IDPos));
7794   Ops.push_back(DAG.getTargetConstant(
7795                   cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64));
7796   SDValue NBytesVal = getValue(CS->getOperand(PatchPointOpers::NBytesPos));
7797   Ops.push_back(DAG.getTargetConstant(
7798                   cast<ConstantSDNode>(NBytesVal)->getZExtValue(), dl,
7799                   MVT::i32));
7800 
7801   // Add the callee.
7802   Ops.push_back(Callee);
7803 
7804   // Adjust <numArgs> to account for any arguments that have been passed on the
7805   // stack instead.
7806   // Call Node: Chain, Target, {Args}, RegMask, [Glue]
7807   unsigned NumCallRegArgs = Call->getNumOperands() - (HasGlue ? 4 : 3);
7808   NumCallRegArgs = IsAnyRegCC ? NumArgs : NumCallRegArgs;
7809   Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, dl, MVT::i32));
7810 
7811   // Add the calling convention
7812   Ops.push_back(DAG.getTargetConstant((unsigned)CC, dl, MVT::i32));
7813 
7814   // Add the arguments we omitted previously. The register allocator should
7815   // place these in any free register.
7816   if (IsAnyRegCC)
7817     for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i)
7818       Ops.push_back(getValue(CS.getArgument(i)));
7819 
7820   // Push the arguments from the call instruction up to the register mask.
7821   SDNode::op_iterator e = HasGlue ? Call->op_end()-2 : Call->op_end()-1;
7822   Ops.append(Call->op_begin() + 2, e);
7823 
7824   // Push live variables for the stack map.
7825   addStackMapLiveVars(CS, NumMetaOpers + NumArgs, dl, Ops, *this);
7826 
7827   // Push the register mask info.
7828   if (HasGlue)
7829     Ops.push_back(*(Call->op_end()-2));
7830   else
7831     Ops.push_back(*(Call->op_end()-1));
7832 
7833   // Push the chain (this is originally the first operand of the call, but
7834   // becomes now the last or second to last operand).
7835   Ops.push_back(*(Call->op_begin()));
7836 
7837   // Push the glue flag (last operand).
7838   if (HasGlue)
7839     Ops.push_back(*(Call->op_end()-1));
7840 
7841   SDVTList NodeTys;
7842   if (IsAnyRegCC && HasDef) {
7843     // Create the return types based on the intrinsic definition
7844     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7845     SmallVector<EVT, 3> ValueVTs;
7846     ComputeValueVTs(TLI, DAG.getDataLayout(), CS->getType(), ValueVTs);
7847     assert(ValueVTs.size() == 1 && "Expected only one return value type.");
7848 
7849     // There is always a chain and a glue type at the end
7850     ValueVTs.push_back(MVT::Other);
7851     ValueVTs.push_back(MVT::Glue);
7852     NodeTys = DAG.getVTList(ValueVTs);
7853   } else
7854     NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7855 
7856   // Replace the target specific call node with a PATCHPOINT node.
7857   MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHPOINT,
7858                                          dl, NodeTys, Ops);
7859 
7860   // Update the NodeMap.
7861   if (HasDef) {
7862     if (IsAnyRegCC)
7863       setValue(CS.getInstruction(), SDValue(MN, 0));
7864     else
7865       setValue(CS.getInstruction(), Result.first);
7866   }
7867 
7868   // Fixup the consumers of the intrinsic. The chain and glue may be used in the
7869   // call sequence. Furthermore the location of the chain and glue can change
7870   // when the AnyReg calling convention is used and the intrinsic returns a
7871   // value.
7872   if (IsAnyRegCC && HasDef) {
7873     SDValue From[] = {SDValue(Call, 0), SDValue(Call, 1)};
7874     SDValue To[] = {SDValue(MN, 1), SDValue(MN, 2)};
7875     DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
7876   } else
7877     DAG.ReplaceAllUsesWith(Call, MN);
7878   DAG.DeleteNode(Call);
7879 
7880   // Inform the Frame Information that we have a patchpoint in this function.
7881   FuncInfo.MF->getFrameInfo().setHasPatchPoint();
7882 }
7883 
7884 void SelectionDAGBuilder::visitVectorReduce(const CallInst &I,
7885                                             unsigned Intrinsic) {
7886   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7887   SDValue Op1 = getValue(I.getArgOperand(0));
7888   SDValue Op2;
7889   if (I.getNumArgOperands() > 1)
7890     Op2 = getValue(I.getArgOperand(1));
7891   SDLoc dl = getCurSDLoc();
7892   EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType());
7893   SDValue Res;
7894   FastMathFlags FMF;
7895   if (isa<FPMathOperator>(I))
7896     FMF = I.getFastMathFlags();
7897   SDNodeFlags SDFlags;
7898   SDFlags.setNoNaNs(FMF.noNaNs());
7899 
7900   switch (Intrinsic) {
7901   case Intrinsic::experimental_vector_reduce_fadd:
7902     if (FMF.unsafeAlgebra())
7903       Res = DAG.getNode(ISD::VECREDUCE_FADD, dl, VT, Op2);
7904     else
7905       Res = DAG.getNode(ISD::VECREDUCE_STRICT_FADD, dl, VT, Op1, Op2);
7906     break;
7907   case Intrinsic::experimental_vector_reduce_fmul:
7908     if (FMF.unsafeAlgebra())
7909       Res = DAG.getNode(ISD::VECREDUCE_FMUL, dl, VT, Op2);
7910     else
7911       Res = DAG.getNode(ISD::VECREDUCE_STRICT_FMUL, dl, VT, Op1, Op2);
7912     break;
7913   case Intrinsic::experimental_vector_reduce_add:
7914     Res = DAG.getNode(ISD::VECREDUCE_ADD, dl, VT, Op1);
7915     break;
7916   case Intrinsic::experimental_vector_reduce_mul:
7917     Res = DAG.getNode(ISD::VECREDUCE_MUL, dl, VT, Op1);
7918     break;
7919   case Intrinsic::experimental_vector_reduce_and:
7920     Res = DAG.getNode(ISD::VECREDUCE_AND, dl, VT, Op1);
7921     break;
7922   case Intrinsic::experimental_vector_reduce_or:
7923     Res = DAG.getNode(ISD::VECREDUCE_OR, dl, VT, Op1);
7924     break;
7925   case Intrinsic::experimental_vector_reduce_xor:
7926     Res = DAG.getNode(ISD::VECREDUCE_XOR, dl, VT, Op1);
7927     break;
7928   case Intrinsic::experimental_vector_reduce_smax:
7929     Res = DAG.getNode(ISD::VECREDUCE_SMAX, dl, VT, Op1);
7930     break;
7931   case Intrinsic::experimental_vector_reduce_smin:
7932     Res = DAG.getNode(ISD::VECREDUCE_SMIN, dl, VT, Op1);
7933     break;
7934   case Intrinsic::experimental_vector_reduce_umax:
7935     Res = DAG.getNode(ISD::VECREDUCE_UMAX, dl, VT, Op1);
7936     break;
7937   case Intrinsic::experimental_vector_reduce_umin:
7938     Res = DAG.getNode(ISD::VECREDUCE_UMIN, dl, VT, Op1);
7939     break;
7940   case Intrinsic::experimental_vector_reduce_fmax: {
7941     Res = DAG.getNode(ISD::VECREDUCE_FMAX, dl, VT, Op1, SDFlags);
7942     break;
7943   }
7944   case Intrinsic::experimental_vector_reduce_fmin: {
7945     Res = DAG.getNode(ISD::VECREDUCE_FMIN, dl, VT, Op1, SDFlags);
7946     break;
7947   }
7948   default:
7949     llvm_unreachable("Unhandled vector reduce intrinsic");
7950   }
7951   setValue(&I, Res);
7952 }
7953 
7954 /// Returns an AttributeList representing the attributes applied to the return
7955 /// value of the given call.
7956 static AttributeList getReturnAttrs(TargetLowering::CallLoweringInfo &CLI) {
7957   SmallVector<Attribute::AttrKind, 2> Attrs;
7958   if (CLI.RetSExt)
7959     Attrs.push_back(Attribute::SExt);
7960   if (CLI.RetZExt)
7961     Attrs.push_back(Attribute::ZExt);
7962   if (CLI.IsInReg)
7963     Attrs.push_back(Attribute::InReg);
7964 
7965   return AttributeList::get(CLI.RetTy->getContext(), AttributeList::ReturnIndex,
7966                             Attrs);
7967 }
7968 
7969 /// TargetLowering::LowerCallTo - This is the default LowerCallTo
7970 /// implementation, which just calls LowerCall.
7971 /// FIXME: When all targets are
7972 /// migrated to using LowerCall, this hook should be integrated into SDISel.
7973 std::pair<SDValue, SDValue>
7974 TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
7975   // Handle the incoming return values from the call.
7976   CLI.Ins.clear();
7977   Type *OrigRetTy = CLI.RetTy;
7978   SmallVector<EVT, 4> RetTys;
7979   SmallVector<uint64_t, 4> Offsets;
7980   auto &DL = CLI.DAG.getDataLayout();
7981   ComputeValueVTs(*this, DL, CLI.RetTy, RetTys, &Offsets);
7982 
7983   if (CLI.IsPostTypeLegalization) {
7984     // If we are lowering a libcall after legalization, split the return type.
7985     SmallVector<EVT, 4> OldRetTys = std::move(RetTys);
7986     SmallVector<uint64_t, 4> OldOffsets = std::move(Offsets);
7987     for (size_t i = 0, e = OldRetTys.size(); i != e; ++i) {
7988       EVT RetVT = OldRetTys[i];
7989       uint64_t Offset = OldOffsets[i];
7990       MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), RetVT);
7991       unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), RetVT);
7992       unsigned RegisterVTSize = RegisterVT.getSizeInBits();
7993       RetTys.append(NumRegs, RegisterVT);
7994       for (unsigned j = 0; j != NumRegs; ++j)
7995         Offsets.push_back(Offset + j * RegisterVTSize);
7996     }
7997   }
7998 
7999   SmallVector<ISD::OutputArg, 4> Outs;
8000   GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, *this, DL);
8001 
8002   bool CanLowerReturn =
8003       this->CanLowerReturn(CLI.CallConv, CLI.DAG.getMachineFunction(),
8004                            CLI.IsVarArg, Outs, CLI.RetTy->getContext());
8005 
8006   SDValue DemoteStackSlot;
8007   int DemoteStackIdx = -100;
8008   if (!CanLowerReturn) {
8009     // FIXME: equivalent assert?
8010     // assert(!CS.hasInAllocaArgument() &&
8011     //        "sret demotion is incompatible with inalloca");
8012     uint64_t TySize = DL.getTypeAllocSize(CLI.RetTy);
8013     unsigned Align = DL.getPrefTypeAlignment(CLI.RetTy);
8014     MachineFunction &MF = CLI.DAG.getMachineFunction();
8015     DemoteStackIdx = MF.getFrameInfo().CreateStackObject(TySize, Align, false);
8016     Type *StackSlotPtrType = PointerType::getUnqual(CLI.RetTy);
8017 
8018     DemoteStackSlot = CLI.DAG.getFrameIndex(DemoteStackIdx, getFrameIndexTy(DL));
8019     ArgListEntry Entry;
8020     Entry.Node = DemoteStackSlot;
8021     Entry.Ty = StackSlotPtrType;
8022     Entry.IsSExt = false;
8023     Entry.IsZExt = false;
8024     Entry.IsInReg = false;
8025     Entry.IsSRet = true;
8026     Entry.IsNest = false;
8027     Entry.IsByVal = false;
8028     Entry.IsReturned = false;
8029     Entry.IsSwiftSelf = false;
8030     Entry.IsSwiftError = false;
8031     Entry.Alignment = Align;
8032     CLI.getArgs().insert(CLI.getArgs().begin(), Entry);
8033     CLI.RetTy = Type::getVoidTy(CLI.RetTy->getContext());
8034 
8035     // sret demotion isn't compatible with tail-calls, since the sret argument
8036     // points into the callers stack frame.
8037     CLI.IsTailCall = false;
8038   } else {
8039     for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
8040       EVT VT = RetTys[I];
8041       MVT RegisterVT =
8042           getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8043       unsigned NumRegs =
8044           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8045       for (unsigned i = 0; i != NumRegs; ++i) {
8046         ISD::InputArg MyFlags;
8047         MyFlags.VT = RegisterVT;
8048         MyFlags.ArgVT = VT;
8049         MyFlags.Used = CLI.IsReturnValueUsed;
8050         if (CLI.RetSExt)
8051           MyFlags.Flags.setSExt();
8052         if (CLI.RetZExt)
8053           MyFlags.Flags.setZExt();
8054         if (CLI.IsInReg)
8055           MyFlags.Flags.setInReg();
8056         CLI.Ins.push_back(MyFlags);
8057       }
8058     }
8059   }
8060 
8061   // We push in swifterror return as the last element of CLI.Ins.
8062   ArgListTy &Args = CLI.getArgs();
8063   if (supportSwiftError()) {
8064     for (unsigned i = 0, e = Args.size(); i != e; ++i) {
8065       if (Args[i].IsSwiftError) {
8066         ISD::InputArg MyFlags;
8067         MyFlags.VT = getPointerTy(DL);
8068         MyFlags.ArgVT = EVT(getPointerTy(DL));
8069         MyFlags.Flags.setSwiftError();
8070         CLI.Ins.push_back(MyFlags);
8071       }
8072     }
8073   }
8074 
8075   // Handle all of the outgoing arguments.
8076   CLI.Outs.clear();
8077   CLI.OutVals.clear();
8078   for (unsigned i = 0, e = Args.size(); i != e; ++i) {
8079     SmallVector<EVT, 4> ValueVTs;
8080     ComputeValueVTs(*this, DL, Args[i].Ty, ValueVTs);
8081     // FIXME: Split arguments if CLI.IsPostTypeLegalization
8082     Type *FinalType = Args[i].Ty;
8083     if (Args[i].IsByVal)
8084       FinalType = cast<PointerType>(Args[i].Ty)->getElementType();
8085     bool NeedsRegBlock = functionArgumentNeedsConsecutiveRegisters(
8086         FinalType, CLI.CallConv, CLI.IsVarArg);
8087     for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues;
8088          ++Value) {
8089       EVT VT = ValueVTs[Value];
8090       Type *ArgTy = VT.getTypeForEVT(CLI.RetTy->getContext());
8091       SDValue Op = SDValue(Args[i].Node.getNode(),
8092                            Args[i].Node.getResNo() + Value);
8093       ISD::ArgFlagsTy Flags;
8094 
8095       // Certain targets (such as MIPS), may have a different ABI alignment
8096       // for a type depending on the context. Give the target a chance to
8097       // specify the alignment it wants.
8098       unsigned OriginalAlignment = getABIAlignmentForCallingConv(ArgTy, DL);
8099 
8100       if (Args[i].IsZExt)
8101         Flags.setZExt();
8102       if (Args[i].IsSExt)
8103         Flags.setSExt();
8104       if (Args[i].IsInReg) {
8105         // If we are using vectorcall calling convention, a structure that is
8106         // passed InReg - is surely an HVA
8107         if (CLI.CallConv == CallingConv::X86_VectorCall &&
8108             isa<StructType>(FinalType)) {
8109           // The first value of a structure is marked
8110           if (0 == Value)
8111             Flags.setHvaStart();
8112           Flags.setHva();
8113         }
8114         // Set InReg Flag
8115         Flags.setInReg();
8116       }
8117       if (Args[i].IsSRet)
8118         Flags.setSRet();
8119       if (Args[i].IsSwiftSelf)
8120         Flags.setSwiftSelf();
8121       if (Args[i].IsSwiftError)
8122         Flags.setSwiftError();
8123       if (Args[i].IsByVal)
8124         Flags.setByVal();
8125       if (Args[i].IsInAlloca) {
8126         Flags.setInAlloca();
8127         // Set the byval flag for CCAssignFn callbacks that don't know about
8128         // inalloca.  This way we can know how many bytes we should've allocated
8129         // and how many bytes a callee cleanup function will pop.  If we port
8130         // inalloca to more targets, we'll have to add custom inalloca handling
8131         // in the various CC lowering callbacks.
8132         Flags.setByVal();
8133       }
8134       if (Args[i].IsByVal || Args[i].IsInAlloca) {
8135         PointerType *Ty = cast<PointerType>(Args[i].Ty);
8136         Type *ElementTy = Ty->getElementType();
8137         Flags.setByValSize(DL.getTypeAllocSize(ElementTy));
8138         // For ByVal, alignment should come from FE.  BE will guess if this
8139         // info is not there but there are cases it cannot get right.
8140         unsigned FrameAlign;
8141         if (Args[i].Alignment)
8142           FrameAlign = Args[i].Alignment;
8143         else
8144           FrameAlign = getByValTypeAlignment(ElementTy, DL);
8145         Flags.setByValAlign(FrameAlign);
8146       }
8147       if (Args[i].IsNest)
8148         Flags.setNest();
8149       if (NeedsRegBlock)
8150         Flags.setInConsecutiveRegs();
8151       Flags.setOrigAlign(OriginalAlignment);
8152 
8153       MVT PartVT = getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8154       unsigned NumParts =
8155           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8156       SmallVector<SDValue, 4> Parts(NumParts);
8157       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
8158 
8159       if (Args[i].IsSExt)
8160         ExtendKind = ISD::SIGN_EXTEND;
8161       else if (Args[i].IsZExt)
8162         ExtendKind = ISD::ZERO_EXTEND;
8163 
8164       // Conservatively only handle 'returned' on non-vectors for now
8165       if (Args[i].IsReturned && !Op.getValueType().isVector()) {
8166         assert(CLI.RetTy == Args[i].Ty && RetTys.size() == NumValues &&
8167                "unexpected use of 'returned'");
8168         // Before passing 'returned' to the target lowering code, ensure that
8169         // either the register MVT and the actual EVT are the same size or that
8170         // the return value and argument are extended in the same way; in these
8171         // cases it's safe to pass the argument register value unchanged as the
8172         // return register value (although it's at the target's option whether
8173         // to do so)
8174         // TODO: allow code generation to take advantage of partially preserved
8175         // registers rather than clobbering the entire register when the
8176         // parameter extension method is not compatible with the return
8177         // extension method
8178         if ((NumParts * PartVT.getSizeInBits() == VT.getSizeInBits()) ||
8179             (ExtendKind != ISD::ANY_EXTEND && CLI.RetSExt == Args[i].IsSExt &&
8180              CLI.RetZExt == Args[i].IsZExt))
8181           Flags.setReturned();
8182       }
8183 
8184       getCopyToParts(CLI.DAG, CLI.DL, Op, &Parts[0], NumParts, PartVT,
8185                      CLI.CS.getInstruction(), ExtendKind, true);
8186 
8187       for (unsigned j = 0; j != NumParts; ++j) {
8188         // if it isn't first piece, alignment must be 1
8189         ISD::OutputArg MyFlags(Flags, Parts[j].getValueType(), VT,
8190                                i < CLI.NumFixedArgs,
8191                                i, j*Parts[j].getValueType().getStoreSize());
8192         if (NumParts > 1 && j == 0)
8193           MyFlags.Flags.setSplit();
8194         else if (j != 0) {
8195           MyFlags.Flags.setOrigAlign(1);
8196           if (j == NumParts - 1)
8197             MyFlags.Flags.setSplitEnd();
8198         }
8199 
8200         CLI.Outs.push_back(MyFlags);
8201         CLI.OutVals.push_back(Parts[j]);
8202       }
8203 
8204       if (NeedsRegBlock && Value == NumValues - 1)
8205         CLI.Outs[CLI.Outs.size() - 1].Flags.setInConsecutiveRegsLast();
8206     }
8207   }
8208 
8209   SmallVector<SDValue, 4> InVals;
8210   CLI.Chain = LowerCall(CLI, InVals);
8211 
8212   // Update CLI.InVals to use outside of this function.
8213   CLI.InVals = InVals;
8214 
8215   // Verify that the target's LowerCall behaved as expected.
8216   assert(CLI.Chain.getNode() && CLI.Chain.getValueType() == MVT::Other &&
8217          "LowerCall didn't return a valid chain!");
8218   assert((!CLI.IsTailCall || InVals.empty()) &&
8219          "LowerCall emitted a return value for a tail call!");
8220   assert((CLI.IsTailCall || InVals.size() == CLI.Ins.size()) &&
8221          "LowerCall didn't emit the correct number of values!");
8222 
8223   // For a tail call, the return value is merely live-out and there aren't
8224   // any nodes in the DAG representing it. Return a special value to
8225   // indicate that a tail call has been emitted and no more Instructions
8226   // should be processed in the current block.
8227   if (CLI.IsTailCall) {
8228     CLI.DAG.setRoot(CLI.Chain);
8229     return std::make_pair(SDValue(), SDValue());
8230   }
8231 
8232 #ifndef NDEBUG
8233   for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) {
8234     assert(InVals[i].getNode() && "LowerCall emitted a null value!");
8235     assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() &&
8236            "LowerCall emitted a value with the wrong type!");
8237   }
8238 #endif
8239 
8240   SmallVector<SDValue, 4> ReturnValues;
8241   if (!CanLowerReturn) {
8242     // The instruction result is the result of loading from the
8243     // hidden sret parameter.
8244     SmallVector<EVT, 1> PVTs;
8245     Type *PtrRetTy = PointerType::getUnqual(OrigRetTy);
8246 
8247     ComputeValueVTs(*this, DL, PtrRetTy, PVTs);
8248     assert(PVTs.size() == 1 && "Pointers should fit in one register");
8249     EVT PtrVT = PVTs[0];
8250 
8251     unsigned NumValues = RetTys.size();
8252     ReturnValues.resize(NumValues);
8253     SmallVector<SDValue, 4> Chains(NumValues);
8254 
8255     // An aggregate return value cannot wrap around the address space, so
8256     // offsets to its parts don't wrap either.
8257     SDNodeFlags Flags;
8258     Flags.setNoUnsignedWrap(true);
8259 
8260     for (unsigned i = 0; i < NumValues; ++i) {
8261       SDValue Add = CLI.DAG.getNode(ISD::ADD, CLI.DL, PtrVT, DemoteStackSlot,
8262                                     CLI.DAG.getConstant(Offsets[i], CLI.DL,
8263                                                         PtrVT), Flags);
8264       SDValue L = CLI.DAG.getLoad(
8265           RetTys[i], CLI.DL, CLI.Chain, Add,
8266           MachinePointerInfo::getFixedStack(CLI.DAG.getMachineFunction(),
8267                                             DemoteStackIdx, Offsets[i]),
8268           /* Alignment = */ 1);
8269       ReturnValues[i] = L;
8270       Chains[i] = L.getValue(1);
8271     }
8272 
8273     CLI.Chain = CLI.DAG.getNode(ISD::TokenFactor, CLI.DL, MVT::Other, Chains);
8274   } else {
8275     // Collect the legal value parts into potentially illegal values
8276     // that correspond to the original function's return values.
8277     Optional<ISD::NodeType> AssertOp;
8278     if (CLI.RetSExt)
8279       AssertOp = ISD::AssertSext;
8280     else if (CLI.RetZExt)
8281       AssertOp = ISD::AssertZext;
8282     unsigned CurReg = 0;
8283     for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
8284       EVT VT = RetTys[I];
8285       MVT RegisterVT =
8286           getRegisterTypeForCallingConv(CLI.RetTy->getContext(), VT);
8287       unsigned NumRegs =
8288           getNumRegistersForCallingConv(CLI.RetTy->getContext(), VT);
8289 
8290       ReturnValues.push_back(getCopyFromParts(CLI.DAG, CLI.DL, &InVals[CurReg],
8291                                               NumRegs, RegisterVT, VT, nullptr,
8292                                               AssertOp, true));
8293       CurReg += NumRegs;
8294     }
8295 
8296     // For a function returning void, there is no return value. We can't create
8297     // such a node, so we just return a null return value in that case. In
8298     // that case, nothing will actually look at the value.
8299     if (ReturnValues.empty())
8300       return std::make_pair(SDValue(), CLI.Chain);
8301   }
8302 
8303   SDValue Res = CLI.DAG.getNode(ISD::MERGE_VALUES, CLI.DL,
8304                                 CLI.DAG.getVTList(RetTys), ReturnValues);
8305   return std::make_pair(Res, CLI.Chain);
8306 }
8307 
8308 void TargetLowering::LowerOperationWrapper(SDNode *N,
8309                                            SmallVectorImpl<SDValue> &Results,
8310                                            SelectionDAG &DAG) const {
8311   if (SDValue Res = LowerOperation(SDValue(N, 0), DAG))
8312     Results.push_back(Res);
8313 }
8314 
8315 SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
8316   llvm_unreachable("LowerOperation not implemented for this target!");
8317 }
8318 
8319 void
8320 SelectionDAGBuilder::CopyValueToVirtualRegister(const Value *V, unsigned Reg) {
8321   SDValue Op = getNonRegisterValue(V);
8322   assert((Op.getOpcode() != ISD::CopyFromReg ||
8323           cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
8324          "Copy from a reg to the same reg!");
8325   assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
8326 
8327   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8328   // If this is an InlineAsm we have to match the registers required, not the
8329   // notional registers required by the type.
8330 
8331   RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), Reg,
8332                    V->getType(), isABIRegCopy(V));
8333   SDValue Chain = DAG.getEntryNode();
8334 
8335   ISD::NodeType ExtendType = (FuncInfo.PreferredExtendType.find(V) ==
8336                               FuncInfo.PreferredExtendType.end())
8337                                  ? ISD::ANY_EXTEND
8338                                  : FuncInfo.PreferredExtendType[V];
8339   RFV.getCopyToRegs(Op, DAG, getCurSDLoc(), Chain, nullptr, V, ExtendType);
8340   PendingExports.push_back(Chain);
8341 }
8342 
8343 #include "llvm/CodeGen/SelectionDAGISel.h"
8344 
8345 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
8346 /// entry block, return true.  This includes arguments used by switches, since
8347 /// the switch may expand into multiple basic blocks.
8348 static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel) {
8349   // With FastISel active, we may be splitting blocks, so force creation
8350   // of virtual registers for all non-dead arguments.
8351   if (FastISel)
8352     return A->use_empty();
8353 
8354   const BasicBlock &Entry = A->getParent()->front();
8355   for (const User *U : A->users())
8356     if (cast<Instruction>(U)->getParent() != &Entry || isa<SwitchInst>(U))
8357       return false;  // Use not in entry block.
8358 
8359   return true;
8360 }
8361 
8362 typedef DenseMap<const Argument *,
8363                  std::pair<const AllocaInst *, const StoreInst *>>
8364     ArgCopyElisionMapTy;
8365 
8366 /// Scan the entry block of the function in FuncInfo for arguments that look
8367 /// like copies into a local alloca. Record any copied arguments in
8368 /// ArgCopyElisionCandidates.
8369 static void
8370 findArgumentCopyElisionCandidates(const DataLayout &DL,
8371                                   FunctionLoweringInfo *FuncInfo,
8372                                   ArgCopyElisionMapTy &ArgCopyElisionCandidates) {
8373   // Record the state of every static alloca used in the entry block. Argument
8374   // allocas are all used in the entry block, so we need approximately as many
8375   // entries as we have arguments.
8376   enum StaticAllocaInfo { Unknown, Clobbered, Elidable };
8377   SmallDenseMap<const AllocaInst *, StaticAllocaInfo, 8> StaticAllocas;
8378   unsigned NumArgs = FuncInfo->Fn->arg_size();
8379   StaticAllocas.reserve(NumArgs * 2);
8380 
8381   auto GetInfoIfStaticAlloca = [&](const Value *V) -> StaticAllocaInfo * {
8382     if (!V)
8383       return nullptr;
8384     V = V->stripPointerCasts();
8385     const auto *AI = dyn_cast<AllocaInst>(V);
8386     if (!AI || !AI->isStaticAlloca() || !FuncInfo->StaticAllocaMap.count(AI))
8387       return nullptr;
8388     auto Iter = StaticAllocas.insert({AI, Unknown});
8389     return &Iter.first->second;
8390   };
8391 
8392   // Look for stores of arguments to static allocas. Look through bitcasts and
8393   // GEPs to handle type coercions, as long as the alloca is fully initialized
8394   // by the store. Any non-store use of an alloca escapes it and any subsequent
8395   // unanalyzed store might write it.
8396   // FIXME: Handle structs initialized with multiple stores.
8397   for (const Instruction &I : FuncInfo->Fn->getEntryBlock()) {
8398     // Look for stores, and handle non-store uses conservatively.
8399     const auto *SI = dyn_cast<StoreInst>(&I);
8400     if (!SI) {
8401       // We will look through cast uses, so ignore them completely.
8402       if (I.isCast())
8403         continue;
8404       // Ignore debug info intrinsics, they don't escape or store to allocas.
8405       if (isa<DbgInfoIntrinsic>(I))
8406         continue;
8407       // This is an unknown instruction. Assume it escapes or writes to all
8408       // static alloca operands.
8409       for (const Use &U : I.operands()) {
8410         if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(U))
8411           *Info = StaticAllocaInfo::Clobbered;
8412       }
8413       continue;
8414     }
8415 
8416     // If the stored value is a static alloca, mark it as escaped.
8417     if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(SI->getValueOperand()))
8418       *Info = StaticAllocaInfo::Clobbered;
8419 
8420     // Check if the destination is a static alloca.
8421     const Value *Dst = SI->getPointerOperand()->stripPointerCasts();
8422     StaticAllocaInfo *Info = GetInfoIfStaticAlloca(Dst);
8423     if (!Info)
8424       continue;
8425     const AllocaInst *AI = cast<AllocaInst>(Dst);
8426 
8427     // Skip allocas that have been initialized or clobbered.
8428     if (*Info != StaticAllocaInfo::Unknown)
8429       continue;
8430 
8431     // Check if the stored value is an argument, and that this store fully
8432     // initializes the alloca. Don't elide copies from the same argument twice.
8433     const Value *Val = SI->getValueOperand()->stripPointerCasts();
8434     const auto *Arg = dyn_cast<Argument>(Val);
8435     if (!Arg || Arg->hasInAllocaAttr() || Arg->hasByValAttr() ||
8436         Arg->getType()->isEmptyTy() ||
8437         DL.getTypeStoreSize(Arg->getType()) !=
8438             DL.getTypeAllocSize(AI->getAllocatedType()) ||
8439         ArgCopyElisionCandidates.count(Arg)) {
8440       *Info = StaticAllocaInfo::Clobbered;
8441       continue;
8442     }
8443 
8444     DEBUG(dbgs() << "Found argument copy elision candidate: " << *AI << '\n');
8445 
8446     // Mark this alloca and store for argument copy elision.
8447     *Info = StaticAllocaInfo::Elidable;
8448     ArgCopyElisionCandidates.insert({Arg, {AI, SI}});
8449 
8450     // Stop scanning if we've seen all arguments. This will happen early in -O0
8451     // builds, which is useful, because -O0 builds have large entry blocks and
8452     // many allocas.
8453     if (ArgCopyElisionCandidates.size() == NumArgs)
8454       break;
8455   }
8456 }
8457 
8458 /// Try to elide argument copies from memory into a local alloca. Succeeds if
8459 /// ArgVal is a load from a suitable fixed stack object.
8460 static void tryToElideArgumentCopy(
8461     FunctionLoweringInfo *FuncInfo, SmallVectorImpl<SDValue> &Chains,
8462     DenseMap<int, int> &ArgCopyElisionFrameIndexMap,
8463     SmallPtrSetImpl<const Instruction *> &ElidedArgCopyInstrs,
8464     ArgCopyElisionMapTy &ArgCopyElisionCandidates, const Argument &Arg,
8465     SDValue ArgVal, bool &ArgHasUses) {
8466   // Check if this is a load from a fixed stack object.
8467   auto *LNode = dyn_cast<LoadSDNode>(ArgVal);
8468   if (!LNode)
8469     return;
8470   auto *FINode = dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode());
8471   if (!FINode)
8472     return;
8473 
8474   // Check that the fixed stack object is the right size and alignment.
8475   // Look at the alignment that the user wrote on the alloca instead of looking
8476   // at the stack object.
8477   auto ArgCopyIter = ArgCopyElisionCandidates.find(&Arg);
8478   assert(ArgCopyIter != ArgCopyElisionCandidates.end());
8479   const AllocaInst *AI = ArgCopyIter->second.first;
8480   int FixedIndex = FINode->getIndex();
8481   int &AllocaIndex = FuncInfo->StaticAllocaMap[AI];
8482   int OldIndex = AllocaIndex;
8483   MachineFrameInfo &MFI = FuncInfo->MF->getFrameInfo();
8484   if (MFI.getObjectSize(FixedIndex) != MFI.getObjectSize(OldIndex)) {
8485     DEBUG(dbgs() << "  argument copy elision failed due to bad fixed stack "
8486                     "object size\n");
8487     return;
8488   }
8489   unsigned RequiredAlignment = AI->getAlignment();
8490   if (!RequiredAlignment) {
8491     RequiredAlignment = FuncInfo->MF->getDataLayout().getABITypeAlignment(
8492         AI->getAllocatedType());
8493   }
8494   if (MFI.getObjectAlignment(FixedIndex) < RequiredAlignment) {
8495     DEBUG(dbgs() << "  argument copy elision failed: alignment of alloca "
8496                     "greater than stack argument alignment ("
8497                  << RequiredAlignment << " vs "
8498                  << MFI.getObjectAlignment(FixedIndex) << ")\n");
8499     return;
8500   }
8501 
8502   // Perform the elision. Delete the old stack object and replace its only use
8503   // in the variable info map. Mark the stack object as mutable.
8504   DEBUG({
8505     dbgs() << "Eliding argument copy from " << Arg << " to " << *AI << '\n'
8506            << "  Replacing frame index " << OldIndex << " with " << FixedIndex
8507            << '\n';
8508   });
8509   MFI.RemoveStackObject(OldIndex);
8510   MFI.setIsImmutableObjectIndex(FixedIndex, false);
8511   AllocaIndex = FixedIndex;
8512   ArgCopyElisionFrameIndexMap.insert({OldIndex, FixedIndex});
8513   Chains.push_back(ArgVal.getValue(1));
8514 
8515   // Avoid emitting code for the store implementing the copy.
8516   const StoreInst *SI = ArgCopyIter->second.second;
8517   ElidedArgCopyInstrs.insert(SI);
8518 
8519   // Check for uses of the argument again so that we can avoid exporting ArgVal
8520   // if it is't used by anything other than the store.
8521   for (const Value *U : Arg.users()) {
8522     if (U != SI) {
8523       ArgHasUses = true;
8524       break;
8525     }
8526   }
8527 }
8528 
8529 void SelectionDAGISel::LowerArguments(const Function &F) {
8530   SelectionDAG &DAG = SDB->DAG;
8531   SDLoc dl = SDB->getCurSDLoc();
8532   const DataLayout &DL = DAG.getDataLayout();
8533   SmallVector<ISD::InputArg, 16> Ins;
8534 
8535   if (!FuncInfo->CanLowerReturn) {
8536     // Put in an sret pointer parameter before all the other parameters.
8537     SmallVector<EVT, 1> ValueVTs;
8538     ComputeValueVTs(*TLI, DAG.getDataLayout(),
8539                     PointerType::getUnqual(F.getReturnType()), ValueVTs);
8540 
8541     // NOTE: Assuming that a pointer will never break down to more than one VT
8542     // or one register.
8543     ISD::ArgFlagsTy Flags;
8544     Flags.setSRet();
8545     MVT RegisterVT = TLI->getRegisterType(*DAG.getContext(), ValueVTs[0]);
8546     ISD::InputArg RetArg(Flags, RegisterVT, ValueVTs[0], true,
8547                          ISD::InputArg::NoArgIndex, 0);
8548     Ins.push_back(RetArg);
8549   }
8550 
8551   // Look for stores of arguments to static allocas. Mark such arguments with a
8552   // flag to ask the target to give us the memory location of that argument if
8553   // available.
8554   ArgCopyElisionMapTy ArgCopyElisionCandidates;
8555   findArgumentCopyElisionCandidates(DL, FuncInfo, ArgCopyElisionCandidates);
8556 
8557   // Set up the incoming argument description vector.
8558   for (const Argument &Arg : F.args()) {
8559     unsigned ArgNo = Arg.getArgNo();
8560     SmallVector<EVT, 4> ValueVTs;
8561     ComputeValueVTs(*TLI, DAG.getDataLayout(), Arg.getType(), ValueVTs);
8562     bool isArgValueUsed = !Arg.use_empty();
8563     unsigned PartBase = 0;
8564     Type *FinalType = Arg.getType();
8565     if (Arg.hasAttribute(Attribute::ByVal))
8566       FinalType = cast<PointerType>(FinalType)->getElementType();
8567     bool NeedsRegBlock = TLI->functionArgumentNeedsConsecutiveRegisters(
8568         FinalType, F.getCallingConv(), F.isVarArg());
8569     for (unsigned Value = 0, NumValues = ValueVTs.size();
8570          Value != NumValues; ++Value) {
8571       EVT VT = ValueVTs[Value];
8572       Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
8573       ISD::ArgFlagsTy Flags;
8574 
8575       // Certain targets (such as MIPS), may have a different ABI alignment
8576       // for a type depending on the context. Give the target a chance to
8577       // specify the alignment it wants.
8578       unsigned OriginalAlignment =
8579           TLI->getABIAlignmentForCallingConv(ArgTy, DL);
8580 
8581       if (Arg.hasAttribute(Attribute::ZExt))
8582         Flags.setZExt();
8583       if (Arg.hasAttribute(Attribute::SExt))
8584         Flags.setSExt();
8585       if (Arg.hasAttribute(Attribute::InReg)) {
8586         // If we are using vectorcall calling convention, a structure that is
8587         // passed InReg - is surely an HVA
8588         if (F.getCallingConv() == CallingConv::X86_VectorCall &&
8589             isa<StructType>(Arg.getType())) {
8590           // The first value of a structure is marked
8591           if (0 == Value)
8592             Flags.setHvaStart();
8593           Flags.setHva();
8594         }
8595         // Set InReg Flag
8596         Flags.setInReg();
8597       }
8598       if (Arg.hasAttribute(Attribute::StructRet))
8599         Flags.setSRet();
8600       if (Arg.hasAttribute(Attribute::SwiftSelf))
8601         Flags.setSwiftSelf();
8602       if (Arg.hasAttribute(Attribute::SwiftError))
8603         Flags.setSwiftError();
8604       if (Arg.hasAttribute(Attribute::ByVal))
8605         Flags.setByVal();
8606       if (Arg.hasAttribute(Attribute::InAlloca)) {
8607         Flags.setInAlloca();
8608         // Set the byval flag for CCAssignFn callbacks that don't know about
8609         // inalloca.  This way we can know how many bytes we should've allocated
8610         // and how many bytes a callee cleanup function will pop.  If we port
8611         // inalloca to more targets, we'll have to add custom inalloca handling
8612         // in the various CC lowering callbacks.
8613         Flags.setByVal();
8614       }
8615       if (F.getCallingConv() == CallingConv::X86_INTR) {
8616         // IA Interrupt passes frame (1st parameter) by value in the stack.
8617         if (ArgNo == 0)
8618           Flags.setByVal();
8619       }
8620       if (Flags.isByVal() || Flags.isInAlloca()) {
8621         PointerType *Ty = cast<PointerType>(Arg.getType());
8622         Type *ElementTy = Ty->getElementType();
8623         Flags.setByValSize(DL.getTypeAllocSize(ElementTy));
8624         // For ByVal, alignment should be passed from FE.  BE will guess if
8625         // this info is not there but there are cases it cannot get right.
8626         unsigned FrameAlign;
8627         if (Arg.getParamAlignment())
8628           FrameAlign = Arg.getParamAlignment();
8629         else
8630           FrameAlign = TLI->getByValTypeAlignment(ElementTy, DL);
8631         Flags.setByValAlign(FrameAlign);
8632       }
8633       if (Arg.hasAttribute(Attribute::Nest))
8634         Flags.setNest();
8635       if (NeedsRegBlock)
8636         Flags.setInConsecutiveRegs();
8637       Flags.setOrigAlign(OriginalAlignment);
8638       if (ArgCopyElisionCandidates.count(&Arg))
8639         Flags.setCopyElisionCandidate();
8640 
8641       MVT RegisterVT =
8642           TLI->getRegisterTypeForCallingConv(*CurDAG->getContext(), VT);
8643       unsigned NumRegs =
8644           TLI->getNumRegistersForCallingConv(*CurDAG->getContext(), VT);
8645       for (unsigned i = 0; i != NumRegs; ++i) {
8646         ISD::InputArg MyFlags(Flags, RegisterVT, VT, isArgValueUsed,
8647                               ArgNo, PartBase+i*RegisterVT.getStoreSize());
8648         if (NumRegs > 1 && i == 0)
8649           MyFlags.Flags.setSplit();
8650         // if it isn't first piece, alignment must be 1
8651         else if (i > 0) {
8652           MyFlags.Flags.setOrigAlign(1);
8653           if (i == NumRegs - 1)
8654             MyFlags.Flags.setSplitEnd();
8655         }
8656         Ins.push_back(MyFlags);
8657       }
8658       if (NeedsRegBlock && Value == NumValues - 1)
8659         Ins[Ins.size() - 1].Flags.setInConsecutiveRegsLast();
8660       PartBase += VT.getStoreSize();
8661     }
8662   }
8663 
8664   // Call the target to set up the argument values.
8665   SmallVector<SDValue, 8> InVals;
8666   SDValue NewRoot = TLI->LowerFormalArguments(
8667       DAG.getRoot(), F.getCallingConv(), F.isVarArg(), Ins, dl, DAG, InVals);
8668 
8669   // Verify that the target's LowerFormalArguments behaved as expected.
8670   assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
8671          "LowerFormalArguments didn't return a valid chain!");
8672   assert(InVals.size() == Ins.size() &&
8673          "LowerFormalArguments didn't emit the correct number of values!");
8674   DEBUG({
8675       for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
8676         assert(InVals[i].getNode() &&
8677                "LowerFormalArguments emitted a null value!");
8678         assert(EVT(Ins[i].VT) == InVals[i].getValueType() &&
8679                "LowerFormalArguments emitted a value with the wrong type!");
8680       }
8681     });
8682 
8683   // Update the DAG with the new chain value resulting from argument lowering.
8684   DAG.setRoot(NewRoot);
8685 
8686   // Set up the argument values.
8687   unsigned i = 0;
8688   if (!FuncInfo->CanLowerReturn) {
8689     // Create a virtual register for the sret pointer, and put in a copy
8690     // from the sret argument into it.
8691     SmallVector<EVT, 1> ValueVTs;
8692     ComputeValueVTs(*TLI, DAG.getDataLayout(),
8693                     PointerType::getUnqual(F.getReturnType()), ValueVTs);
8694     MVT VT = ValueVTs[0].getSimpleVT();
8695     MVT RegVT = TLI->getRegisterType(*CurDAG->getContext(), VT);
8696     Optional<ISD::NodeType> AssertOp = None;
8697     SDValue ArgValue = getCopyFromParts(DAG, dl, &InVals[0], 1,
8698                                         RegVT, VT, nullptr, AssertOp);
8699 
8700     MachineFunction& MF = SDB->DAG.getMachineFunction();
8701     MachineRegisterInfo& RegInfo = MF.getRegInfo();
8702     unsigned SRetReg = RegInfo.createVirtualRegister(TLI->getRegClassFor(RegVT));
8703     FuncInfo->DemoteRegister = SRetReg;
8704     NewRoot =
8705         SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue);
8706     DAG.setRoot(NewRoot);
8707 
8708     // i indexes lowered arguments.  Bump it past the hidden sret argument.
8709     ++i;
8710   }
8711 
8712   SmallVector<SDValue, 4> Chains;
8713   DenseMap<int, int> ArgCopyElisionFrameIndexMap;
8714   for (const Argument &Arg : F.args()) {
8715     SmallVector<SDValue, 4> ArgValues;
8716     SmallVector<EVT, 4> ValueVTs;
8717     ComputeValueVTs(*TLI, DAG.getDataLayout(), Arg.getType(), ValueVTs);
8718     unsigned NumValues = ValueVTs.size();
8719     if (NumValues == 0)
8720       continue;
8721 
8722     bool ArgHasUses = !Arg.use_empty();
8723 
8724     // Elide the copying store if the target loaded this argument from a
8725     // suitable fixed stack object.
8726     if (Ins[i].Flags.isCopyElisionCandidate()) {
8727       tryToElideArgumentCopy(FuncInfo, Chains, ArgCopyElisionFrameIndexMap,
8728                              ElidedArgCopyInstrs, ArgCopyElisionCandidates, Arg,
8729                              InVals[i], ArgHasUses);
8730     }
8731 
8732     // If this argument is unused then remember its value. It is used to generate
8733     // debugging information.
8734     bool isSwiftErrorArg =
8735         TLI->supportSwiftError() &&
8736         Arg.hasAttribute(Attribute::SwiftError);
8737     if (!ArgHasUses && !isSwiftErrorArg) {
8738       SDB->setUnusedArgValue(&Arg, InVals[i]);
8739 
8740       // Also remember any frame index for use in FastISel.
8741       if (FrameIndexSDNode *FI =
8742           dyn_cast<FrameIndexSDNode>(InVals[i].getNode()))
8743         FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
8744     }
8745 
8746     for (unsigned Val = 0; Val != NumValues; ++Val) {
8747       EVT VT = ValueVTs[Val];
8748       MVT PartVT =
8749           TLI->getRegisterTypeForCallingConv(*CurDAG->getContext(), VT);
8750       unsigned NumParts =
8751           TLI->getNumRegistersForCallingConv(*CurDAG->getContext(), VT);
8752 
8753       // Even an apparant 'unused' swifterror argument needs to be returned. So
8754       // we do generate a copy for it that can be used on return from the
8755       // function.
8756       if (ArgHasUses || isSwiftErrorArg) {
8757         Optional<ISD::NodeType> AssertOp;
8758         if (Arg.hasAttribute(Attribute::SExt))
8759           AssertOp = ISD::AssertSext;
8760         else if (Arg.hasAttribute(Attribute::ZExt))
8761           AssertOp = ISD::AssertZext;
8762 
8763         ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
8764                                              PartVT, VT, nullptr, AssertOp,
8765                                              true));
8766       }
8767 
8768       i += NumParts;
8769     }
8770 
8771     // We don't need to do anything else for unused arguments.
8772     if (ArgValues.empty())
8773       continue;
8774 
8775     // Note down frame index.
8776     if (FrameIndexSDNode *FI =
8777         dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode()))
8778       FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
8779 
8780     SDValue Res = DAG.getMergeValues(makeArrayRef(ArgValues.data(), NumValues),
8781                                      SDB->getCurSDLoc());
8782 
8783     SDB->setValue(&Arg, Res);
8784     if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::BUILD_PAIR) {
8785       if (LoadSDNode *LNode =
8786           dyn_cast<LoadSDNode>(Res.getOperand(0).getNode()))
8787         if (FrameIndexSDNode *FI =
8788             dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode()))
8789         FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
8790     }
8791 
8792     // Update the SwiftErrorVRegDefMap.
8793     if (Res.getOpcode() == ISD::CopyFromReg && isSwiftErrorArg) {
8794       unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg();
8795       if (TargetRegisterInfo::isVirtualRegister(Reg))
8796         FuncInfo->setCurrentSwiftErrorVReg(FuncInfo->MBB,
8797                                            FuncInfo->SwiftErrorArg, Reg);
8798     }
8799 
8800     // If this argument is live outside of the entry block, insert a copy from
8801     // wherever we got it to the vreg that other BB's will reference it as.
8802     if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::CopyFromReg) {
8803       // If we can, though, try to skip creating an unnecessary vreg.
8804       // FIXME: This isn't very clean... it would be nice to make this more
8805       // general.  It's also subtly incompatible with the hacks FastISel
8806       // uses with vregs.
8807       unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg();
8808       if (TargetRegisterInfo::isVirtualRegister(Reg)) {
8809         FuncInfo->ValueMap[&Arg] = Reg;
8810         continue;
8811       }
8812     }
8813     if (!isOnlyUsedInEntryBlock(&Arg, TM.Options.EnableFastISel)) {
8814       FuncInfo->InitializeRegForValue(&Arg);
8815       SDB->CopyToExportRegsIfNeeded(&Arg);
8816     }
8817   }
8818 
8819   if (!Chains.empty()) {
8820     Chains.push_back(NewRoot);
8821     NewRoot = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
8822   }
8823 
8824   DAG.setRoot(NewRoot);
8825 
8826   assert(i == InVals.size() && "Argument register count mismatch!");
8827 
8828   // If any argument copy elisions occurred and we have debug info, update the
8829   // stale frame indices used in the dbg.declare variable info table.
8830   MachineFunction::VariableDbgInfoMapTy &DbgDeclareInfo = MF->getVariableDbgInfo();
8831   if (!DbgDeclareInfo.empty() && !ArgCopyElisionFrameIndexMap.empty()) {
8832     for (MachineFunction::VariableDbgInfo &VI : DbgDeclareInfo) {
8833       auto I = ArgCopyElisionFrameIndexMap.find(VI.Slot);
8834       if (I != ArgCopyElisionFrameIndexMap.end())
8835         VI.Slot = I->second;
8836     }
8837   }
8838 
8839   // Finally, if the target has anything special to do, allow it to do so.
8840   EmitFunctionEntryCode();
8841 }
8842 
8843 /// Handle PHI nodes in successor blocks.  Emit code into the SelectionDAG to
8844 /// ensure constants are generated when needed.  Remember the virtual registers
8845 /// that need to be added to the Machine PHI nodes as input.  We cannot just
8846 /// directly add them, because expansion might result in multiple MBB's for one
8847 /// BB.  As such, the start of the BB might correspond to a different MBB than
8848 /// the end.
8849 ///
8850 void
8851 SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
8852   const TerminatorInst *TI = LLVMBB->getTerminator();
8853 
8854   SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
8855 
8856   // Check PHI nodes in successors that expect a value to be available from this
8857   // block.
8858   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
8859     const BasicBlock *SuccBB = TI->getSuccessor(succ);
8860     if (!isa<PHINode>(SuccBB->begin())) continue;
8861     MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
8862 
8863     // If this terminator has multiple identical successors (common for
8864     // switches), only handle each succ once.
8865     if (!SuccsHandled.insert(SuccMBB).second)
8866       continue;
8867 
8868     MachineBasicBlock::iterator MBBI = SuccMBB->begin();
8869 
8870     // At this point we know that there is a 1-1 correspondence between LLVM PHI
8871     // nodes and Machine PHI nodes, but the incoming operands have not been
8872     // emitted yet.
8873     for (BasicBlock::const_iterator I = SuccBB->begin();
8874          const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
8875       // Ignore dead phi's.
8876       if (PN->use_empty()) continue;
8877 
8878       // Skip empty types
8879       if (PN->getType()->isEmptyTy())
8880         continue;
8881 
8882       unsigned Reg;
8883       const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
8884 
8885       if (const Constant *C = dyn_cast<Constant>(PHIOp)) {
8886         unsigned &RegOut = ConstantsOut[C];
8887         if (RegOut == 0) {
8888           RegOut = FuncInfo.CreateRegs(C->getType());
8889           CopyValueToVirtualRegister(C, RegOut);
8890         }
8891         Reg = RegOut;
8892       } else {
8893         DenseMap<const Value *, unsigned>::iterator I =
8894           FuncInfo.ValueMap.find(PHIOp);
8895         if (I != FuncInfo.ValueMap.end())
8896           Reg = I->second;
8897         else {
8898           assert(isa<AllocaInst>(PHIOp) &&
8899                  FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
8900                  "Didn't codegen value into a register!??");
8901           Reg = FuncInfo.CreateRegs(PHIOp->getType());
8902           CopyValueToVirtualRegister(PHIOp, Reg);
8903         }
8904       }
8905 
8906       // Remember that this register needs to added to the machine PHI node as
8907       // the input for this MBB.
8908       SmallVector<EVT, 4> ValueVTs;
8909       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8910       ComputeValueVTs(TLI, DAG.getDataLayout(), PN->getType(), ValueVTs);
8911       for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
8912         EVT VT = ValueVTs[vti];
8913         unsigned NumRegisters = TLI.getNumRegisters(*DAG.getContext(), VT);
8914         for (unsigned i = 0, e = NumRegisters; i != e; ++i)
8915           FuncInfo.PHINodesToUpdate.push_back(
8916               std::make_pair(&*MBBI++, Reg + i));
8917         Reg += NumRegisters;
8918       }
8919     }
8920   }
8921 
8922   ConstantsOut.clear();
8923 }
8924 
8925 /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB
8926 /// is 0.
8927 MachineBasicBlock *
8928 SelectionDAGBuilder::StackProtectorDescriptor::
8929 AddSuccessorMBB(const BasicBlock *BB,
8930                 MachineBasicBlock *ParentMBB,
8931                 bool IsLikely,
8932                 MachineBasicBlock *SuccMBB) {
8933   // If SuccBB has not been created yet, create it.
8934   if (!SuccMBB) {
8935     MachineFunction *MF = ParentMBB->getParent();
8936     MachineFunction::iterator BBI(ParentMBB);
8937     SuccMBB = MF->CreateMachineBasicBlock(BB);
8938     MF->insert(++BBI, SuccMBB);
8939   }
8940   // Add it as a successor of ParentMBB.
8941   ParentMBB->addSuccessor(
8942       SuccMBB, BranchProbabilityInfo::getBranchProbStackProtector(IsLikely));
8943   return SuccMBB;
8944 }
8945 
8946 MachineBasicBlock *SelectionDAGBuilder::NextBlock(MachineBasicBlock *MBB) {
8947   MachineFunction::iterator I(MBB);
8948   if (++I == FuncInfo.MF->end())
8949     return nullptr;
8950   return &*I;
8951 }
8952 
8953 /// During lowering new call nodes can be created (such as memset, etc.).
8954 /// Those will become new roots of the current DAG, but complications arise
8955 /// when they are tail calls. In such cases, the call lowering will update
8956 /// the root, but the builder still needs to know that a tail call has been
8957 /// lowered in order to avoid generating an additional return.
8958 void SelectionDAGBuilder::updateDAGForMaybeTailCall(SDValue MaybeTC) {
8959   // If the node is null, we do have a tail call.
8960   if (MaybeTC.getNode() != nullptr)
8961     DAG.setRoot(MaybeTC);
8962   else
8963     HasTailCall = true;
8964 }
8965 
8966 uint64_t
8967 SelectionDAGBuilder::getJumpTableRange(const CaseClusterVector &Clusters,
8968                                        unsigned First, unsigned Last) const {
8969   assert(Last >= First);
8970   const APInt &LowCase = Clusters[First].Low->getValue();
8971   const APInt &HighCase = Clusters[Last].High->getValue();
8972   assert(LowCase.getBitWidth() == HighCase.getBitWidth());
8973 
8974   // FIXME: A range of consecutive cases has 100% density, but only requires one
8975   // comparison to lower. We should discriminate against such consecutive ranges
8976   // in jump tables.
8977 
8978   return (HighCase - LowCase).getLimitedValue((UINT64_MAX - 1) / 100) + 1;
8979 }
8980 
8981 uint64_t SelectionDAGBuilder::getJumpTableNumCases(
8982     const SmallVectorImpl<unsigned> &TotalCases, unsigned First,
8983     unsigned Last) const {
8984   assert(Last >= First);
8985   assert(TotalCases[Last] >= TotalCases[First]);
8986   uint64_t NumCases =
8987       TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]);
8988   return NumCases;
8989 }
8990 
8991 bool SelectionDAGBuilder::buildJumpTable(const CaseClusterVector &Clusters,
8992                                          unsigned First, unsigned Last,
8993                                          const SwitchInst *SI,
8994                                          MachineBasicBlock *DefaultMBB,
8995                                          CaseCluster &JTCluster) {
8996   assert(First <= Last);
8997 
8998   auto Prob = BranchProbability::getZero();
8999   unsigned NumCmps = 0;
9000   std::vector<MachineBasicBlock*> Table;
9001   DenseMap<MachineBasicBlock*, BranchProbability> JTProbs;
9002 
9003   // Initialize probabilities in JTProbs.
9004   for (unsigned I = First; I <= Last; ++I)
9005     JTProbs[Clusters[I].MBB] = BranchProbability::getZero();
9006 
9007   for (unsigned I = First; I <= Last; ++I) {
9008     assert(Clusters[I].Kind == CC_Range);
9009     Prob += Clusters[I].Prob;
9010     const APInt &Low = Clusters[I].Low->getValue();
9011     const APInt &High = Clusters[I].High->getValue();
9012     NumCmps += (Low == High) ? 1 : 2;
9013     if (I != First) {
9014       // Fill the gap between this and the previous cluster.
9015       const APInt &PreviousHigh = Clusters[I - 1].High->getValue();
9016       assert(PreviousHigh.slt(Low));
9017       uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1;
9018       for (uint64_t J = 0; J < Gap; J++)
9019         Table.push_back(DefaultMBB);
9020     }
9021     uint64_t ClusterSize = (High - Low).getLimitedValue() + 1;
9022     for (uint64_t J = 0; J < ClusterSize; ++J)
9023       Table.push_back(Clusters[I].MBB);
9024     JTProbs[Clusters[I].MBB] += Clusters[I].Prob;
9025   }
9026 
9027   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9028   unsigned NumDests = JTProbs.size();
9029   if (TLI.isSuitableForBitTests(
9030           NumDests, NumCmps, Clusters[First].Low->getValue(),
9031           Clusters[Last].High->getValue(), DAG.getDataLayout())) {
9032     // Clusters[First..Last] should be lowered as bit tests instead.
9033     return false;
9034   }
9035 
9036   // Create the MBB that will load from and jump through the table.
9037   // Note: We create it here, but it's not inserted into the function yet.
9038   MachineFunction *CurMF = FuncInfo.MF;
9039   MachineBasicBlock *JumpTableMBB =
9040       CurMF->CreateMachineBasicBlock(SI->getParent());
9041 
9042   // Add successors. Note: use table order for determinism.
9043   SmallPtrSet<MachineBasicBlock *, 8> Done;
9044   for (MachineBasicBlock *Succ : Table) {
9045     if (Done.count(Succ))
9046       continue;
9047     addSuccessorWithProb(JumpTableMBB, Succ, JTProbs[Succ]);
9048     Done.insert(Succ);
9049   }
9050   JumpTableMBB->normalizeSuccProbs();
9051 
9052   unsigned JTI = CurMF->getOrCreateJumpTableInfo(TLI.getJumpTableEncoding())
9053                      ->createJumpTableIndex(Table);
9054 
9055   // Set up the jump table info.
9056   JumpTable JT(-1U, JTI, JumpTableMBB, nullptr);
9057   JumpTableHeader JTH(Clusters[First].Low->getValue(),
9058                       Clusters[Last].High->getValue(), SI->getCondition(),
9059                       nullptr, false);
9060   JTCases.emplace_back(std::move(JTH), std::move(JT));
9061 
9062   JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High,
9063                                      JTCases.size() - 1, Prob);
9064   return true;
9065 }
9066 
9067 void SelectionDAGBuilder::findJumpTables(CaseClusterVector &Clusters,
9068                                          const SwitchInst *SI,
9069                                          MachineBasicBlock *DefaultMBB) {
9070 #ifndef NDEBUG
9071   // Clusters must be non-empty, sorted, and only contain Range clusters.
9072   assert(!Clusters.empty());
9073   for (CaseCluster &C : Clusters)
9074     assert(C.Kind == CC_Range);
9075   for (unsigned i = 1, e = Clusters.size(); i < e; ++i)
9076     assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue()));
9077 #endif
9078 
9079   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9080   if (!TLI.areJTsAllowed(SI->getParent()->getParent()))
9081     return;
9082 
9083   const int64_t N = Clusters.size();
9084   const unsigned MinJumpTableEntries = TLI.getMinimumJumpTableEntries();
9085   const unsigned SmallNumberOfEntries = MinJumpTableEntries / 2;
9086 
9087   if (N < 2 || N < MinJumpTableEntries)
9088     return;
9089 
9090   // TotalCases[i]: Total nbr of cases in Clusters[0..i].
9091   SmallVector<unsigned, 8> TotalCases(N);
9092   for (unsigned i = 0; i < N; ++i) {
9093     const APInt &Hi = Clusters[i].High->getValue();
9094     const APInt &Lo = Clusters[i].Low->getValue();
9095     TotalCases[i] = (Hi - Lo).getLimitedValue() + 1;
9096     if (i != 0)
9097       TotalCases[i] += TotalCases[i - 1];
9098   }
9099 
9100   // Cheap case: the whole range may be suitable for jump table.
9101   uint64_t Range = getJumpTableRange(Clusters,0, N - 1);
9102   uint64_t NumCases = getJumpTableNumCases(TotalCases, 0, N - 1);
9103   assert(NumCases < UINT64_MAX / 100);
9104   assert(Range >= NumCases);
9105   if (TLI.isSuitableForJumpTable(SI, NumCases, Range)) {
9106     CaseCluster JTCluster;
9107     if (buildJumpTable(Clusters, 0, N - 1, SI, DefaultMBB, JTCluster)) {
9108       Clusters[0] = JTCluster;
9109       Clusters.resize(1);
9110       return;
9111     }
9112   }
9113 
9114   // The algorithm below is not suitable for -O0.
9115   if (TM.getOptLevel() == CodeGenOpt::None)
9116     return;
9117 
9118   // Split Clusters into minimum number of dense partitions. The algorithm uses
9119   // the same idea as Kannan & Proebsting "Correction to 'Producing Good Code
9120   // for the Case Statement'" (1994), but builds the MinPartitions array in
9121   // reverse order to make it easier to reconstruct the partitions in ascending
9122   // order. In the choice between two optimal partitionings, it picks the one
9123   // which yields more jump tables.
9124 
9125   // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1].
9126   SmallVector<unsigned, 8> MinPartitions(N);
9127   // LastElement[i] is the last element of the partition starting at i.
9128   SmallVector<unsigned, 8> LastElement(N);
9129   // PartitionsScore[i] is used to break ties when choosing between two
9130   // partitionings resulting in the same number of partitions.
9131   SmallVector<unsigned, 8> PartitionsScore(N);
9132   // For PartitionsScore, a small number of comparisons is considered as good as
9133   // a jump table and a single comparison is considered better than a jump
9134   // table.
9135   enum PartitionScores : unsigned {
9136     NoTable = 0,
9137     Table = 1,
9138     FewCases = 1,
9139     SingleCase = 2
9140   };
9141 
9142   // Base case: There is only one way to partition Clusters[N-1].
9143   MinPartitions[N - 1] = 1;
9144   LastElement[N - 1] = N - 1;
9145   PartitionsScore[N - 1] = PartitionScores::SingleCase;
9146 
9147   // Note: loop indexes are signed to avoid underflow.
9148   for (int64_t i = N - 2; i >= 0; i--) {
9149     // Find optimal partitioning of Clusters[i..N-1].
9150     // Baseline: Put Clusters[i] into a partition on its own.
9151     MinPartitions[i] = MinPartitions[i + 1] + 1;
9152     LastElement[i] = i;
9153     PartitionsScore[i] = PartitionsScore[i + 1] + PartitionScores::SingleCase;
9154 
9155     // Search for a solution that results in fewer partitions.
9156     for (int64_t j = N - 1; j > i; j--) {
9157       // Try building a partition from Clusters[i..j].
9158       uint64_t Range = getJumpTableRange(Clusters, i, j);
9159       uint64_t NumCases = getJumpTableNumCases(TotalCases, i, j);
9160       assert(NumCases < UINT64_MAX / 100);
9161       assert(Range >= NumCases);
9162       if (TLI.isSuitableForJumpTable(SI, NumCases, Range)) {
9163         unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
9164         unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1];
9165         int64_t NumEntries = j - i + 1;
9166 
9167         if (NumEntries == 1)
9168           Score += PartitionScores::SingleCase;
9169         else if (NumEntries <= SmallNumberOfEntries)
9170           Score += PartitionScores::FewCases;
9171         else if (NumEntries >= MinJumpTableEntries)
9172           Score += PartitionScores::Table;
9173 
9174         // If this leads to fewer partitions, or to the same number of
9175         // partitions with better score, it is a better partitioning.
9176         if (NumPartitions < MinPartitions[i] ||
9177             (NumPartitions == MinPartitions[i] && Score > PartitionsScore[i])) {
9178           MinPartitions[i] = NumPartitions;
9179           LastElement[i] = j;
9180           PartitionsScore[i] = Score;
9181         }
9182       }
9183     }
9184   }
9185 
9186   // Iterate over the partitions, replacing some with jump tables in-place.
9187   unsigned DstIndex = 0;
9188   for (unsigned First = 0, Last; First < N; First = Last + 1) {
9189     Last = LastElement[First];
9190     assert(Last >= First);
9191     assert(DstIndex <= First);
9192     unsigned NumClusters = Last - First + 1;
9193 
9194     CaseCluster JTCluster;
9195     if (NumClusters >= MinJumpTableEntries &&
9196         buildJumpTable(Clusters, First, Last, SI, DefaultMBB, JTCluster)) {
9197       Clusters[DstIndex++] = JTCluster;
9198     } else {
9199       for (unsigned I = First; I <= Last; ++I)
9200         std::memmove(&Clusters[DstIndex++], &Clusters[I], sizeof(Clusters[I]));
9201     }
9202   }
9203   Clusters.resize(DstIndex);
9204 }
9205 
9206 bool SelectionDAGBuilder::buildBitTests(CaseClusterVector &Clusters,
9207                                         unsigned First, unsigned Last,
9208                                         const SwitchInst *SI,
9209                                         CaseCluster &BTCluster) {
9210   assert(First <= Last);
9211   if (First == Last)
9212     return false;
9213 
9214   BitVector Dests(FuncInfo.MF->getNumBlockIDs());
9215   unsigned NumCmps = 0;
9216   for (int64_t I = First; I <= Last; ++I) {
9217     assert(Clusters[I].Kind == CC_Range);
9218     Dests.set(Clusters[I].MBB->getNumber());
9219     NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2;
9220   }
9221   unsigned NumDests = Dests.count();
9222 
9223   APInt Low = Clusters[First].Low->getValue();
9224   APInt High = Clusters[Last].High->getValue();
9225   assert(Low.slt(High));
9226 
9227   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9228   const DataLayout &DL = DAG.getDataLayout();
9229   if (!TLI.isSuitableForBitTests(NumDests, NumCmps, Low, High, DL))
9230     return false;
9231 
9232   APInt LowBound;
9233   APInt CmpRange;
9234 
9235   const int BitWidth = TLI.getPointerTy(DL).getSizeInBits();
9236   assert(TLI.rangeFitsInWord(Low, High, DL) &&
9237          "Case range must fit in bit mask!");
9238 
9239   // Check if the clusters cover a contiguous range such that no value in the
9240   // range will jump to the default statement.
9241   bool ContiguousRange = true;
9242   for (int64_t I = First + 1; I <= Last; ++I) {
9243     if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) {
9244       ContiguousRange = false;
9245       break;
9246     }
9247   }
9248 
9249   if (Low.isStrictlyPositive() && High.slt(BitWidth)) {
9250     // Optimize the case where all the case values fit in a word without having
9251     // to subtract minValue. In this case, we can optimize away the subtraction.
9252     LowBound = APInt::getNullValue(Low.getBitWidth());
9253     CmpRange = High;
9254     ContiguousRange = false;
9255   } else {
9256     LowBound = Low;
9257     CmpRange = High - Low;
9258   }
9259 
9260   CaseBitsVector CBV;
9261   auto TotalProb = BranchProbability::getZero();
9262   for (unsigned i = First; i <= Last; ++i) {
9263     // Find the CaseBits for this destination.
9264     unsigned j;
9265     for (j = 0; j < CBV.size(); ++j)
9266       if (CBV[j].BB == Clusters[i].MBB)
9267         break;
9268     if (j == CBV.size())
9269       CBV.push_back(
9270           CaseBits(0, Clusters[i].MBB, 0, BranchProbability::getZero()));
9271     CaseBits *CB = &CBV[j];
9272 
9273     // Update Mask, Bits and ExtraProb.
9274     uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue();
9275     uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue();
9276     assert(Hi >= Lo && Hi < 64 && "Invalid bit case!");
9277     CB->Mask |= (-1ULL >> (63 - (Hi - Lo))) << Lo;
9278     CB->Bits += Hi - Lo + 1;
9279     CB->ExtraProb += Clusters[i].Prob;
9280     TotalProb += Clusters[i].Prob;
9281   }
9282 
9283   BitTestInfo BTI;
9284   std::sort(CBV.begin(), CBV.end(), [](const CaseBits &a, const CaseBits &b) {
9285     // Sort by probability first, number of bits second.
9286     if (a.ExtraProb != b.ExtraProb)
9287       return a.ExtraProb > b.ExtraProb;
9288     return a.Bits > b.Bits;
9289   });
9290 
9291   for (auto &CB : CBV) {
9292     MachineBasicBlock *BitTestBB =
9293         FuncInfo.MF->CreateMachineBasicBlock(SI->getParent());
9294     BTI.push_back(BitTestCase(CB.Mask, BitTestBB, CB.BB, CB.ExtraProb));
9295   }
9296   BitTestCases.emplace_back(std::move(LowBound), std::move(CmpRange),
9297                             SI->getCondition(), -1U, MVT::Other, false,
9298                             ContiguousRange, nullptr, nullptr, std::move(BTI),
9299                             TotalProb);
9300 
9301   BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High,
9302                                     BitTestCases.size() - 1, TotalProb);
9303   return true;
9304 }
9305 
9306 void SelectionDAGBuilder::findBitTestClusters(CaseClusterVector &Clusters,
9307                                               const SwitchInst *SI) {
9308 // Partition Clusters into as few subsets as possible, where each subset has a
9309 // range that fits in a machine word and has <= 3 unique destinations.
9310 
9311 #ifndef NDEBUG
9312   // Clusters must be sorted and contain Range or JumpTable clusters.
9313   assert(!Clusters.empty());
9314   assert(Clusters[0].Kind == CC_Range || Clusters[0].Kind == CC_JumpTable);
9315   for (const CaseCluster &C : Clusters)
9316     assert(C.Kind == CC_Range || C.Kind == CC_JumpTable);
9317   for (unsigned i = 1; i < Clusters.size(); ++i)
9318     assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue()));
9319 #endif
9320 
9321   // The algorithm below is not suitable for -O0.
9322   if (TM.getOptLevel() == CodeGenOpt::None)
9323     return;
9324 
9325   // If target does not have legal shift left, do not emit bit tests at all.
9326   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9327   const DataLayout &DL = DAG.getDataLayout();
9328 
9329   EVT PTy = TLI.getPointerTy(DL);
9330   if (!TLI.isOperationLegal(ISD::SHL, PTy))
9331     return;
9332 
9333   int BitWidth = PTy.getSizeInBits();
9334   const int64_t N = Clusters.size();
9335 
9336   // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1].
9337   SmallVector<unsigned, 8> MinPartitions(N);
9338   // LastElement[i] is the last element of the partition starting at i.
9339   SmallVector<unsigned, 8> LastElement(N);
9340 
9341   // FIXME: This might not be the best algorithm for finding bit test clusters.
9342 
9343   // Base case: There is only one way to partition Clusters[N-1].
9344   MinPartitions[N - 1] = 1;
9345   LastElement[N - 1] = N - 1;
9346 
9347   // Note: loop indexes are signed to avoid underflow.
9348   for (int64_t i = N - 2; i >= 0; --i) {
9349     // Find optimal partitioning of Clusters[i..N-1].
9350     // Baseline: Put Clusters[i] into a partition on its own.
9351     MinPartitions[i] = MinPartitions[i + 1] + 1;
9352     LastElement[i] = i;
9353 
9354     // Search for a solution that results in fewer partitions.
9355     // Note: the search is limited by BitWidth, reducing time complexity.
9356     for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) {
9357       // Try building a partition from Clusters[i..j].
9358 
9359       // Check the range.
9360       if (!TLI.rangeFitsInWord(Clusters[i].Low->getValue(),
9361                                Clusters[j].High->getValue(), DL))
9362         continue;
9363 
9364       // Check nbr of destinations and cluster types.
9365       // FIXME: This works, but doesn't seem very efficient.
9366       bool RangesOnly = true;
9367       BitVector Dests(FuncInfo.MF->getNumBlockIDs());
9368       for (int64_t k = i; k <= j; k++) {
9369         if (Clusters[k].Kind != CC_Range) {
9370           RangesOnly = false;
9371           break;
9372         }
9373         Dests.set(Clusters[k].MBB->getNumber());
9374       }
9375       if (!RangesOnly || Dests.count() > 3)
9376         break;
9377 
9378       // Check if it's a better partition.
9379       unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
9380       if (NumPartitions < MinPartitions[i]) {
9381         // Found a better partition.
9382         MinPartitions[i] = NumPartitions;
9383         LastElement[i] = j;
9384       }
9385     }
9386   }
9387 
9388   // Iterate over the partitions, replacing with bit-test clusters in-place.
9389   unsigned DstIndex = 0;
9390   for (unsigned First = 0, Last; First < N; First = Last + 1) {
9391     Last = LastElement[First];
9392     assert(First <= Last);
9393     assert(DstIndex <= First);
9394 
9395     CaseCluster BitTestCluster;
9396     if (buildBitTests(Clusters, First, Last, SI, BitTestCluster)) {
9397       Clusters[DstIndex++] = BitTestCluster;
9398     } else {
9399       size_t NumClusters = Last - First + 1;
9400       std::memmove(&Clusters[DstIndex], &Clusters[First],
9401                    sizeof(Clusters[0]) * NumClusters);
9402       DstIndex += NumClusters;
9403     }
9404   }
9405   Clusters.resize(DstIndex);
9406 }
9407 
9408 void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W, Value *Cond,
9409                                         MachineBasicBlock *SwitchMBB,
9410                                         MachineBasicBlock *DefaultMBB) {
9411   MachineFunction *CurMF = FuncInfo.MF;
9412   MachineBasicBlock *NextMBB = nullptr;
9413   MachineFunction::iterator BBI(W.MBB);
9414   if (++BBI != FuncInfo.MF->end())
9415     NextMBB = &*BBI;
9416 
9417   unsigned Size = W.LastCluster - W.FirstCluster + 1;
9418 
9419   BranchProbabilityInfo *BPI = FuncInfo.BPI;
9420 
9421   if (Size == 2 && W.MBB == SwitchMBB) {
9422     // If any two of the cases has the same destination, and if one value
9423     // is the same as the other, but has one bit unset that the other has set,
9424     // use bit manipulation to do two compares at once.  For example:
9425     // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
9426     // TODO: This could be extended to merge any 2 cases in switches with 3
9427     // cases.
9428     // TODO: Handle cases where W.CaseBB != SwitchBB.
9429     CaseCluster &Small = *W.FirstCluster;
9430     CaseCluster &Big = *W.LastCluster;
9431 
9432     if (Small.Low == Small.High && Big.Low == Big.High &&
9433         Small.MBB == Big.MBB) {
9434       const APInt &SmallValue = Small.Low->getValue();
9435       const APInt &BigValue = Big.Low->getValue();
9436 
9437       // Check that there is only one bit different.
9438       APInt CommonBit = BigValue ^ SmallValue;
9439       if (CommonBit.isPowerOf2()) {
9440         SDValue CondLHS = getValue(Cond);
9441         EVT VT = CondLHS.getValueType();
9442         SDLoc DL = getCurSDLoc();
9443 
9444         SDValue Or = DAG.getNode(ISD::OR, DL, VT, CondLHS,
9445                                  DAG.getConstant(CommonBit, DL, VT));
9446         SDValue Cond = DAG.getSetCC(
9447             DL, MVT::i1, Or, DAG.getConstant(BigValue | SmallValue, DL, VT),
9448             ISD::SETEQ);
9449 
9450         // Update successor info.
9451         // Both Small and Big will jump to Small.BB, so we sum up the
9452         // probabilities.
9453         addSuccessorWithProb(SwitchMBB, Small.MBB, Small.Prob + Big.Prob);
9454         if (BPI)
9455           addSuccessorWithProb(
9456               SwitchMBB, DefaultMBB,
9457               // The default destination is the first successor in IR.
9458               BPI->getEdgeProbability(SwitchMBB->getBasicBlock(), (unsigned)0));
9459         else
9460           addSuccessorWithProb(SwitchMBB, DefaultMBB);
9461 
9462         // Insert the true branch.
9463         SDValue BrCond =
9464             DAG.getNode(ISD::BRCOND, DL, MVT::Other, getControlRoot(), Cond,
9465                         DAG.getBasicBlock(Small.MBB));
9466         // Insert the false branch.
9467         BrCond = DAG.getNode(ISD::BR, DL, MVT::Other, BrCond,
9468                              DAG.getBasicBlock(DefaultMBB));
9469 
9470         DAG.setRoot(BrCond);
9471         return;
9472       }
9473     }
9474   }
9475 
9476   if (TM.getOptLevel() != CodeGenOpt::None) {
9477     // Order cases by probability so the most likely case will be checked first.
9478     std::sort(W.FirstCluster, W.LastCluster + 1,
9479               [](const CaseCluster &a, const CaseCluster &b) {
9480       return a.Prob > b.Prob;
9481     });
9482 
9483     // Rearrange the case blocks so that the last one falls through if possible
9484     // without without changing the order of probabilities.
9485     for (CaseClusterIt I = W.LastCluster; I > W.FirstCluster; ) {
9486       --I;
9487       if (I->Prob > W.LastCluster->Prob)
9488         break;
9489       if (I->Kind == CC_Range && I->MBB == NextMBB) {
9490         std::swap(*I, *W.LastCluster);
9491         break;
9492       }
9493     }
9494   }
9495 
9496   // Compute total probability.
9497   BranchProbability DefaultProb = W.DefaultProb;
9498   BranchProbability UnhandledProbs = DefaultProb;
9499   for (CaseClusterIt I = W.FirstCluster; I <= W.LastCluster; ++I)
9500     UnhandledProbs += I->Prob;
9501 
9502   MachineBasicBlock *CurMBB = W.MBB;
9503   for (CaseClusterIt I = W.FirstCluster, E = W.LastCluster; I <= E; ++I) {
9504     MachineBasicBlock *Fallthrough;
9505     if (I == W.LastCluster) {
9506       // For the last cluster, fall through to the default destination.
9507       Fallthrough = DefaultMBB;
9508     } else {
9509       Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock());
9510       CurMF->insert(BBI, Fallthrough);
9511       // Put Cond in a virtual register to make it available from the new blocks.
9512       ExportFromCurrentBlock(Cond);
9513     }
9514     UnhandledProbs -= I->Prob;
9515 
9516     switch (I->Kind) {
9517       case CC_JumpTable: {
9518         // FIXME: Optimize away range check based on pivot comparisons.
9519         JumpTableHeader *JTH = &JTCases[I->JTCasesIndex].first;
9520         JumpTable *JT = &JTCases[I->JTCasesIndex].second;
9521 
9522         // The jump block hasn't been inserted yet; insert it here.
9523         MachineBasicBlock *JumpMBB = JT->MBB;
9524         CurMF->insert(BBI, JumpMBB);
9525 
9526         auto JumpProb = I->Prob;
9527         auto FallthroughProb = UnhandledProbs;
9528 
9529         // If the default statement is a target of the jump table, we evenly
9530         // distribute the default probability to successors of CurMBB. Also
9531         // update the probability on the edge from JumpMBB to Fallthrough.
9532         for (MachineBasicBlock::succ_iterator SI = JumpMBB->succ_begin(),
9533                                               SE = JumpMBB->succ_end();
9534              SI != SE; ++SI) {
9535           if (*SI == DefaultMBB) {
9536             JumpProb += DefaultProb / 2;
9537             FallthroughProb -= DefaultProb / 2;
9538             JumpMBB->setSuccProbability(SI, DefaultProb / 2);
9539             JumpMBB->normalizeSuccProbs();
9540             break;
9541           }
9542         }
9543 
9544         addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb);
9545         addSuccessorWithProb(CurMBB, JumpMBB, JumpProb);
9546         CurMBB->normalizeSuccProbs();
9547 
9548         // The jump table header will be inserted in our current block, do the
9549         // range check, and fall through to our fallthrough block.
9550         JTH->HeaderBB = CurMBB;
9551         JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader.
9552 
9553         // If we're in the right place, emit the jump table header right now.
9554         if (CurMBB == SwitchMBB) {
9555           visitJumpTableHeader(*JT, *JTH, SwitchMBB);
9556           JTH->Emitted = true;
9557         }
9558         break;
9559       }
9560       case CC_BitTests: {
9561         // FIXME: Optimize away range check based on pivot comparisons.
9562         BitTestBlock *BTB = &BitTestCases[I->BTCasesIndex];
9563 
9564         // The bit test blocks haven't been inserted yet; insert them here.
9565         for (BitTestCase &BTC : BTB->Cases)
9566           CurMF->insert(BBI, BTC.ThisBB);
9567 
9568         // Fill in fields of the BitTestBlock.
9569         BTB->Parent = CurMBB;
9570         BTB->Default = Fallthrough;
9571 
9572         BTB->DefaultProb = UnhandledProbs;
9573         // If the cases in bit test don't form a contiguous range, we evenly
9574         // distribute the probability on the edge to Fallthrough to two
9575         // successors of CurMBB.
9576         if (!BTB->ContiguousRange) {
9577           BTB->Prob += DefaultProb / 2;
9578           BTB->DefaultProb -= DefaultProb / 2;
9579         }
9580 
9581         // If we're in the right place, emit the bit test header right now.
9582         if (CurMBB == SwitchMBB) {
9583           visitBitTestHeader(*BTB, SwitchMBB);
9584           BTB->Emitted = true;
9585         }
9586         break;
9587       }
9588       case CC_Range: {
9589         const Value *RHS, *LHS, *MHS;
9590         ISD::CondCode CC;
9591         if (I->Low == I->High) {
9592           // Check Cond == I->Low.
9593           CC = ISD::SETEQ;
9594           LHS = Cond;
9595           RHS=I->Low;
9596           MHS = nullptr;
9597         } else {
9598           // Check I->Low <= Cond <= I->High.
9599           CC = ISD::SETLE;
9600           LHS = I->Low;
9601           MHS = Cond;
9602           RHS = I->High;
9603         }
9604 
9605         // The false probability is the sum of all unhandled cases.
9606         CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB,
9607                      getCurSDLoc(), I->Prob, UnhandledProbs);
9608 
9609         if (CurMBB == SwitchMBB)
9610           visitSwitchCase(CB, SwitchMBB);
9611         else
9612           SwitchCases.push_back(CB);
9613 
9614         break;
9615       }
9616     }
9617     CurMBB = Fallthrough;
9618   }
9619 }
9620 
9621 unsigned SelectionDAGBuilder::caseClusterRank(const CaseCluster &CC,
9622                                               CaseClusterIt First,
9623                                               CaseClusterIt Last) {
9624   return std::count_if(First, Last + 1, [&](const CaseCluster &X) {
9625     if (X.Prob != CC.Prob)
9626       return X.Prob > CC.Prob;
9627 
9628     // Ties are broken by comparing the case value.
9629     return X.Low->getValue().slt(CC.Low->getValue());
9630   });
9631 }
9632 
9633 void SelectionDAGBuilder::splitWorkItem(SwitchWorkList &WorkList,
9634                                         const SwitchWorkListItem &W,
9635                                         Value *Cond,
9636                                         MachineBasicBlock *SwitchMBB) {
9637   assert(W.FirstCluster->Low->getValue().slt(W.LastCluster->Low->getValue()) &&
9638          "Clusters not sorted?");
9639 
9640   assert(W.LastCluster - W.FirstCluster + 1 >= 2 && "Too small to split!");
9641 
9642   // Balance the tree based on branch probabilities to create a near-optimal (in
9643   // terms of search time given key frequency) binary search tree. See e.g. Kurt
9644   // Mehlhorn "Nearly Optimal Binary Search Trees" (1975).
9645   CaseClusterIt LastLeft = W.FirstCluster;
9646   CaseClusterIt FirstRight = W.LastCluster;
9647   auto LeftProb = LastLeft->Prob + W.DefaultProb / 2;
9648   auto RightProb = FirstRight->Prob + W.DefaultProb / 2;
9649 
9650   // Move LastLeft and FirstRight towards each other from opposite directions to
9651   // find a partitioning of the clusters which balances the probability on both
9652   // sides. If LeftProb and RightProb are equal, alternate which side is
9653   // taken to ensure 0-probability nodes are distributed evenly.
9654   unsigned I = 0;
9655   while (LastLeft + 1 < FirstRight) {
9656     if (LeftProb < RightProb || (LeftProb == RightProb && (I & 1)))
9657       LeftProb += (++LastLeft)->Prob;
9658     else
9659       RightProb += (--FirstRight)->Prob;
9660     I++;
9661   }
9662 
9663   for (;;) {
9664     // Our binary search tree differs from a typical BST in that ours can have up
9665     // to three values in each leaf. The pivot selection above doesn't take that
9666     // into account, which means the tree might require more nodes and be less
9667     // efficient. We compensate for this here.
9668 
9669     unsigned NumLeft = LastLeft - W.FirstCluster + 1;
9670     unsigned NumRight = W.LastCluster - FirstRight + 1;
9671 
9672     if (std::min(NumLeft, NumRight) < 3 && std::max(NumLeft, NumRight) > 3) {
9673       // If one side has less than 3 clusters, and the other has more than 3,
9674       // consider taking a cluster from the other side.
9675 
9676       if (NumLeft < NumRight) {
9677         // Consider moving the first cluster on the right to the left side.
9678         CaseCluster &CC = *FirstRight;
9679         unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster);
9680         unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft);
9681         if (LeftSideRank <= RightSideRank) {
9682           // Moving the cluster to the left does not demote it.
9683           ++LastLeft;
9684           ++FirstRight;
9685           continue;
9686         }
9687       } else {
9688         assert(NumRight < NumLeft);
9689         // Consider moving the last element on the left to the right side.
9690         CaseCluster &CC = *LastLeft;
9691         unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft);
9692         unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster);
9693         if (RightSideRank <= LeftSideRank) {
9694           // Moving the cluster to the right does not demot it.
9695           --LastLeft;
9696           --FirstRight;
9697           continue;
9698         }
9699       }
9700     }
9701     break;
9702   }
9703 
9704   assert(LastLeft + 1 == FirstRight);
9705   assert(LastLeft >= W.FirstCluster);
9706   assert(FirstRight <= W.LastCluster);
9707 
9708   // Use the first element on the right as pivot since we will make less-than
9709   // comparisons against it.
9710   CaseClusterIt PivotCluster = FirstRight;
9711   assert(PivotCluster > W.FirstCluster);
9712   assert(PivotCluster <= W.LastCluster);
9713 
9714   CaseClusterIt FirstLeft = W.FirstCluster;
9715   CaseClusterIt LastRight = W.LastCluster;
9716 
9717   const ConstantInt *Pivot = PivotCluster->Low;
9718 
9719   // New blocks will be inserted immediately after the current one.
9720   MachineFunction::iterator BBI(W.MBB);
9721   ++BBI;
9722 
9723   // We will branch to the LHS if Value < Pivot. If LHS is a single cluster,
9724   // we can branch to its destination directly if it's squeezed exactly in
9725   // between the known lower bound and Pivot - 1.
9726   MachineBasicBlock *LeftMBB;
9727   if (FirstLeft == LastLeft && FirstLeft->Kind == CC_Range &&
9728       FirstLeft->Low == W.GE &&
9729       (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) {
9730     LeftMBB = FirstLeft->MBB;
9731   } else {
9732     LeftMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock());
9733     FuncInfo.MF->insert(BBI, LeftMBB);
9734     WorkList.push_back(
9735         {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2});
9736     // Put Cond in a virtual register to make it available from the new blocks.
9737     ExportFromCurrentBlock(Cond);
9738   }
9739 
9740   // Similarly, we will branch to the RHS if Value >= Pivot. If RHS is a
9741   // single cluster, RHS.Low == Pivot, and we can branch to its destination
9742   // directly if RHS.High equals the current upper bound.
9743   MachineBasicBlock *RightMBB;
9744   if (FirstRight == LastRight && FirstRight->Kind == CC_Range &&
9745       W.LT && (FirstRight->High->getValue() + 1ULL) == W.LT->getValue()) {
9746     RightMBB = FirstRight->MBB;
9747   } else {
9748     RightMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock());
9749     FuncInfo.MF->insert(BBI, RightMBB);
9750     WorkList.push_back(
9751         {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2});
9752     // Put Cond in a virtual register to make it available from the new blocks.
9753     ExportFromCurrentBlock(Cond);
9754   }
9755 
9756   // Create the CaseBlock record that will be used to lower the branch.
9757   CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB,
9758                getCurSDLoc(), LeftProb, RightProb);
9759 
9760   if (W.MBB == SwitchMBB)
9761     visitSwitchCase(CB, SwitchMBB);
9762   else
9763     SwitchCases.push_back(CB);
9764 }
9765 
9766 void SelectionDAGBuilder::visitSwitch(const SwitchInst &SI) {
9767   // Extract cases from the switch.
9768   BranchProbabilityInfo *BPI = FuncInfo.BPI;
9769   CaseClusterVector Clusters;
9770   Clusters.reserve(SI.getNumCases());
9771   for (auto I : SI.cases()) {
9772     MachineBasicBlock *Succ = FuncInfo.MBBMap[I.getCaseSuccessor()];
9773     const ConstantInt *CaseVal = I.getCaseValue();
9774     BranchProbability Prob =
9775         BPI ? BPI->getEdgeProbability(SI.getParent(), I.getSuccessorIndex())
9776             : BranchProbability(1, SI.getNumCases() + 1);
9777     Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob));
9778   }
9779 
9780   MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[SI.getDefaultDest()];
9781 
9782   // Cluster adjacent cases with the same destination. We do this at all
9783   // optimization levels because it's cheap to do and will make codegen faster
9784   // if there are many clusters.
9785   sortAndRangeify(Clusters);
9786 
9787   if (TM.getOptLevel() != CodeGenOpt::None) {
9788     // Replace an unreachable default with the most popular destination.
9789     // FIXME: Exploit unreachable default more aggressively.
9790     bool UnreachableDefault =
9791         isa<UnreachableInst>(SI.getDefaultDest()->getFirstNonPHIOrDbg());
9792     if (UnreachableDefault && !Clusters.empty()) {
9793       DenseMap<const BasicBlock *, unsigned> Popularity;
9794       unsigned MaxPop = 0;
9795       const BasicBlock *MaxBB = nullptr;
9796       for (auto I : SI.cases()) {
9797         const BasicBlock *BB = I.getCaseSuccessor();
9798         if (++Popularity[BB] > MaxPop) {
9799           MaxPop = Popularity[BB];
9800           MaxBB = BB;
9801         }
9802       }
9803       // Set new default.
9804       assert(MaxPop > 0 && MaxBB);
9805       DefaultMBB = FuncInfo.MBBMap[MaxBB];
9806 
9807       // Remove cases that were pointing to the destination that is now the
9808       // default.
9809       CaseClusterVector New;
9810       New.reserve(Clusters.size());
9811       for (CaseCluster &CC : Clusters) {
9812         if (CC.MBB != DefaultMBB)
9813           New.push_back(CC);
9814       }
9815       Clusters = std::move(New);
9816     }
9817   }
9818 
9819   // If there is only the default destination, jump there directly.
9820   MachineBasicBlock *SwitchMBB = FuncInfo.MBB;
9821   if (Clusters.empty()) {
9822     SwitchMBB->addSuccessor(DefaultMBB);
9823     if (DefaultMBB != NextBlock(SwitchMBB)) {
9824       DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other,
9825                               getControlRoot(), DAG.getBasicBlock(DefaultMBB)));
9826     }
9827     return;
9828   }
9829 
9830   findJumpTables(Clusters, &SI, DefaultMBB);
9831   findBitTestClusters(Clusters, &SI);
9832 
9833   DEBUG({
9834     dbgs() << "Case clusters: ";
9835     for (const CaseCluster &C : Clusters) {
9836       if (C.Kind == CC_JumpTable) dbgs() << "JT:";
9837       if (C.Kind == CC_BitTests) dbgs() << "BT:";
9838 
9839       C.Low->getValue().print(dbgs(), true);
9840       if (C.Low != C.High) {
9841         dbgs() << '-';
9842         C.High->getValue().print(dbgs(), true);
9843       }
9844       dbgs() << ' ';
9845     }
9846     dbgs() << '\n';
9847   });
9848 
9849   assert(!Clusters.empty());
9850   SwitchWorkList WorkList;
9851   CaseClusterIt First = Clusters.begin();
9852   CaseClusterIt Last = Clusters.end() - 1;
9853   auto DefaultProb = getEdgeProbability(SwitchMBB, DefaultMBB);
9854   WorkList.push_back({SwitchMBB, First, Last, nullptr, nullptr, DefaultProb});
9855 
9856   while (!WorkList.empty()) {
9857     SwitchWorkListItem W = WorkList.back();
9858     WorkList.pop_back();
9859     unsigned NumClusters = W.LastCluster - W.FirstCluster + 1;
9860 
9861     if (NumClusters > 3 && TM.getOptLevel() != CodeGenOpt::None &&
9862         !DefaultMBB->getParent()->getFunction()->optForMinSize()) {
9863       // For optimized builds, lower large range as a balanced binary tree.
9864       splitWorkItem(WorkList, W, SI.getCondition(), SwitchMBB);
9865       continue;
9866     }
9867 
9868     lowerWorkItem(W, SI.getCondition(), SwitchMBB, DefaultMBB);
9869   }
9870 }
9871