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