1 //===- InstCombineCalls.cpp -----------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the visitCall and visitInvoke functions.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "InstCombineInternal.h"
15 #include "llvm/ADT/APFloat.h"
16 #include "llvm/ADT/APInt.h"
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/None.h"
19 #include "llvm/ADT/Optional.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/ADT/Twine.h"
24 #include "llvm/Analysis/AssumptionCache.h"
25 #include "llvm/Analysis/InstructionSimplify.h"
26 #include "llvm/Analysis/MemoryBuiltins.h"
27 #include "llvm/Transforms/Utils/Local.h"
28 #include "llvm/Analysis/ValueTracking.h"
29 #include "llvm/IR/Attributes.h"
30 #include "llvm/IR/BasicBlock.h"
31 #include "llvm/IR/CallSite.h"
32 #include "llvm/IR/Constant.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/DataLayout.h"
35 #include "llvm/IR/DerivedTypes.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalVariable.h"
38 #include "llvm/IR/InstrTypes.h"
39 #include "llvm/IR/Instruction.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/IntrinsicInst.h"
42 #include "llvm/IR/Intrinsics.h"
43 #include "llvm/IR/LLVMContext.h"
44 #include "llvm/IR/Metadata.h"
45 #include "llvm/IR/PatternMatch.h"
46 #include "llvm/IR/Statepoint.h"
47 #include "llvm/IR/Type.h"
48 #include "llvm/IR/User.h"
49 #include "llvm/IR/Value.h"
50 #include "llvm/IR/ValueHandle.h"
51 #include "llvm/Support/AtomicOrdering.h"
52 #include "llvm/Support/Casting.h"
53 #include "llvm/Support/CommandLine.h"
54 #include "llvm/Support/Compiler.h"
55 #include "llvm/Support/Debug.h"
56 #include "llvm/Support/ErrorHandling.h"
57 #include "llvm/Support/KnownBits.h"
58 #include "llvm/Support/MathExtras.h"
59 #include "llvm/Support/raw_ostream.h"
60 #include "llvm/Transforms/InstCombine/InstCombineWorklist.h"
61 #include "llvm/Transforms/Utils/SimplifyLibCalls.h"
62 #include <algorithm>
63 #include <cassert>
64 #include <cstdint>
65 #include <cstring>
66 #include <utility>
67 #include <vector>
68 
69 using namespace llvm;
70 using namespace PatternMatch;
71 
72 #define DEBUG_TYPE "instcombine"
73 
74 STATISTIC(NumSimplified, "Number of library calls simplified");
75 
76 static cl::opt<unsigned> GuardWideningWindow(
77     "instcombine-guard-widening-window",
78     cl::init(3),
79     cl::desc("How wide an instruction window to bypass looking for "
80              "another guard"));
81 
82 /// Return the specified type promoted as it would be to pass though a va_arg
83 /// area.
84 static Type *getPromotedType(Type *Ty) {
85   if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
86     if (ITy->getBitWidth() < 32)
87       return Type::getInt32Ty(Ty->getContext());
88   }
89   return Ty;
90 }
91 
92 /// Return a constant boolean vector that has true elements in all positions
93 /// where the input constant data vector has an element with the sign bit set.
94 static Constant *getNegativeIsTrueBoolVec(ConstantDataVector *V) {
95   SmallVector<Constant *, 32> BoolVec;
96   IntegerType *BoolTy = Type::getInt1Ty(V->getContext());
97   for (unsigned I = 0, E = V->getNumElements(); I != E; ++I) {
98     Constant *Elt = V->getElementAsConstant(I);
99     assert((isa<ConstantInt>(Elt) || isa<ConstantFP>(Elt)) &&
100            "Unexpected constant data vector element type");
101     bool Sign = V->getElementType()->isIntegerTy()
102                     ? cast<ConstantInt>(Elt)->isNegative()
103                     : cast<ConstantFP>(Elt)->isNegative();
104     BoolVec.push_back(ConstantInt::get(BoolTy, Sign));
105   }
106   return ConstantVector::get(BoolVec);
107 }
108 
109 Instruction *InstCombiner::SimplifyAnyMemTransfer(AnyMemTransferInst *MI) {
110   unsigned DstAlign = getKnownAlignment(MI->getRawDest(), DL, MI, &AC, &DT);
111   unsigned CopyDstAlign = MI->getDestAlignment();
112   if (CopyDstAlign < DstAlign){
113     MI->setDestAlignment(DstAlign);
114     return MI;
115   }
116 
117   unsigned SrcAlign = getKnownAlignment(MI->getRawSource(), DL, MI, &AC, &DT);
118   unsigned CopySrcAlign = MI->getSourceAlignment();
119   if (CopySrcAlign < SrcAlign) {
120     MI->setSourceAlignment(SrcAlign);
121     return MI;
122   }
123 
124   // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
125   // load/store.
126   ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getLength());
127   if (!MemOpLength) return nullptr;
128 
129   // Source and destination pointer types are always "i8*" for intrinsic.  See
130   // if the size is something we can handle with a single primitive load/store.
131   // A single load+store correctly handles overlapping memory in the memmove
132   // case.
133   uint64_t Size = MemOpLength->getLimitedValue();
134   assert(Size && "0-sized memory transferring should be removed already.");
135 
136   if (Size > 8 || (Size&(Size-1)))
137     return nullptr;  // If not 1/2/4/8 bytes, exit.
138 
139   // Use an integer load+store unless we can find something better.
140   unsigned SrcAddrSp =
141     cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
142   unsigned DstAddrSp =
143     cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
144 
145   IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
146   Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
147   Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
148 
149   // If the memcpy has metadata describing the members, see if we can get the
150   // TBAA tag describing our copy.
151   MDNode *CopyMD = nullptr;
152   if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa)) {
153     CopyMD = M;
154   } else if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa_struct)) {
155     if (M->getNumOperands() == 3 && M->getOperand(0) &&
156         mdconst::hasa<ConstantInt>(M->getOperand(0)) &&
157         mdconst::extract<ConstantInt>(M->getOperand(0))->isZero() &&
158         M->getOperand(1) &&
159         mdconst::hasa<ConstantInt>(M->getOperand(1)) &&
160         mdconst::extract<ConstantInt>(M->getOperand(1))->getValue() ==
161         Size &&
162         M->getOperand(2) && isa<MDNode>(M->getOperand(2)))
163       CopyMD = cast<MDNode>(M->getOperand(2));
164   }
165 
166   Value *Src = Builder.CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
167   Value *Dest = Builder.CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
168   LoadInst *L = Builder.CreateLoad(Src);
169   // Alignment from the mem intrinsic will be better, so use it.
170   L->setAlignment(CopySrcAlign);
171   if (CopyMD)
172     L->setMetadata(LLVMContext::MD_tbaa, CopyMD);
173   MDNode *LoopMemParallelMD =
174     MI->getMetadata(LLVMContext::MD_mem_parallel_loop_access);
175   if (LoopMemParallelMD)
176     L->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
177 
178   StoreInst *S = Builder.CreateStore(L, Dest);
179   // Alignment from the mem intrinsic will be better, so use it.
180   S->setAlignment(CopyDstAlign);
181   if (CopyMD)
182     S->setMetadata(LLVMContext::MD_tbaa, CopyMD);
183   if (LoopMemParallelMD)
184     S->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
185 
186   if (auto *MT = dyn_cast<MemTransferInst>(MI)) {
187     // non-atomics can be volatile
188     L->setVolatile(MT->isVolatile());
189     S->setVolatile(MT->isVolatile());
190   }
191   if (isa<AtomicMemTransferInst>(MI)) {
192     // atomics have to be unordered
193     L->setOrdering(AtomicOrdering::Unordered);
194     S->setOrdering(AtomicOrdering::Unordered);
195   }
196 
197   // Set the size of the copy to 0, it will be deleted on the next iteration.
198   MI->setLength(Constant::getNullValue(MemOpLength->getType()));
199   return MI;
200 }
201 
202 Instruction *InstCombiner::SimplifyAnyMemSet(AnyMemSetInst *MI) {
203   unsigned Alignment = getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT);
204   if (MI->getDestAlignment() < Alignment) {
205     MI->setDestAlignment(Alignment);
206     return MI;
207   }
208 
209   // Extract the length and alignment and fill if they are constant.
210   ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
211   ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
212   if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
213     return nullptr;
214   uint64_t Len = LenC->getLimitedValue();
215   Alignment = MI->getDestAlignment();
216   assert(Len && "0-sized memory setting should be removed already.");
217 
218   // memset(s,c,n) -> store s, c (for n=1,2,4,8)
219   if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
220     Type *ITy = IntegerType::get(MI->getContext(), Len*8);  // n=1 -> i8.
221 
222     Value *Dest = MI->getDest();
223     unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
224     Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
225     Dest = Builder.CreateBitCast(Dest, NewDstPtrTy);
226 
227     // Alignment 0 is identity for alignment 1 for memset, but not store.
228     if (Alignment == 0) Alignment = 1;
229 
230     // Extract the fill value and store.
231     uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
232     StoreInst *S = Builder.CreateStore(ConstantInt::get(ITy, Fill), Dest,
233                                        MI->isVolatile());
234     S->setAlignment(Alignment);
235     if (isa<AtomicMemSetInst>(MI))
236       S->setOrdering(AtomicOrdering::Unordered);
237 
238     // Set the size of the copy to 0, it will be deleted on the next iteration.
239     MI->setLength(Constant::getNullValue(LenC->getType()));
240     return MI;
241   }
242 
243   return nullptr;
244 }
245 
246 static Value *simplifyX86AddsSubs(const IntrinsicInst &II,
247                                   InstCombiner::BuilderTy &Builder) {
248   bool IsAddition;
249 
250   switch (II.getIntrinsicID()) {
251   default: llvm_unreachable("Unexpected intrinsic!");
252   case Intrinsic::x86_sse2_padds_b:
253   case Intrinsic::x86_sse2_padds_w:
254   case Intrinsic::x86_avx2_padds_b:
255   case Intrinsic::x86_avx2_padds_w:
256   case Intrinsic::x86_avx512_padds_b_512:
257   case Intrinsic::x86_avx512_padds_w_512:
258     IsAddition = true;
259     break;
260   case Intrinsic::x86_sse2_psubs_b:
261   case Intrinsic::x86_sse2_psubs_w:
262   case Intrinsic::x86_avx2_psubs_b:
263   case Intrinsic::x86_avx2_psubs_w:
264   case Intrinsic::x86_avx512_psubs_b_512:
265   case Intrinsic::x86_avx512_psubs_w_512:
266     IsAddition = false;
267     break;
268   }
269 
270   auto *Arg0 = dyn_cast<Constant>(II.getOperand(0));
271   auto *Arg1 = dyn_cast<Constant>(II.getOperand(1));
272   auto VT = cast<VectorType>(II.getType());
273   auto SVT = VT->getElementType();
274   unsigned NumElems = VT->getNumElements();
275 
276   if (!Arg0 || !Arg1)
277     return nullptr;
278 
279   SmallVector<Constant *, 64> Result;
280 
281   APInt MaxValue = APInt::getSignedMaxValue(SVT->getIntegerBitWidth());
282   APInt MinValue = APInt::getSignedMinValue(SVT->getIntegerBitWidth());
283   for (unsigned i = 0; i < NumElems; ++i) {
284     auto *Elt0 = Arg0->getAggregateElement(i);
285     auto *Elt1 = Arg1->getAggregateElement(i);
286     if (isa<UndefValue>(Elt0) || isa<UndefValue>(Elt1)) {
287       Result.push_back(UndefValue::get(SVT));
288       continue;
289     }
290 
291     if (!isa<ConstantInt>(Elt0) || !isa<ConstantInt>(Elt1))
292       return nullptr;
293 
294     const APInt &Val0 = cast<ConstantInt>(Elt0)->getValue();
295     const APInt &Val1 = cast<ConstantInt>(Elt1)->getValue();
296     bool Overflow = false;
297     APInt ResultElem = IsAddition ? Val0.sadd_ov(Val1, Overflow)
298                                   : Val0.ssub_ov(Val1, Overflow);
299     if (Overflow)
300       ResultElem = Val0.isNegative() ? MinValue : MaxValue;
301     Result.push_back(Constant::getIntegerValue(SVT, ResultElem));
302   }
303 
304   return ConstantVector::get(Result);
305 }
306 
307 static Value *simplifyX86immShift(const IntrinsicInst &II,
308                                   InstCombiner::BuilderTy &Builder) {
309   bool LogicalShift = false;
310   bool ShiftLeft = false;
311 
312   switch (II.getIntrinsicID()) {
313   default: llvm_unreachable("Unexpected intrinsic!");
314   case Intrinsic::x86_sse2_psra_d:
315   case Intrinsic::x86_sse2_psra_w:
316   case Intrinsic::x86_sse2_psrai_d:
317   case Intrinsic::x86_sse2_psrai_w:
318   case Intrinsic::x86_avx2_psra_d:
319   case Intrinsic::x86_avx2_psra_w:
320   case Intrinsic::x86_avx2_psrai_d:
321   case Intrinsic::x86_avx2_psrai_w:
322   case Intrinsic::x86_avx512_psra_q_128:
323   case Intrinsic::x86_avx512_psrai_q_128:
324   case Intrinsic::x86_avx512_psra_q_256:
325   case Intrinsic::x86_avx512_psrai_q_256:
326   case Intrinsic::x86_avx512_psra_d_512:
327   case Intrinsic::x86_avx512_psra_q_512:
328   case Intrinsic::x86_avx512_psra_w_512:
329   case Intrinsic::x86_avx512_psrai_d_512:
330   case Intrinsic::x86_avx512_psrai_q_512:
331   case Intrinsic::x86_avx512_psrai_w_512:
332     LogicalShift = false; ShiftLeft = false;
333     break;
334   case Intrinsic::x86_sse2_psrl_d:
335   case Intrinsic::x86_sse2_psrl_q:
336   case Intrinsic::x86_sse2_psrl_w:
337   case Intrinsic::x86_sse2_psrli_d:
338   case Intrinsic::x86_sse2_psrli_q:
339   case Intrinsic::x86_sse2_psrli_w:
340   case Intrinsic::x86_avx2_psrl_d:
341   case Intrinsic::x86_avx2_psrl_q:
342   case Intrinsic::x86_avx2_psrl_w:
343   case Intrinsic::x86_avx2_psrli_d:
344   case Intrinsic::x86_avx2_psrli_q:
345   case Intrinsic::x86_avx2_psrli_w:
346   case Intrinsic::x86_avx512_psrl_d_512:
347   case Intrinsic::x86_avx512_psrl_q_512:
348   case Intrinsic::x86_avx512_psrl_w_512:
349   case Intrinsic::x86_avx512_psrli_d_512:
350   case Intrinsic::x86_avx512_psrli_q_512:
351   case Intrinsic::x86_avx512_psrli_w_512:
352     LogicalShift = true; ShiftLeft = false;
353     break;
354   case Intrinsic::x86_sse2_psll_d:
355   case Intrinsic::x86_sse2_psll_q:
356   case Intrinsic::x86_sse2_psll_w:
357   case Intrinsic::x86_sse2_pslli_d:
358   case Intrinsic::x86_sse2_pslli_q:
359   case Intrinsic::x86_sse2_pslli_w:
360   case Intrinsic::x86_avx2_psll_d:
361   case Intrinsic::x86_avx2_psll_q:
362   case Intrinsic::x86_avx2_psll_w:
363   case Intrinsic::x86_avx2_pslli_d:
364   case Intrinsic::x86_avx2_pslli_q:
365   case Intrinsic::x86_avx2_pslli_w:
366   case Intrinsic::x86_avx512_psll_d_512:
367   case Intrinsic::x86_avx512_psll_q_512:
368   case Intrinsic::x86_avx512_psll_w_512:
369   case Intrinsic::x86_avx512_pslli_d_512:
370   case Intrinsic::x86_avx512_pslli_q_512:
371   case Intrinsic::x86_avx512_pslli_w_512:
372     LogicalShift = true; ShiftLeft = true;
373     break;
374   }
375   assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left");
376 
377   // Simplify if count is constant.
378   auto Arg1 = II.getArgOperand(1);
379   auto CAZ = dyn_cast<ConstantAggregateZero>(Arg1);
380   auto CDV = dyn_cast<ConstantDataVector>(Arg1);
381   auto CInt = dyn_cast<ConstantInt>(Arg1);
382   if (!CAZ && !CDV && !CInt)
383     return nullptr;
384 
385   APInt Count(64, 0);
386   if (CDV) {
387     // SSE2/AVX2 uses all the first 64-bits of the 128-bit vector
388     // operand to compute the shift amount.
389     auto VT = cast<VectorType>(CDV->getType());
390     unsigned BitWidth = VT->getElementType()->getPrimitiveSizeInBits();
391     assert((64 % BitWidth) == 0 && "Unexpected packed shift size");
392     unsigned NumSubElts = 64 / BitWidth;
393 
394     // Concatenate the sub-elements to create the 64-bit value.
395     for (unsigned i = 0; i != NumSubElts; ++i) {
396       unsigned SubEltIdx = (NumSubElts - 1) - i;
397       auto SubElt = cast<ConstantInt>(CDV->getElementAsConstant(SubEltIdx));
398       Count <<= BitWidth;
399       Count |= SubElt->getValue().zextOrTrunc(64);
400     }
401   }
402   else if (CInt)
403     Count = CInt->getValue();
404 
405   auto Vec = II.getArgOperand(0);
406   auto VT = cast<VectorType>(Vec->getType());
407   auto SVT = VT->getElementType();
408   unsigned VWidth = VT->getNumElements();
409   unsigned BitWidth = SVT->getPrimitiveSizeInBits();
410 
411   // If shift-by-zero then just return the original value.
412   if (Count.isNullValue())
413     return Vec;
414 
415   // Handle cases when Shift >= BitWidth.
416   if (Count.uge(BitWidth)) {
417     // If LogicalShift - just return zero.
418     if (LogicalShift)
419       return ConstantAggregateZero::get(VT);
420 
421     // If ArithmeticShift - clamp Shift to (BitWidth - 1).
422     Count = APInt(64, BitWidth - 1);
423   }
424 
425   // Get a constant vector of the same type as the first operand.
426   auto ShiftAmt = ConstantInt::get(SVT, Count.zextOrTrunc(BitWidth));
427   auto ShiftVec = Builder.CreateVectorSplat(VWidth, ShiftAmt);
428 
429   if (ShiftLeft)
430     return Builder.CreateShl(Vec, ShiftVec);
431 
432   if (LogicalShift)
433     return Builder.CreateLShr(Vec, ShiftVec);
434 
435   return Builder.CreateAShr(Vec, ShiftVec);
436 }
437 
438 // Attempt to simplify AVX2 per-element shift intrinsics to a generic IR shift.
439 // Unlike the generic IR shifts, the intrinsics have defined behaviour for out
440 // of range shift amounts (logical - set to zero, arithmetic - splat sign bit).
441 static Value *simplifyX86varShift(const IntrinsicInst &II,
442                                   InstCombiner::BuilderTy &Builder) {
443   bool LogicalShift = false;
444   bool ShiftLeft = false;
445 
446   switch (II.getIntrinsicID()) {
447   default: llvm_unreachable("Unexpected intrinsic!");
448   case Intrinsic::x86_avx2_psrav_d:
449   case Intrinsic::x86_avx2_psrav_d_256:
450   case Intrinsic::x86_avx512_psrav_q_128:
451   case Intrinsic::x86_avx512_psrav_q_256:
452   case Intrinsic::x86_avx512_psrav_d_512:
453   case Intrinsic::x86_avx512_psrav_q_512:
454   case Intrinsic::x86_avx512_psrav_w_128:
455   case Intrinsic::x86_avx512_psrav_w_256:
456   case Intrinsic::x86_avx512_psrav_w_512:
457     LogicalShift = false;
458     ShiftLeft = false;
459     break;
460   case Intrinsic::x86_avx2_psrlv_d:
461   case Intrinsic::x86_avx2_psrlv_d_256:
462   case Intrinsic::x86_avx2_psrlv_q:
463   case Intrinsic::x86_avx2_psrlv_q_256:
464   case Intrinsic::x86_avx512_psrlv_d_512:
465   case Intrinsic::x86_avx512_psrlv_q_512:
466   case Intrinsic::x86_avx512_psrlv_w_128:
467   case Intrinsic::x86_avx512_psrlv_w_256:
468   case Intrinsic::x86_avx512_psrlv_w_512:
469     LogicalShift = true;
470     ShiftLeft = false;
471     break;
472   case Intrinsic::x86_avx2_psllv_d:
473   case Intrinsic::x86_avx2_psllv_d_256:
474   case Intrinsic::x86_avx2_psllv_q:
475   case Intrinsic::x86_avx2_psllv_q_256:
476   case Intrinsic::x86_avx512_psllv_d_512:
477   case Intrinsic::x86_avx512_psllv_q_512:
478   case Intrinsic::x86_avx512_psllv_w_128:
479   case Intrinsic::x86_avx512_psllv_w_256:
480   case Intrinsic::x86_avx512_psllv_w_512:
481     LogicalShift = true;
482     ShiftLeft = true;
483     break;
484   }
485   assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left");
486 
487   // Simplify if all shift amounts are constant/undef.
488   auto *CShift = dyn_cast<Constant>(II.getArgOperand(1));
489   if (!CShift)
490     return nullptr;
491 
492   auto Vec = II.getArgOperand(0);
493   auto VT = cast<VectorType>(II.getType());
494   auto SVT = VT->getVectorElementType();
495   int NumElts = VT->getNumElements();
496   int BitWidth = SVT->getIntegerBitWidth();
497 
498   // Collect each element's shift amount.
499   // We also collect special cases: UNDEF = -1, OUT-OF-RANGE = BitWidth.
500   bool AnyOutOfRange = false;
501   SmallVector<int, 8> ShiftAmts;
502   for (int I = 0; I < NumElts; ++I) {
503     auto *CElt = CShift->getAggregateElement(I);
504     if (CElt && isa<UndefValue>(CElt)) {
505       ShiftAmts.push_back(-1);
506       continue;
507     }
508 
509     auto *COp = dyn_cast_or_null<ConstantInt>(CElt);
510     if (!COp)
511       return nullptr;
512 
513     // Handle out of range shifts.
514     // If LogicalShift - set to BitWidth (special case).
515     // If ArithmeticShift - set to (BitWidth - 1) (sign splat).
516     APInt ShiftVal = COp->getValue();
517     if (ShiftVal.uge(BitWidth)) {
518       AnyOutOfRange = LogicalShift;
519       ShiftAmts.push_back(LogicalShift ? BitWidth : BitWidth - 1);
520       continue;
521     }
522 
523     ShiftAmts.push_back((int)ShiftVal.getZExtValue());
524   }
525 
526   // If all elements out of range or UNDEF, return vector of zeros/undefs.
527   // ArithmeticShift should only hit this if they are all UNDEF.
528   auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); };
529   if (llvm::all_of(ShiftAmts, OutOfRange)) {
530     SmallVector<Constant *, 8> ConstantVec;
531     for (int Idx : ShiftAmts) {
532       if (Idx < 0) {
533         ConstantVec.push_back(UndefValue::get(SVT));
534       } else {
535         assert(LogicalShift && "Logical shift expected");
536         ConstantVec.push_back(ConstantInt::getNullValue(SVT));
537       }
538     }
539     return ConstantVector::get(ConstantVec);
540   }
541 
542   // We can't handle only some out of range values with generic logical shifts.
543   if (AnyOutOfRange)
544     return nullptr;
545 
546   // Build the shift amount constant vector.
547   SmallVector<Constant *, 8> ShiftVecAmts;
548   for (int Idx : ShiftAmts) {
549     if (Idx < 0)
550       ShiftVecAmts.push_back(UndefValue::get(SVT));
551     else
552       ShiftVecAmts.push_back(ConstantInt::get(SVT, Idx));
553   }
554   auto ShiftVec = ConstantVector::get(ShiftVecAmts);
555 
556   if (ShiftLeft)
557     return Builder.CreateShl(Vec, ShiftVec);
558 
559   if (LogicalShift)
560     return Builder.CreateLShr(Vec, ShiftVec);
561 
562   return Builder.CreateAShr(Vec, ShiftVec);
563 }
564 
565 static Value *simplifyX86pack(IntrinsicInst &II, bool IsSigned) {
566   Value *Arg0 = II.getArgOperand(0);
567   Value *Arg1 = II.getArgOperand(1);
568   Type *ResTy = II.getType();
569 
570   // Fast all undef handling.
571   if (isa<UndefValue>(Arg0) && isa<UndefValue>(Arg1))
572     return UndefValue::get(ResTy);
573 
574   Type *ArgTy = Arg0->getType();
575   unsigned NumLanes = ResTy->getPrimitiveSizeInBits() / 128;
576   unsigned NumDstElts = ResTy->getVectorNumElements();
577   unsigned NumSrcElts = ArgTy->getVectorNumElements();
578   assert(NumDstElts == (2 * NumSrcElts) && "Unexpected packing types");
579 
580   unsigned NumDstEltsPerLane = NumDstElts / NumLanes;
581   unsigned NumSrcEltsPerLane = NumSrcElts / NumLanes;
582   unsigned DstScalarSizeInBits = ResTy->getScalarSizeInBits();
583   assert(ArgTy->getScalarSizeInBits() == (2 * DstScalarSizeInBits) &&
584          "Unexpected packing types");
585 
586   // Constant folding.
587   auto *Cst0 = dyn_cast<Constant>(Arg0);
588   auto *Cst1 = dyn_cast<Constant>(Arg1);
589   if (!Cst0 || !Cst1)
590     return nullptr;
591 
592   SmallVector<Constant *, 32> Vals;
593   for (unsigned Lane = 0; Lane != NumLanes; ++Lane) {
594     for (unsigned Elt = 0; Elt != NumDstEltsPerLane; ++Elt) {
595       unsigned SrcIdx = Lane * NumSrcEltsPerLane + Elt % NumSrcEltsPerLane;
596       auto *Cst = (Elt >= NumSrcEltsPerLane) ? Cst1 : Cst0;
597       auto *COp = Cst->getAggregateElement(SrcIdx);
598       if (COp && isa<UndefValue>(COp)) {
599         Vals.push_back(UndefValue::get(ResTy->getScalarType()));
600         continue;
601       }
602 
603       auto *CInt = dyn_cast_or_null<ConstantInt>(COp);
604       if (!CInt)
605         return nullptr;
606 
607       APInt Val = CInt->getValue();
608       assert(Val.getBitWidth() == ArgTy->getScalarSizeInBits() &&
609              "Unexpected constant bitwidth");
610 
611       if (IsSigned) {
612         // PACKSS: Truncate signed value with signed saturation.
613         // Source values less than dst minint are saturated to minint.
614         // Source values greater than dst maxint are saturated to maxint.
615         if (Val.isSignedIntN(DstScalarSizeInBits))
616           Val = Val.trunc(DstScalarSizeInBits);
617         else if (Val.isNegative())
618           Val = APInt::getSignedMinValue(DstScalarSizeInBits);
619         else
620           Val = APInt::getSignedMaxValue(DstScalarSizeInBits);
621       } else {
622         // PACKUS: Truncate signed value with unsigned saturation.
623         // Source values less than zero are saturated to zero.
624         // Source values greater than dst maxuint are saturated to maxuint.
625         if (Val.isIntN(DstScalarSizeInBits))
626           Val = Val.trunc(DstScalarSizeInBits);
627         else if (Val.isNegative())
628           Val = APInt::getNullValue(DstScalarSizeInBits);
629         else
630           Val = APInt::getAllOnesValue(DstScalarSizeInBits);
631       }
632 
633       Vals.push_back(ConstantInt::get(ResTy->getScalarType(), Val));
634     }
635   }
636 
637   return ConstantVector::get(Vals);
638 }
639 
640 // Replace X86-specific intrinsics with generic floor-ceil where applicable.
641 static Value *simplifyX86round(IntrinsicInst &II,
642                                InstCombiner::BuilderTy &Builder) {
643   ConstantInt *Arg = nullptr;
644   Intrinsic::ID IntrinsicID = II.getIntrinsicID();
645 
646   if (IntrinsicID == Intrinsic::x86_sse41_round_ss ||
647       IntrinsicID == Intrinsic::x86_sse41_round_sd)
648     Arg = dyn_cast<ConstantInt>(II.getArgOperand(2));
649   else if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ss ||
650            IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_sd)
651     Arg = dyn_cast<ConstantInt>(II.getArgOperand(4));
652   else
653     Arg = dyn_cast<ConstantInt>(II.getArgOperand(1));
654   if (!Arg)
655     return nullptr;
656   unsigned RoundControl = Arg->getZExtValue();
657 
658   Arg = nullptr;
659   unsigned SAE = 0;
660   if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ps_512 ||
661       IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_pd_512)
662     Arg = dyn_cast<ConstantInt>(II.getArgOperand(4));
663   else if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ss ||
664            IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_sd)
665     Arg = dyn_cast<ConstantInt>(II.getArgOperand(5));
666   else
667     SAE = 4;
668   if (!SAE) {
669     if (!Arg)
670       return nullptr;
671     SAE = Arg->getZExtValue();
672   }
673 
674   if (SAE != 4 || (RoundControl != 2 /*ceil*/ && RoundControl != 1 /*floor*/))
675     return nullptr;
676 
677   Value *Src, *Dst, *Mask;
678   bool IsScalar = false;
679   if (IntrinsicID == Intrinsic::x86_sse41_round_ss ||
680       IntrinsicID == Intrinsic::x86_sse41_round_sd ||
681       IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ss ||
682       IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_sd) {
683     IsScalar = true;
684     if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ss ||
685         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_sd) {
686       Mask = II.getArgOperand(3);
687       Value *Zero = Constant::getNullValue(Mask->getType());
688       Mask = Builder.CreateAnd(Mask, 1);
689       Mask = Builder.CreateICmp(ICmpInst::ICMP_NE, Mask, Zero);
690       Dst = II.getArgOperand(2);
691     } else
692       Dst = II.getArgOperand(0);
693     Src = Builder.CreateExtractElement(II.getArgOperand(1), (uint64_t)0);
694   } else {
695     Src = II.getArgOperand(0);
696     if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ps_128 ||
697         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ps_256 ||
698         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ps_512 ||
699         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_pd_128 ||
700         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_pd_256 ||
701         IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_pd_512) {
702       Dst = II.getArgOperand(2);
703       Mask = II.getArgOperand(3);
704     } else {
705       Dst = Src;
706       Mask = ConstantInt::getAllOnesValue(
707           Builder.getIntNTy(Src->getType()->getVectorNumElements()));
708     }
709   }
710 
711   Intrinsic::ID ID = (RoundControl == 2) ? Intrinsic::ceil : Intrinsic::floor;
712   Value *Res = Builder.CreateUnaryIntrinsic(ID, Src, &II);
713   if (!IsScalar) {
714     if (auto *C = dyn_cast<Constant>(Mask))
715       if (C->isAllOnesValue())
716         return Res;
717     auto *MaskTy = VectorType::get(
718         Builder.getInt1Ty(), cast<IntegerType>(Mask->getType())->getBitWidth());
719     Mask = Builder.CreateBitCast(Mask, MaskTy);
720     unsigned Width = Src->getType()->getVectorNumElements();
721     if (MaskTy->getVectorNumElements() > Width) {
722       uint32_t Indices[4];
723       for (unsigned i = 0; i != Width; ++i)
724         Indices[i] = i;
725       Mask = Builder.CreateShuffleVector(Mask, Mask,
726                                          makeArrayRef(Indices, Width));
727     }
728     return Builder.CreateSelect(Mask, Res, Dst);
729   }
730   if (IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_ss ||
731       IntrinsicID == Intrinsic::x86_avx512_mask_rndscale_sd) {
732     Dst = Builder.CreateExtractElement(Dst, (uint64_t)0);
733     Res = Builder.CreateSelect(Mask, Res, Dst);
734     Dst = II.getArgOperand(0);
735   }
736   return Builder.CreateInsertElement(Dst, Res, (uint64_t)0);
737 }
738 
739 static Value *simplifyX86movmsk(const IntrinsicInst &II) {
740   Value *Arg = II.getArgOperand(0);
741   Type *ResTy = II.getType();
742   Type *ArgTy = Arg->getType();
743 
744   // movmsk(undef) -> zero as we must ensure the upper bits are zero.
745   if (isa<UndefValue>(Arg))
746     return Constant::getNullValue(ResTy);
747 
748   // We can't easily peek through x86_mmx types.
749   if (!ArgTy->isVectorTy())
750     return nullptr;
751 
752   auto *C = dyn_cast<Constant>(Arg);
753   if (!C)
754     return nullptr;
755 
756   // Extract signbits of the vector input and pack into integer result.
757   APInt Result(ResTy->getPrimitiveSizeInBits(), 0);
758   for (unsigned I = 0, E = ArgTy->getVectorNumElements(); I != E; ++I) {
759     auto *COp = C->getAggregateElement(I);
760     if (!COp)
761       return nullptr;
762     if (isa<UndefValue>(COp))
763       continue;
764 
765     auto *CInt = dyn_cast<ConstantInt>(COp);
766     auto *CFp = dyn_cast<ConstantFP>(COp);
767     if (!CInt && !CFp)
768       return nullptr;
769 
770     if ((CInt && CInt->isNegative()) || (CFp && CFp->isNegative()))
771       Result.setBit(I);
772   }
773 
774   return Constant::getIntegerValue(ResTy, Result);
775 }
776 
777 static Value *simplifyX86insertps(const IntrinsicInst &II,
778                                   InstCombiner::BuilderTy &Builder) {
779   auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2));
780   if (!CInt)
781     return nullptr;
782 
783   VectorType *VecTy = cast<VectorType>(II.getType());
784   assert(VecTy->getNumElements() == 4 && "insertps with wrong vector type");
785 
786   // The immediate permute control byte looks like this:
787   //    [3:0] - zero mask for each 32-bit lane
788   //    [5:4] - select one 32-bit destination lane
789   //    [7:6] - select one 32-bit source lane
790 
791   uint8_t Imm = CInt->getZExtValue();
792   uint8_t ZMask = Imm & 0xf;
793   uint8_t DestLane = (Imm >> 4) & 0x3;
794   uint8_t SourceLane = (Imm >> 6) & 0x3;
795 
796   ConstantAggregateZero *ZeroVector = ConstantAggregateZero::get(VecTy);
797 
798   // If all zero mask bits are set, this was just a weird way to
799   // generate a zero vector.
800   if (ZMask == 0xf)
801     return ZeroVector;
802 
803   // Initialize by passing all of the first source bits through.
804   uint32_t ShuffleMask[4] = { 0, 1, 2, 3 };
805 
806   // We may replace the second operand with the zero vector.
807   Value *V1 = II.getArgOperand(1);
808 
809   if (ZMask) {
810     // If the zero mask is being used with a single input or the zero mask
811     // overrides the destination lane, this is a shuffle with the zero vector.
812     if ((II.getArgOperand(0) == II.getArgOperand(1)) ||
813         (ZMask & (1 << DestLane))) {
814       V1 = ZeroVector;
815       // We may still move 32-bits of the first source vector from one lane
816       // to another.
817       ShuffleMask[DestLane] = SourceLane;
818       // The zero mask may override the previous insert operation.
819       for (unsigned i = 0; i < 4; ++i)
820         if ((ZMask >> i) & 0x1)
821           ShuffleMask[i] = i + 4;
822     } else {
823       // TODO: Model this case as 2 shuffles or a 'logical and' plus shuffle?
824       return nullptr;
825     }
826   } else {
827     // Replace the selected destination lane with the selected source lane.
828     ShuffleMask[DestLane] = SourceLane + 4;
829   }
830 
831   return Builder.CreateShuffleVector(II.getArgOperand(0), V1, ShuffleMask);
832 }
833 
834 /// Attempt to simplify SSE4A EXTRQ/EXTRQI instructions using constant folding
835 /// or conversion to a shuffle vector.
836 static Value *simplifyX86extrq(IntrinsicInst &II, Value *Op0,
837                                ConstantInt *CILength, ConstantInt *CIIndex,
838                                InstCombiner::BuilderTy &Builder) {
839   auto LowConstantHighUndef = [&](uint64_t Val) {
840     Type *IntTy64 = Type::getInt64Ty(II.getContext());
841     Constant *Args[] = {ConstantInt::get(IntTy64, Val),
842                         UndefValue::get(IntTy64)};
843     return ConstantVector::get(Args);
844   };
845 
846   // See if we're dealing with constant values.
847   Constant *C0 = dyn_cast<Constant>(Op0);
848   ConstantInt *CI0 =
849       C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0))
850          : nullptr;
851 
852   // Attempt to constant fold.
853   if (CILength && CIIndex) {
854     // From AMD documentation: "The bit index and field length are each six
855     // bits in length other bits of the field are ignored."
856     APInt APIndex = CIIndex->getValue().zextOrTrunc(6);
857     APInt APLength = CILength->getValue().zextOrTrunc(6);
858 
859     unsigned Index = APIndex.getZExtValue();
860 
861     // From AMD documentation: "a value of zero in the field length is
862     // defined as length of 64".
863     unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue();
864 
865     // From AMD documentation: "If the sum of the bit index + length field
866     // is greater than 64, the results are undefined".
867     unsigned End = Index + Length;
868 
869     // Note that both field index and field length are 8-bit quantities.
870     // Since variables 'Index' and 'Length' are unsigned values
871     // obtained from zero-extending field index and field length
872     // respectively, their sum should never wrap around.
873     if (End > 64)
874       return UndefValue::get(II.getType());
875 
876     // If we are inserting whole bytes, we can convert this to a shuffle.
877     // Lowering can recognize EXTRQI shuffle masks.
878     if ((Length % 8) == 0 && (Index % 8) == 0) {
879       // Convert bit indices to byte indices.
880       Length /= 8;
881       Index /= 8;
882 
883       Type *IntTy8 = Type::getInt8Ty(II.getContext());
884       Type *IntTy32 = Type::getInt32Ty(II.getContext());
885       VectorType *ShufTy = VectorType::get(IntTy8, 16);
886 
887       SmallVector<Constant *, 16> ShuffleMask;
888       for (int i = 0; i != (int)Length; ++i)
889         ShuffleMask.push_back(
890             Constant::getIntegerValue(IntTy32, APInt(32, i + Index)));
891       for (int i = Length; i != 8; ++i)
892         ShuffleMask.push_back(
893             Constant::getIntegerValue(IntTy32, APInt(32, i + 16)));
894       for (int i = 8; i != 16; ++i)
895         ShuffleMask.push_back(UndefValue::get(IntTy32));
896 
897       Value *SV = Builder.CreateShuffleVector(
898           Builder.CreateBitCast(Op0, ShufTy),
899           ConstantAggregateZero::get(ShufTy), ConstantVector::get(ShuffleMask));
900       return Builder.CreateBitCast(SV, II.getType());
901     }
902 
903     // Constant Fold - shift Index'th bit to lowest position and mask off
904     // Length bits.
905     if (CI0) {
906       APInt Elt = CI0->getValue();
907       Elt.lshrInPlace(Index);
908       Elt = Elt.zextOrTrunc(Length);
909       return LowConstantHighUndef(Elt.getZExtValue());
910     }
911 
912     // If we were an EXTRQ call, we'll save registers if we convert to EXTRQI.
913     if (II.getIntrinsicID() == Intrinsic::x86_sse4a_extrq) {
914       Value *Args[] = {Op0, CILength, CIIndex};
915       Module *M = II.getModule();
916       Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_extrqi);
917       return Builder.CreateCall(F, Args);
918     }
919   }
920 
921   // Constant Fold - extraction from zero is always {zero, undef}.
922   if (CI0 && CI0->isZero())
923     return LowConstantHighUndef(0);
924 
925   return nullptr;
926 }
927 
928 /// Attempt to simplify SSE4A INSERTQ/INSERTQI instructions using constant
929 /// folding or conversion to a shuffle vector.
930 static Value *simplifyX86insertq(IntrinsicInst &II, Value *Op0, Value *Op1,
931                                  APInt APLength, APInt APIndex,
932                                  InstCombiner::BuilderTy &Builder) {
933   // From AMD documentation: "The bit index and field length are each six bits
934   // in length other bits of the field are ignored."
935   APIndex = APIndex.zextOrTrunc(6);
936   APLength = APLength.zextOrTrunc(6);
937 
938   // Attempt to constant fold.
939   unsigned Index = APIndex.getZExtValue();
940 
941   // From AMD documentation: "a value of zero in the field length is
942   // defined as length of 64".
943   unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue();
944 
945   // From AMD documentation: "If the sum of the bit index + length field
946   // is greater than 64, the results are undefined".
947   unsigned End = Index + Length;
948 
949   // Note that both field index and field length are 8-bit quantities.
950   // Since variables 'Index' and 'Length' are unsigned values
951   // obtained from zero-extending field index and field length
952   // respectively, their sum should never wrap around.
953   if (End > 64)
954     return UndefValue::get(II.getType());
955 
956   // If we are inserting whole bytes, we can convert this to a shuffle.
957   // Lowering can recognize INSERTQI shuffle masks.
958   if ((Length % 8) == 0 && (Index % 8) == 0) {
959     // Convert bit indices to byte indices.
960     Length /= 8;
961     Index /= 8;
962 
963     Type *IntTy8 = Type::getInt8Ty(II.getContext());
964     Type *IntTy32 = Type::getInt32Ty(II.getContext());
965     VectorType *ShufTy = VectorType::get(IntTy8, 16);
966 
967     SmallVector<Constant *, 16> ShuffleMask;
968     for (int i = 0; i != (int)Index; ++i)
969       ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i)));
970     for (int i = 0; i != (int)Length; ++i)
971       ShuffleMask.push_back(
972           Constant::getIntegerValue(IntTy32, APInt(32, i + 16)));
973     for (int i = Index + Length; i != 8; ++i)
974       ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i)));
975     for (int i = 8; i != 16; ++i)
976       ShuffleMask.push_back(UndefValue::get(IntTy32));
977 
978     Value *SV = Builder.CreateShuffleVector(Builder.CreateBitCast(Op0, ShufTy),
979                                             Builder.CreateBitCast(Op1, ShufTy),
980                                             ConstantVector::get(ShuffleMask));
981     return Builder.CreateBitCast(SV, II.getType());
982   }
983 
984   // See if we're dealing with constant values.
985   Constant *C0 = dyn_cast<Constant>(Op0);
986   Constant *C1 = dyn_cast<Constant>(Op1);
987   ConstantInt *CI00 =
988       C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0))
989          : nullptr;
990   ConstantInt *CI10 =
991       C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0))
992          : nullptr;
993 
994   // Constant Fold - insert bottom Length bits starting at the Index'th bit.
995   if (CI00 && CI10) {
996     APInt V00 = CI00->getValue();
997     APInt V10 = CI10->getValue();
998     APInt Mask = APInt::getLowBitsSet(64, Length).shl(Index);
999     V00 = V00 & ~Mask;
1000     V10 = V10.zextOrTrunc(Length).zextOrTrunc(64).shl(Index);
1001     APInt Val = V00 | V10;
1002     Type *IntTy64 = Type::getInt64Ty(II.getContext());
1003     Constant *Args[] = {ConstantInt::get(IntTy64, Val.getZExtValue()),
1004                         UndefValue::get(IntTy64)};
1005     return ConstantVector::get(Args);
1006   }
1007 
1008   // If we were an INSERTQ call, we'll save demanded elements if we convert to
1009   // INSERTQI.
1010   if (II.getIntrinsicID() == Intrinsic::x86_sse4a_insertq) {
1011     Type *IntTy8 = Type::getInt8Ty(II.getContext());
1012     Constant *CILength = ConstantInt::get(IntTy8, Length, false);
1013     Constant *CIIndex = ConstantInt::get(IntTy8, Index, false);
1014 
1015     Value *Args[] = {Op0, Op1, CILength, CIIndex};
1016     Module *M = II.getModule();
1017     Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_insertqi);
1018     return Builder.CreateCall(F, Args);
1019   }
1020 
1021   return nullptr;
1022 }
1023 
1024 /// Attempt to convert pshufb* to shufflevector if the mask is constant.
1025 static Value *simplifyX86pshufb(const IntrinsicInst &II,
1026                                 InstCombiner::BuilderTy &Builder) {
1027   Constant *V = dyn_cast<Constant>(II.getArgOperand(1));
1028   if (!V)
1029     return nullptr;
1030 
1031   auto *VecTy = cast<VectorType>(II.getType());
1032   auto *MaskEltTy = Type::getInt32Ty(II.getContext());
1033   unsigned NumElts = VecTy->getNumElements();
1034   assert((NumElts == 16 || NumElts == 32 || NumElts == 64) &&
1035          "Unexpected number of elements in shuffle mask!");
1036 
1037   // Construct a shuffle mask from constant integers or UNDEFs.
1038   Constant *Indexes[64] = {nullptr};
1039 
1040   // Each byte in the shuffle control mask forms an index to permute the
1041   // corresponding byte in the destination operand.
1042   for (unsigned I = 0; I < NumElts; ++I) {
1043     Constant *COp = V->getAggregateElement(I);
1044     if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
1045       return nullptr;
1046 
1047     if (isa<UndefValue>(COp)) {
1048       Indexes[I] = UndefValue::get(MaskEltTy);
1049       continue;
1050     }
1051 
1052     int8_t Index = cast<ConstantInt>(COp)->getValue().getZExtValue();
1053 
1054     // If the most significant bit (bit[7]) of each byte of the shuffle
1055     // control mask is set, then zero is written in the result byte.
1056     // The zero vector is in the right-hand side of the resulting
1057     // shufflevector.
1058 
1059     // The value of each index for the high 128-bit lane is the least
1060     // significant 4 bits of the respective shuffle control byte.
1061     Index = ((Index < 0) ? NumElts : Index & 0x0F) + (I & 0xF0);
1062     Indexes[I] = ConstantInt::get(MaskEltTy, Index);
1063   }
1064 
1065   auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts));
1066   auto V1 = II.getArgOperand(0);
1067   auto V2 = Constant::getNullValue(VecTy);
1068   return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1069 }
1070 
1071 /// Attempt to convert vpermilvar* to shufflevector if the mask is constant.
1072 static Value *simplifyX86vpermilvar(const IntrinsicInst &II,
1073                                     InstCombiner::BuilderTy &Builder) {
1074   Constant *V = dyn_cast<Constant>(II.getArgOperand(1));
1075   if (!V)
1076     return nullptr;
1077 
1078   auto *VecTy = cast<VectorType>(II.getType());
1079   auto *MaskEltTy = Type::getInt32Ty(II.getContext());
1080   unsigned NumElts = VecTy->getVectorNumElements();
1081   bool IsPD = VecTy->getScalarType()->isDoubleTy();
1082   unsigned NumLaneElts = IsPD ? 2 : 4;
1083   assert(NumElts == 16 || NumElts == 8 || NumElts == 4 || NumElts == 2);
1084 
1085   // Construct a shuffle mask from constant integers or UNDEFs.
1086   Constant *Indexes[16] = {nullptr};
1087 
1088   // The intrinsics only read one or two bits, clear the rest.
1089   for (unsigned I = 0; I < NumElts; ++I) {
1090     Constant *COp = V->getAggregateElement(I);
1091     if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
1092       return nullptr;
1093 
1094     if (isa<UndefValue>(COp)) {
1095       Indexes[I] = UndefValue::get(MaskEltTy);
1096       continue;
1097     }
1098 
1099     APInt Index = cast<ConstantInt>(COp)->getValue();
1100     Index = Index.zextOrTrunc(32).getLoBits(2);
1101 
1102     // The PD variants uses bit 1 to select per-lane element index, so
1103     // shift down to convert to generic shuffle mask index.
1104     if (IsPD)
1105       Index.lshrInPlace(1);
1106 
1107     // The _256 variants are a bit trickier since the mask bits always index
1108     // into the corresponding 128 half. In order to convert to a generic
1109     // shuffle, we have to make that explicit.
1110     Index += APInt(32, (I / NumLaneElts) * NumLaneElts);
1111 
1112     Indexes[I] = ConstantInt::get(MaskEltTy, Index);
1113   }
1114 
1115   auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts));
1116   auto V1 = II.getArgOperand(0);
1117   auto V2 = UndefValue::get(V1->getType());
1118   return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1119 }
1120 
1121 /// Attempt to convert vpermd/vpermps to shufflevector if the mask is constant.
1122 static Value *simplifyX86vpermv(const IntrinsicInst &II,
1123                                 InstCombiner::BuilderTy &Builder) {
1124   auto *V = dyn_cast<Constant>(II.getArgOperand(1));
1125   if (!V)
1126     return nullptr;
1127 
1128   auto *VecTy = cast<VectorType>(II.getType());
1129   auto *MaskEltTy = Type::getInt32Ty(II.getContext());
1130   unsigned Size = VecTy->getNumElements();
1131   assert((Size == 4 || Size == 8 || Size == 16 || Size == 32 || Size == 64) &&
1132          "Unexpected shuffle mask size");
1133 
1134   // Construct a shuffle mask from constant integers or UNDEFs.
1135   Constant *Indexes[64] = {nullptr};
1136 
1137   for (unsigned I = 0; I < Size; ++I) {
1138     Constant *COp = V->getAggregateElement(I);
1139     if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
1140       return nullptr;
1141 
1142     if (isa<UndefValue>(COp)) {
1143       Indexes[I] = UndefValue::get(MaskEltTy);
1144       continue;
1145     }
1146 
1147     uint32_t Index = cast<ConstantInt>(COp)->getZExtValue();
1148     Index &= Size - 1;
1149     Indexes[I] = ConstantInt::get(MaskEltTy, Index);
1150   }
1151 
1152   auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, Size));
1153   auto V1 = II.getArgOperand(0);
1154   auto V2 = UndefValue::get(VecTy);
1155   return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1156 }
1157 
1158 /// Decode XOP integer vector comparison intrinsics.
1159 static Value *simplifyX86vpcom(const IntrinsicInst &II,
1160                                InstCombiner::BuilderTy &Builder,
1161                                bool IsSigned) {
1162   if (auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2))) {
1163     uint64_t Imm = CInt->getZExtValue() & 0x7;
1164     VectorType *VecTy = cast<VectorType>(II.getType());
1165     CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1166 
1167     switch (Imm) {
1168     case 0x0:
1169       Pred = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1170       break;
1171     case 0x1:
1172       Pred = IsSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
1173       break;
1174     case 0x2:
1175       Pred = IsSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1176       break;
1177     case 0x3:
1178       Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
1179       break;
1180     case 0x4:
1181       Pred = ICmpInst::ICMP_EQ; break;
1182     case 0x5:
1183       Pred = ICmpInst::ICMP_NE; break;
1184     case 0x6:
1185       return ConstantInt::getSigned(VecTy, 0); // FALSE
1186     case 0x7:
1187       return ConstantInt::getSigned(VecTy, -1); // TRUE
1188     }
1189 
1190     if (Value *Cmp = Builder.CreateICmp(Pred, II.getArgOperand(0),
1191                                         II.getArgOperand(1)))
1192       return Builder.CreateSExtOrTrunc(Cmp, VecTy);
1193   }
1194   return nullptr;
1195 }
1196 
1197 static bool maskIsAllOneOrUndef(Value *Mask) {
1198   auto *ConstMask = dyn_cast<Constant>(Mask);
1199   if (!ConstMask)
1200     return false;
1201   if (ConstMask->isAllOnesValue() || isa<UndefValue>(ConstMask))
1202     return true;
1203   for (unsigned I = 0, E = ConstMask->getType()->getVectorNumElements(); I != E;
1204        ++I) {
1205     if (auto *MaskElt = ConstMask->getAggregateElement(I))
1206       if (MaskElt->isAllOnesValue() || isa<UndefValue>(MaskElt))
1207         continue;
1208     return false;
1209   }
1210   return true;
1211 }
1212 
1213 static Value *simplifyMaskedLoad(const IntrinsicInst &II,
1214                                  InstCombiner::BuilderTy &Builder) {
1215   // If the mask is all ones or undefs, this is a plain vector load of the 1st
1216   // argument.
1217   if (maskIsAllOneOrUndef(II.getArgOperand(2))) {
1218     Value *LoadPtr = II.getArgOperand(0);
1219     unsigned Alignment = cast<ConstantInt>(II.getArgOperand(1))->getZExtValue();
1220     return Builder.CreateAlignedLoad(LoadPtr, Alignment, "unmaskedload");
1221   }
1222 
1223   return nullptr;
1224 }
1225 
1226 static Instruction *simplifyMaskedStore(IntrinsicInst &II, InstCombiner &IC) {
1227   auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
1228   if (!ConstMask)
1229     return nullptr;
1230 
1231   // If the mask is all zeros, this instruction does nothing.
1232   if (ConstMask->isNullValue())
1233     return IC.eraseInstFromFunction(II);
1234 
1235   // If the mask is all ones, this is a plain vector store of the 1st argument.
1236   if (ConstMask->isAllOnesValue()) {
1237     Value *StorePtr = II.getArgOperand(1);
1238     unsigned Alignment = cast<ConstantInt>(II.getArgOperand(2))->getZExtValue();
1239     return new StoreInst(II.getArgOperand(0), StorePtr, false, Alignment);
1240   }
1241 
1242   return nullptr;
1243 }
1244 
1245 static Instruction *simplifyMaskedGather(IntrinsicInst &II, InstCombiner &IC) {
1246   // If the mask is all zeros, return the "passthru" argument of the gather.
1247   auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(2));
1248   if (ConstMask && ConstMask->isNullValue())
1249     return IC.replaceInstUsesWith(II, II.getArgOperand(3));
1250 
1251   return nullptr;
1252 }
1253 
1254 /// This function transforms launder.invariant.group and strip.invariant.group
1255 /// like:
1256 /// launder(launder(%x)) -> launder(%x)       (the result is not the argument)
1257 /// launder(strip(%x)) -> launder(%x)
1258 /// strip(strip(%x)) -> strip(%x)             (the result is not the argument)
1259 /// strip(launder(%x)) -> strip(%x)
1260 /// This is legal because it preserves the most recent information about
1261 /// the presence or absence of invariant.group.
1262 static Instruction *simplifyInvariantGroupIntrinsic(IntrinsicInst &II,
1263                                                     InstCombiner &IC) {
1264   auto *Arg = II.getArgOperand(0);
1265   auto *StrippedArg = Arg->stripPointerCasts();
1266   auto *StrippedInvariantGroupsArg = Arg->stripPointerCastsAndInvariantGroups();
1267   if (StrippedArg == StrippedInvariantGroupsArg)
1268     return nullptr; // No launders/strips to remove.
1269 
1270   Value *Result = nullptr;
1271 
1272   if (II.getIntrinsicID() == Intrinsic::launder_invariant_group)
1273     Result = IC.Builder.CreateLaunderInvariantGroup(StrippedInvariantGroupsArg);
1274   else if (II.getIntrinsicID() == Intrinsic::strip_invariant_group)
1275     Result = IC.Builder.CreateStripInvariantGroup(StrippedInvariantGroupsArg);
1276   else
1277     llvm_unreachable(
1278         "simplifyInvariantGroupIntrinsic only handles launder and strip");
1279   if (Result->getType()->getPointerAddressSpace() !=
1280       II.getType()->getPointerAddressSpace())
1281     Result = IC.Builder.CreateAddrSpaceCast(Result, II.getType());
1282   if (Result->getType() != II.getType())
1283     Result = IC.Builder.CreateBitCast(Result, II.getType());
1284 
1285   return cast<Instruction>(Result);
1286 }
1287 
1288 static Instruction *simplifyMaskedScatter(IntrinsicInst &II, InstCombiner &IC) {
1289   // If the mask is all zeros, a scatter does nothing.
1290   auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
1291   if (ConstMask && ConstMask->isNullValue())
1292     return IC.eraseInstFromFunction(II);
1293 
1294   return nullptr;
1295 }
1296 
1297 static Instruction *foldCttzCtlz(IntrinsicInst &II, InstCombiner &IC) {
1298   assert((II.getIntrinsicID() == Intrinsic::cttz ||
1299           II.getIntrinsicID() == Intrinsic::ctlz) &&
1300          "Expected cttz or ctlz intrinsic");
1301   Value *Op0 = II.getArgOperand(0);
1302 
1303   KnownBits Known = IC.computeKnownBits(Op0, 0, &II);
1304 
1305   // Create a mask for bits above (ctlz) or below (cttz) the first known one.
1306   bool IsTZ = II.getIntrinsicID() == Intrinsic::cttz;
1307   unsigned PossibleZeros = IsTZ ? Known.countMaxTrailingZeros()
1308                                 : Known.countMaxLeadingZeros();
1309   unsigned DefiniteZeros = IsTZ ? Known.countMinTrailingZeros()
1310                                 : Known.countMinLeadingZeros();
1311 
1312   // If all bits above (ctlz) or below (cttz) the first known one are known
1313   // zero, this value is constant.
1314   // FIXME: This should be in InstSimplify because we're replacing an
1315   // instruction with a constant.
1316   if (PossibleZeros == DefiniteZeros) {
1317     auto *C = ConstantInt::get(Op0->getType(), DefiniteZeros);
1318     return IC.replaceInstUsesWith(II, C);
1319   }
1320 
1321   // If the input to cttz/ctlz is known to be non-zero,
1322   // then change the 'ZeroIsUndef' parameter to 'true'
1323   // because we know the zero behavior can't affect the result.
1324   if (!Known.One.isNullValue() ||
1325       isKnownNonZero(Op0, IC.getDataLayout(), 0, &IC.getAssumptionCache(), &II,
1326                      &IC.getDominatorTree())) {
1327     if (!match(II.getArgOperand(1), m_One())) {
1328       II.setOperand(1, IC.Builder.getTrue());
1329       return &II;
1330     }
1331   }
1332 
1333   // Add range metadata since known bits can't completely reflect what we know.
1334   // TODO: Handle splat vectors.
1335   auto *IT = dyn_cast<IntegerType>(Op0->getType());
1336   if (IT && IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
1337     Metadata *LowAndHigh[] = {
1338         ConstantAsMetadata::get(ConstantInt::get(IT, DefiniteZeros)),
1339         ConstantAsMetadata::get(ConstantInt::get(IT, PossibleZeros + 1))};
1340     II.setMetadata(LLVMContext::MD_range,
1341                    MDNode::get(II.getContext(), LowAndHigh));
1342     return &II;
1343   }
1344 
1345   return nullptr;
1346 }
1347 
1348 static Instruction *foldCtpop(IntrinsicInst &II, InstCombiner &IC) {
1349   assert(II.getIntrinsicID() == Intrinsic::ctpop &&
1350          "Expected ctpop intrinsic");
1351   Value *Op0 = II.getArgOperand(0);
1352   // FIXME: Try to simplify vectors of integers.
1353   auto *IT = dyn_cast<IntegerType>(Op0->getType());
1354   if (!IT)
1355     return nullptr;
1356 
1357   unsigned BitWidth = IT->getBitWidth();
1358   KnownBits Known(BitWidth);
1359   IC.computeKnownBits(Op0, Known, 0, &II);
1360 
1361   unsigned MinCount = Known.countMinPopulation();
1362   unsigned MaxCount = Known.countMaxPopulation();
1363 
1364   // Add range metadata since known bits can't completely reflect what we know.
1365   if (IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
1366     Metadata *LowAndHigh[] = {
1367         ConstantAsMetadata::get(ConstantInt::get(IT, MinCount)),
1368         ConstantAsMetadata::get(ConstantInt::get(IT, MaxCount + 1))};
1369     II.setMetadata(LLVMContext::MD_range,
1370                    MDNode::get(II.getContext(), LowAndHigh));
1371     return &II;
1372   }
1373 
1374   return nullptr;
1375 }
1376 
1377 // TODO: If the x86 backend knew how to convert a bool vector mask back to an
1378 // XMM register mask efficiently, we could transform all x86 masked intrinsics
1379 // to LLVM masked intrinsics and remove the x86 masked intrinsic defs.
1380 static Instruction *simplifyX86MaskedLoad(IntrinsicInst &II, InstCombiner &IC) {
1381   Value *Ptr = II.getOperand(0);
1382   Value *Mask = II.getOperand(1);
1383   Constant *ZeroVec = Constant::getNullValue(II.getType());
1384 
1385   // Special case a zero mask since that's not a ConstantDataVector.
1386   // This masked load instruction creates a zero vector.
1387   if (isa<ConstantAggregateZero>(Mask))
1388     return IC.replaceInstUsesWith(II, ZeroVec);
1389 
1390   auto *ConstMask = dyn_cast<ConstantDataVector>(Mask);
1391   if (!ConstMask)
1392     return nullptr;
1393 
1394   // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic
1395   // to allow target-independent optimizations.
1396 
1397   // First, cast the x86 intrinsic scalar pointer to a vector pointer to match
1398   // the LLVM intrinsic definition for the pointer argument.
1399   unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1400   PointerType *VecPtrTy = PointerType::get(II.getType(), AddrSpace);
1401   Value *PtrCast = IC.Builder.CreateBitCast(Ptr, VecPtrTy, "castvec");
1402 
1403   // Second, convert the x86 XMM integer vector mask to a vector of bools based
1404   // on each element's most significant bit (the sign bit).
1405   Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask);
1406 
1407   // The pass-through vector for an x86 masked load is a zero vector.
1408   CallInst *NewMaskedLoad =
1409       IC.Builder.CreateMaskedLoad(PtrCast, 1, BoolMask, ZeroVec);
1410   return IC.replaceInstUsesWith(II, NewMaskedLoad);
1411 }
1412 
1413 // TODO: If the x86 backend knew how to convert a bool vector mask back to an
1414 // XMM register mask efficiently, we could transform all x86 masked intrinsics
1415 // to LLVM masked intrinsics and remove the x86 masked intrinsic defs.
1416 static bool simplifyX86MaskedStore(IntrinsicInst &II, InstCombiner &IC) {
1417   Value *Ptr = II.getOperand(0);
1418   Value *Mask = II.getOperand(1);
1419   Value *Vec = II.getOperand(2);
1420 
1421   // Special case a zero mask since that's not a ConstantDataVector:
1422   // this masked store instruction does nothing.
1423   if (isa<ConstantAggregateZero>(Mask)) {
1424     IC.eraseInstFromFunction(II);
1425     return true;
1426   }
1427 
1428   // The SSE2 version is too weird (eg, unaligned but non-temporal) to do
1429   // anything else at this level.
1430   if (II.getIntrinsicID() == Intrinsic::x86_sse2_maskmov_dqu)
1431     return false;
1432 
1433   auto *ConstMask = dyn_cast<ConstantDataVector>(Mask);
1434   if (!ConstMask)
1435     return false;
1436 
1437   // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic
1438   // to allow target-independent optimizations.
1439 
1440   // First, cast the x86 intrinsic scalar pointer to a vector pointer to match
1441   // the LLVM intrinsic definition for the pointer argument.
1442   unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1443   PointerType *VecPtrTy = PointerType::get(Vec->getType(), AddrSpace);
1444   Value *PtrCast = IC.Builder.CreateBitCast(Ptr, VecPtrTy, "castvec");
1445 
1446   // Second, convert the x86 XMM integer vector mask to a vector of bools based
1447   // on each element's most significant bit (the sign bit).
1448   Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask);
1449 
1450   IC.Builder.CreateMaskedStore(Vec, PtrCast, 1, BoolMask);
1451 
1452   // 'Replace uses' doesn't work for stores. Erase the original masked store.
1453   IC.eraseInstFromFunction(II);
1454   return true;
1455 }
1456 
1457 // Constant fold llvm.amdgcn.fmed3 intrinsics for standard inputs.
1458 //
1459 // A single NaN input is folded to minnum, so we rely on that folding for
1460 // handling NaNs.
1461 static APFloat fmed3AMDGCN(const APFloat &Src0, const APFloat &Src1,
1462                            const APFloat &Src2) {
1463   APFloat Max3 = maxnum(maxnum(Src0, Src1), Src2);
1464 
1465   APFloat::cmpResult Cmp0 = Max3.compare(Src0);
1466   assert(Cmp0 != APFloat::cmpUnordered && "nans handled separately");
1467   if (Cmp0 == APFloat::cmpEqual)
1468     return maxnum(Src1, Src2);
1469 
1470   APFloat::cmpResult Cmp1 = Max3.compare(Src1);
1471   assert(Cmp1 != APFloat::cmpUnordered && "nans handled separately");
1472   if (Cmp1 == APFloat::cmpEqual)
1473     return maxnum(Src0, Src2);
1474 
1475   return maxnum(Src0, Src1);
1476 }
1477 
1478 /// Convert a table lookup to shufflevector if the mask is constant.
1479 /// This could benefit tbl1 if the mask is { 7,6,5,4,3,2,1,0 }, in
1480 /// which case we could lower the shufflevector with rev64 instructions
1481 /// as it's actually a byte reverse.
1482 static Value *simplifyNeonTbl1(const IntrinsicInst &II,
1483                                InstCombiner::BuilderTy &Builder) {
1484   // Bail out if the mask is not a constant.
1485   auto *C = dyn_cast<Constant>(II.getArgOperand(1));
1486   if (!C)
1487     return nullptr;
1488 
1489   auto *VecTy = cast<VectorType>(II.getType());
1490   unsigned NumElts = VecTy->getNumElements();
1491 
1492   // Only perform this transformation for <8 x i8> vector types.
1493   if (!VecTy->getElementType()->isIntegerTy(8) || NumElts != 8)
1494     return nullptr;
1495 
1496   uint32_t Indexes[8];
1497 
1498   for (unsigned I = 0; I < NumElts; ++I) {
1499     Constant *COp = C->getAggregateElement(I);
1500 
1501     if (!COp || !isa<ConstantInt>(COp))
1502       return nullptr;
1503 
1504     Indexes[I] = cast<ConstantInt>(COp)->getLimitedValue();
1505 
1506     // Make sure the mask indices are in range.
1507     if (Indexes[I] >= NumElts)
1508       return nullptr;
1509   }
1510 
1511   auto *ShuffleMask = ConstantDataVector::get(II.getContext(),
1512                                               makeArrayRef(Indexes));
1513   auto *V1 = II.getArgOperand(0);
1514   auto *V2 = Constant::getNullValue(V1->getType());
1515   return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1516 }
1517 
1518 /// Convert a vector load intrinsic into a simple llvm load instruction.
1519 /// This is beneficial when the underlying object being addressed comes
1520 /// from a constant, since we get constant-folding for free.
1521 static Value *simplifyNeonVld1(const IntrinsicInst &II,
1522                                unsigned MemAlign,
1523                                InstCombiner::BuilderTy &Builder) {
1524   auto *IntrAlign = dyn_cast<ConstantInt>(II.getArgOperand(1));
1525 
1526   if (!IntrAlign)
1527     return nullptr;
1528 
1529   unsigned Alignment = IntrAlign->getLimitedValue() < MemAlign ?
1530                        MemAlign : IntrAlign->getLimitedValue();
1531 
1532   if (!isPowerOf2_32(Alignment))
1533     return nullptr;
1534 
1535   auto *BCastInst = Builder.CreateBitCast(II.getArgOperand(0),
1536                                           PointerType::get(II.getType(), 0));
1537   return Builder.CreateAlignedLoad(BCastInst, Alignment);
1538 }
1539 
1540 // Returns true iff the 2 intrinsics have the same operands, limiting the
1541 // comparison to the first NumOperands.
1542 static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E,
1543                              unsigned NumOperands) {
1544   assert(I.getNumArgOperands() >= NumOperands && "Not enough operands");
1545   assert(E.getNumArgOperands() >= NumOperands && "Not enough operands");
1546   for (unsigned i = 0; i < NumOperands; i++)
1547     if (I.getArgOperand(i) != E.getArgOperand(i))
1548       return false;
1549   return true;
1550 }
1551 
1552 // Remove trivially empty start/end intrinsic ranges, i.e. a start
1553 // immediately followed by an end (ignoring debuginfo or other
1554 // start/end intrinsics in between). As this handles only the most trivial
1555 // cases, tracking the nesting level is not needed:
1556 //
1557 //   call @llvm.foo.start(i1 0) ; &I
1558 //   call @llvm.foo.start(i1 0)
1559 //   call @llvm.foo.end(i1 0) ; This one will not be skipped: it will be removed
1560 //   call @llvm.foo.end(i1 0)
1561 static bool removeTriviallyEmptyRange(IntrinsicInst &I, unsigned StartID,
1562                                       unsigned EndID, InstCombiner &IC) {
1563   assert(I.getIntrinsicID() == StartID &&
1564          "Start intrinsic does not have expected ID");
1565   BasicBlock::iterator BI(I), BE(I.getParent()->end());
1566   for (++BI; BI != BE; ++BI) {
1567     if (auto *E = dyn_cast<IntrinsicInst>(BI)) {
1568       if (isa<DbgInfoIntrinsic>(E) || E->getIntrinsicID() == StartID)
1569         continue;
1570       if (E->getIntrinsicID() == EndID &&
1571           haveSameOperands(I, *E, E->getNumArgOperands())) {
1572         IC.eraseInstFromFunction(*E);
1573         IC.eraseInstFromFunction(I);
1574         return true;
1575       }
1576     }
1577     break;
1578   }
1579 
1580   return false;
1581 }
1582 
1583 // Convert NVVM intrinsics to target-generic LLVM code where possible.
1584 static Instruction *SimplifyNVVMIntrinsic(IntrinsicInst *II, InstCombiner &IC) {
1585   // Each NVVM intrinsic we can simplify can be replaced with one of:
1586   //
1587   //  * an LLVM intrinsic,
1588   //  * an LLVM cast operation,
1589   //  * an LLVM binary operation, or
1590   //  * ad-hoc LLVM IR for the particular operation.
1591 
1592   // Some transformations are only valid when the module's
1593   // flush-denormals-to-zero (ftz) setting is true/false, whereas other
1594   // transformations are valid regardless of the module's ftz setting.
1595   enum FtzRequirementTy {
1596     FTZ_Any,       // Any ftz setting is ok.
1597     FTZ_MustBeOn,  // Transformation is valid only if ftz is on.
1598     FTZ_MustBeOff, // Transformation is valid only if ftz is off.
1599   };
1600   // Classes of NVVM intrinsics that can't be replaced one-to-one with a
1601   // target-generic intrinsic, cast op, or binary op but that we can nonetheless
1602   // simplify.
1603   enum SpecialCase {
1604     SPC_Reciprocal,
1605   };
1606 
1607   // SimplifyAction is a poor-man's variant (plus an additional flag) that
1608   // represents how to replace an NVVM intrinsic with target-generic LLVM IR.
1609   struct SimplifyAction {
1610     // Invariant: At most one of these Optionals has a value.
1611     Optional<Intrinsic::ID> IID;
1612     Optional<Instruction::CastOps> CastOp;
1613     Optional<Instruction::BinaryOps> BinaryOp;
1614     Optional<SpecialCase> Special;
1615 
1616     FtzRequirementTy FtzRequirement = FTZ_Any;
1617 
1618     SimplifyAction() = default;
1619 
1620     SimplifyAction(Intrinsic::ID IID, FtzRequirementTy FtzReq)
1621         : IID(IID), FtzRequirement(FtzReq) {}
1622 
1623     // Cast operations don't have anything to do with FTZ, so we skip that
1624     // argument.
1625     SimplifyAction(Instruction::CastOps CastOp) : CastOp(CastOp) {}
1626 
1627     SimplifyAction(Instruction::BinaryOps BinaryOp, FtzRequirementTy FtzReq)
1628         : BinaryOp(BinaryOp), FtzRequirement(FtzReq) {}
1629 
1630     SimplifyAction(SpecialCase Special, FtzRequirementTy FtzReq)
1631         : Special(Special), FtzRequirement(FtzReq) {}
1632   };
1633 
1634   // Try to generate a SimplifyAction describing how to replace our
1635   // IntrinsicInstr with target-generic LLVM IR.
1636   const SimplifyAction Action = [II]() -> SimplifyAction {
1637     switch (II->getIntrinsicID()) {
1638     // NVVM intrinsics that map directly to LLVM intrinsics.
1639     case Intrinsic::nvvm_ceil_d:
1640       return {Intrinsic::ceil, FTZ_Any};
1641     case Intrinsic::nvvm_ceil_f:
1642       return {Intrinsic::ceil, FTZ_MustBeOff};
1643     case Intrinsic::nvvm_ceil_ftz_f:
1644       return {Intrinsic::ceil, FTZ_MustBeOn};
1645     case Intrinsic::nvvm_fabs_d:
1646       return {Intrinsic::fabs, FTZ_Any};
1647     case Intrinsic::nvvm_fabs_f:
1648       return {Intrinsic::fabs, FTZ_MustBeOff};
1649     case Intrinsic::nvvm_fabs_ftz_f:
1650       return {Intrinsic::fabs, FTZ_MustBeOn};
1651     case Intrinsic::nvvm_floor_d:
1652       return {Intrinsic::floor, FTZ_Any};
1653     case Intrinsic::nvvm_floor_f:
1654       return {Intrinsic::floor, FTZ_MustBeOff};
1655     case Intrinsic::nvvm_floor_ftz_f:
1656       return {Intrinsic::floor, FTZ_MustBeOn};
1657     case Intrinsic::nvvm_fma_rn_d:
1658       return {Intrinsic::fma, FTZ_Any};
1659     case Intrinsic::nvvm_fma_rn_f:
1660       return {Intrinsic::fma, FTZ_MustBeOff};
1661     case Intrinsic::nvvm_fma_rn_ftz_f:
1662       return {Intrinsic::fma, FTZ_MustBeOn};
1663     case Intrinsic::nvvm_fmax_d:
1664       return {Intrinsic::maxnum, FTZ_Any};
1665     case Intrinsic::nvvm_fmax_f:
1666       return {Intrinsic::maxnum, FTZ_MustBeOff};
1667     case Intrinsic::nvvm_fmax_ftz_f:
1668       return {Intrinsic::maxnum, FTZ_MustBeOn};
1669     case Intrinsic::nvvm_fmin_d:
1670       return {Intrinsic::minnum, FTZ_Any};
1671     case Intrinsic::nvvm_fmin_f:
1672       return {Intrinsic::minnum, FTZ_MustBeOff};
1673     case Intrinsic::nvvm_fmin_ftz_f:
1674       return {Intrinsic::minnum, FTZ_MustBeOn};
1675     case Intrinsic::nvvm_round_d:
1676       return {Intrinsic::round, FTZ_Any};
1677     case Intrinsic::nvvm_round_f:
1678       return {Intrinsic::round, FTZ_MustBeOff};
1679     case Intrinsic::nvvm_round_ftz_f:
1680       return {Intrinsic::round, FTZ_MustBeOn};
1681     case Intrinsic::nvvm_sqrt_rn_d:
1682       return {Intrinsic::sqrt, FTZ_Any};
1683     case Intrinsic::nvvm_sqrt_f:
1684       // nvvm_sqrt_f is a special case.  For  most intrinsics, foo_ftz_f is the
1685       // ftz version, and foo_f is the non-ftz version.  But nvvm_sqrt_f adopts
1686       // the ftz-ness of the surrounding code.  sqrt_rn_f and sqrt_rn_ftz_f are
1687       // the versions with explicit ftz-ness.
1688       return {Intrinsic::sqrt, FTZ_Any};
1689     case Intrinsic::nvvm_sqrt_rn_f:
1690       return {Intrinsic::sqrt, FTZ_MustBeOff};
1691     case Intrinsic::nvvm_sqrt_rn_ftz_f:
1692       return {Intrinsic::sqrt, FTZ_MustBeOn};
1693     case Intrinsic::nvvm_trunc_d:
1694       return {Intrinsic::trunc, FTZ_Any};
1695     case Intrinsic::nvvm_trunc_f:
1696       return {Intrinsic::trunc, FTZ_MustBeOff};
1697     case Intrinsic::nvvm_trunc_ftz_f:
1698       return {Intrinsic::trunc, FTZ_MustBeOn};
1699 
1700     // NVVM intrinsics that map to LLVM cast operations.
1701     //
1702     // Note that llvm's target-generic conversion operators correspond to the rz
1703     // (round to zero) versions of the nvvm conversion intrinsics, even though
1704     // most everything else here uses the rn (round to nearest even) nvvm ops.
1705     case Intrinsic::nvvm_d2i_rz:
1706     case Intrinsic::nvvm_f2i_rz:
1707     case Intrinsic::nvvm_d2ll_rz:
1708     case Intrinsic::nvvm_f2ll_rz:
1709       return {Instruction::FPToSI};
1710     case Intrinsic::nvvm_d2ui_rz:
1711     case Intrinsic::nvvm_f2ui_rz:
1712     case Intrinsic::nvvm_d2ull_rz:
1713     case Intrinsic::nvvm_f2ull_rz:
1714       return {Instruction::FPToUI};
1715     case Intrinsic::nvvm_i2d_rz:
1716     case Intrinsic::nvvm_i2f_rz:
1717     case Intrinsic::nvvm_ll2d_rz:
1718     case Intrinsic::nvvm_ll2f_rz:
1719       return {Instruction::SIToFP};
1720     case Intrinsic::nvvm_ui2d_rz:
1721     case Intrinsic::nvvm_ui2f_rz:
1722     case Intrinsic::nvvm_ull2d_rz:
1723     case Intrinsic::nvvm_ull2f_rz:
1724       return {Instruction::UIToFP};
1725 
1726     // NVVM intrinsics that map to LLVM binary ops.
1727     case Intrinsic::nvvm_add_rn_d:
1728       return {Instruction::FAdd, FTZ_Any};
1729     case Intrinsic::nvvm_add_rn_f:
1730       return {Instruction::FAdd, FTZ_MustBeOff};
1731     case Intrinsic::nvvm_add_rn_ftz_f:
1732       return {Instruction::FAdd, FTZ_MustBeOn};
1733     case Intrinsic::nvvm_mul_rn_d:
1734       return {Instruction::FMul, FTZ_Any};
1735     case Intrinsic::nvvm_mul_rn_f:
1736       return {Instruction::FMul, FTZ_MustBeOff};
1737     case Intrinsic::nvvm_mul_rn_ftz_f:
1738       return {Instruction::FMul, FTZ_MustBeOn};
1739     case Intrinsic::nvvm_div_rn_d:
1740       return {Instruction::FDiv, FTZ_Any};
1741     case Intrinsic::nvvm_div_rn_f:
1742       return {Instruction::FDiv, FTZ_MustBeOff};
1743     case Intrinsic::nvvm_div_rn_ftz_f:
1744       return {Instruction::FDiv, FTZ_MustBeOn};
1745 
1746     // The remainder of cases are NVVM intrinsics that map to LLVM idioms, but
1747     // need special handling.
1748     //
1749     // We seem to be missing intrinsics for rcp.approx.{ftz.}f32, which is just
1750     // as well.
1751     case Intrinsic::nvvm_rcp_rn_d:
1752       return {SPC_Reciprocal, FTZ_Any};
1753     case Intrinsic::nvvm_rcp_rn_f:
1754       return {SPC_Reciprocal, FTZ_MustBeOff};
1755     case Intrinsic::nvvm_rcp_rn_ftz_f:
1756       return {SPC_Reciprocal, FTZ_MustBeOn};
1757 
1758     // We do not currently simplify intrinsics that give an approximate answer.
1759     // These include:
1760     //
1761     //   - nvvm_cos_approx_{f,ftz_f}
1762     //   - nvvm_ex2_approx_{d,f,ftz_f}
1763     //   - nvvm_lg2_approx_{d,f,ftz_f}
1764     //   - nvvm_sin_approx_{f,ftz_f}
1765     //   - nvvm_sqrt_approx_{f,ftz_f}
1766     //   - nvvm_rsqrt_approx_{d,f,ftz_f}
1767     //   - nvvm_div_approx_{ftz_d,ftz_f,f}
1768     //   - nvvm_rcp_approx_ftz_d
1769     //
1770     // Ideally we'd encode them as e.g. "fast call @llvm.cos", where "fast"
1771     // means that fastmath is enabled in the intrinsic.  Unfortunately only
1772     // binary operators (currently) have a fastmath bit in SelectionDAG, so this
1773     // information gets lost and we can't select on it.
1774     //
1775     // TODO: div and rcp are lowered to a binary op, so these we could in theory
1776     // lower them to "fast fdiv".
1777 
1778     default:
1779       return {};
1780     }
1781   }();
1782 
1783   // If Action.FtzRequirementTy is not satisfied by the module's ftz state, we
1784   // can bail out now.  (Notice that in the case that IID is not an NVVM
1785   // intrinsic, we don't have to look up any module metadata, as
1786   // FtzRequirementTy will be FTZ_Any.)
1787   if (Action.FtzRequirement != FTZ_Any) {
1788     bool FtzEnabled =
1789         II->getFunction()->getFnAttribute("nvptx-f32ftz").getValueAsString() ==
1790         "true";
1791 
1792     if (FtzEnabled != (Action.FtzRequirement == FTZ_MustBeOn))
1793       return nullptr;
1794   }
1795 
1796   // Simplify to target-generic intrinsic.
1797   if (Action.IID) {
1798     SmallVector<Value *, 4> Args(II->arg_operands());
1799     // All the target-generic intrinsics currently of interest to us have one
1800     // type argument, equal to that of the nvvm intrinsic's argument.
1801     Type *Tys[] = {II->getArgOperand(0)->getType()};
1802     return CallInst::Create(
1803         Intrinsic::getDeclaration(II->getModule(), *Action.IID, Tys), Args);
1804   }
1805 
1806   // Simplify to target-generic binary op.
1807   if (Action.BinaryOp)
1808     return BinaryOperator::Create(*Action.BinaryOp, II->getArgOperand(0),
1809                                   II->getArgOperand(1), II->getName());
1810 
1811   // Simplify to target-generic cast op.
1812   if (Action.CastOp)
1813     return CastInst::Create(*Action.CastOp, II->getArgOperand(0), II->getType(),
1814                             II->getName());
1815 
1816   // All that's left are the special cases.
1817   if (!Action.Special)
1818     return nullptr;
1819 
1820   switch (*Action.Special) {
1821   case SPC_Reciprocal:
1822     // Simplify reciprocal.
1823     return BinaryOperator::Create(
1824         Instruction::FDiv, ConstantFP::get(II->getArgOperand(0)->getType(), 1),
1825         II->getArgOperand(0), II->getName());
1826   }
1827   llvm_unreachable("All SpecialCase enumerators should be handled in switch.");
1828 }
1829 
1830 Instruction *InstCombiner::visitVAStartInst(VAStartInst &I) {
1831   removeTriviallyEmptyRange(I, Intrinsic::vastart, Intrinsic::vaend, *this);
1832   return nullptr;
1833 }
1834 
1835 Instruction *InstCombiner::visitVACopyInst(VACopyInst &I) {
1836   removeTriviallyEmptyRange(I, Intrinsic::vacopy, Intrinsic::vaend, *this);
1837   return nullptr;
1838 }
1839 
1840 /// CallInst simplification. This mostly only handles folding of intrinsic
1841 /// instructions. For normal calls, it allows visitCallSite to do the heavy
1842 /// lifting.
1843 Instruction *InstCombiner::visitCallInst(CallInst &CI) {
1844   if (Value *V = SimplifyCall(&CI, SQ.getWithInstruction(&CI)))
1845     return replaceInstUsesWith(CI, V);
1846 
1847   if (isFreeCall(&CI, &TLI))
1848     return visitFree(CI);
1849 
1850   // If the caller function is nounwind, mark the call as nounwind, even if the
1851   // callee isn't.
1852   if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) {
1853     CI.setDoesNotThrow();
1854     return &CI;
1855   }
1856 
1857   IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
1858   if (!II) return visitCallSite(&CI);
1859 
1860   // Intrinsics cannot occur in an invoke, so handle them here instead of in
1861   // visitCallSite.
1862   if (auto *MI = dyn_cast<AnyMemIntrinsic>(II)) {
1863     bool Changed = false;
1864 
1865     // memmove/cpy/set of zero bytes is a noop.
1866     if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
1867       if (NumBytes->isNullValue())
1868         return eraseInstFromFunction(CI);
1869 
1870       if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
1871         if (CI->getZExtValue() == 1) {
1872           // Replace the instruction with just byte operations.  We would
1873           // transform other cases to loads/stores, but we don't know if
1874           // alignment is sufficient.
1875         }
1876     }
1877 
1878     // No other transformations apply to volatile transfers.
1879     if (auto *M = dyn_cast<MemIntrinsic>(MI))
1880       if (M->isVolatile())
1881         return nullptr;
1882 
1883     // If we have a memmove and the source operation is a constant global,
1884     // then the source and dest pointers can't alias, so we can change this
1885     // into a call to memcpy.
1886     if (auto *MMI = dyn_cast<AnyMemMoveInst>(MI)) {
1887       if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
1888         if (GVSrc->isConstant()) {
1889           Module *M = CI.getModule();
1890           Intrinsic::ID MemCpyID =
1891               isa<AtomicMemMoveInst>(MMI)
1892                   ? Intrinsic::memcpy_element_unordered_atomic
1893                   : Intrinsic::memcpy;
1894           Type *Tys[3] = { CI.getArgOperand(0)->getType(),
1895                            CI.getArgOperand(1)->getType(),
1896                            CI.getArgOperand(2)->getType() };
1897           CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
1898           Changed = true;
1899         }
1900     }
1901 
1902     if (AnyMemTransferInst *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
1903       // memmove(x,x,size) -> noop.
1904       if (MTI->getSource() == MTI->getDest())
1905         return eraseInstFromFunction(CI);
1906     }
1907 
1908     // If we can determine a pointer alignment that is bigger than currently
1909     // set, update the alignment.
1910     if (auto *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
1911       if (Instruction *I = SimplifyAnyMemTransfer(MTI))
1912         return I;
1913     } else if (auto *MSI = dyn_cast<AnyMemSetInst>(MI)) {
1914       if (Instruction *I = SimplifyAnyMemSet(MSI))
1915         return I;
1916     }
1917 
1918     if (Changed) return II;
1919   }
1920 
1921   if (Instruction *I = SimplifyNVVMIntrinsic(II, *this))
1922     return I;
1923 
1924   auto SimplifyDemandedVectorEltsLow = [this](Value *Op, unsigned Width,
1925                                               unsigned DemandedWidth) {
1926     APInt UndefElts(Width, 0);
1927     APInt DemandedElts = APInt::getLowBitsSet(Width, DemandedWidth);
1928     return SimplifyDemandedVectorElts(Op, DemandedElts, UndefElts);
1929   };
1930 
1931   switch (II->getIntrinsicID()) {
1932   default: break;
1933   case Intrinsic::objectsize:
1934     if (ConstantInt *N =
1935             lowerObjectSizeCall(II, DL, &TLI, /*MustSucceed=*/false))
1936       return replaceInstUsesWith(CI, N);
1937     return nullptr;
1938   case Intrinsic::bswap: {
1939     Value *IIOperand = II->getArgOperand(0);
1940     Value *X = nullptr;
1941 
1942     // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
1943     if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) {
1944       unsigned C = X->getType()->getPrimitiveSizeInBits() -
1945         IIOperand->getType()->getPrimitiveSizeInBits();
1946       Value *CV = ConstantInt::get(X->getType(), C);
1947       Value *V = Builder.CreateLShr(X, CV);
1948       return new TruncInst(V, IIOperand->getType());
1949     }
1950     break;
1951   }
1952   case Intrinsic::masked_load:
1953     if (Value *SimplifiedMaskedOp = simplifyMaskedLoad(*II, Builder))
1954       return replaceInstUsesWith(CI, SimplifiedMaskedOp);
1955     break;
1956   case Intrinsic::masked_store:
1957     return simplifyMaskedStore(*II, *this);
1958   case Intrinsic::masked_gather:
1959     return simplifyMaskedGather(*II, *this);
1960   case Intrinsic::masked_scatter:
1961     return simplifyMaskedScatter(*II, *this);
1962   case Intrinsic::launder_invariant_group:
1963   case Intrinsic::strip_invariant_group:
1964     if (auto *SkippedBarrier = simplifyInvariantGroupIntrinsic(*II, *this))
1965       return replaceInstUsesWith(*II, SkippedBarrier);
1966     break;
1967   case Intrinsic::powi:
1968     if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
1969       // 0 and 1 are handled in instsimplify
1970 
1971       // powi(x, -1) -> 1/x
1972       if (Power->isMinusOne())
1973         return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
1974                                           II->getArgOperand(0));
1975       // powi(x, 2) -> x*x
1976       if (Power->equalsInt(2))
1977         return BinaryOperator::CreateFMul(II->getArgOperand(0),
1978                                           II->getArgOperand(0));
1979     }
1980     break;
1981 
1982   case Intrinsic::cttz:
1983   case Intrinsic::ctlz:
1984     if (auto *I = foldCttzCtlz(*II, *this))
1985       return I;
1986     break;
1987 
1988   case Intrinsic::ctpop:
1989     if (auto *I = foldCtpop(*II, *this))
1990       return I;
1991     break;
1992 
1993   case Intrinsic::fshl:
1994   case Intrinsic::fshr: {
1995     // The shift amount (operand 2) of a funnel shift is modulo the bitwidth,
1996     // so only the low bits of the shift amount are demanded if the bitwidth is
1997     // a power-of-2.
1998     unsigned BitWidth = II->getType()->getScalarSizeInBits();
1999     if (!isPowerOf2_32(BitWidth))
2000       break;
2001     APInt Op2Demanded = APInt::getLowBitsSet(BitWidth, Log2_32_Ceil(BitWidth));
2002     KnownBits Op2Known(BitWidth);
2003     if (SimplifyDemandedBits(II, 2, Op2Demanded, Op2Known))
2004       return &CI;
2005     break;
2006   }
2007   case Intrinsic::uadd_with_overflow:
2008   case Intrinsic::sadd_with_overflow:
2009   case Intrinsic::umul_with_overflow:
2010   case Intrinsic::smul_with_overflow:
2011     if (isa<Constant>(II->getArgOperand(0)) &&
2012         !isa<Constant>(II->getArgOperand(1))) {
2013       // Canonicalize constants into the RHS.
2014       Value *LHS = II->getArgOperand(0);
2015       II->setArgOperand(0, II->getArgOperand(1));
2016       II->setArgOperand(1, LHS);
2017       return II;
2018     }
2019     LLVM_FALLTHROUGH;
2020 
2021   case Intrinsic::usub_with_overflow:
2022   case Intrinsic::ssub_with_overflow: {
2023     OverflowCheckFlavor OCF =
2024         IntrinsicIDToOverflowCheckFlavor(II->getIntrinsicID());
2025     assert(OCF != OCF_INVALID && "unexpected!");
2026 
2027     Value *OperationResult = nullptr;
2028     Constant *OverflowResult = nullptr;
2029     if (OptimizeOverflowCheck(OCF, II->getArgOperand(0), II->getArgOperand(1),
2030                               *II, OperationResult, OverflowResult))
2031       return CreateOverflowTuple(II, OperationResult, OverflowResult);
2032 
2033     break;
2034   }
2035 
2036   case Intrinsic::minnum:
2037   case Intrinsic::maxnum:
2038   case Intrinsic::minimum:
2039   case Intrinsic::maximum: {
2040     Value *Arg0 = II->getArgOperand(0);
2041     Value *Arg1 = II->getArgOperand(1);
2042     // Canonicalize constants to the RHS.
2043     if (isa<ConstantFP>(Arg0) && !isa<ConstantFP>(Arg1)) {
2044       II->setArgOperand(0, Arg1);
2045       II->setArgOperand(1, Arg0);
2046       return II;
2047     }
2048 
2049     Intrinsic::ID IID = II->getIntrinsicID();
2050     Value *X, *Y;
2051     if (match(Arg0, m_FNeg(m_Value(X))) && match(Arg1, m_FNeg(m_Value(Y))) &&
2052         (Arg0->hasOneUse() || Arg1->hasOneUse())) {
2053       // If both operands are negated, invert the call and negate the result:
2054       // min(-X, -Y) --> -(max(X, Y))
2055       // max(-X, -Y) --> -(min(X, Y))
2056       Intrinsic::ID NewIID;
2057       switch (IID) {
2058       case Intrinsic::maxnum:
2059         NewIID = Intrinsic::minnum;
2060         break;
2061       case Intrinsic::minnum:
2062         NewIID = Intrinsic::maxnum;
2063         break;
2064       case Intrinsic::maximum:
2065         NewIID = Intrinsic::minimum;
2066         break;
2067       case Intrinsic::minimum:
2068         NewIID = Intrinsic::maximum;
2069         break;
2070       default:
2071         llvm_unreachable("unexpected intrinsic ID");
2072       }
2073       Value *NewCall = Builder.CreateBinaryIntrinsic(NewIID, X, Y, II);
2074       Instruction *FNeg = BinaryOperator::CreateFNeg(NewCall);
2075       FNeg->copyIRFlags(II);
2076       return FNeg;
2077     }
2078 
2079     // m(m(X, C2), C1) -> m(X, C)
2080     const APFloat *C1, *C2;
2081     if (auto *M = dyn_cast<IntrinsicInst>(Arg0)) {
2082       if (M->getIntrinsicID() == IID && match(Arg1, m_APFloat(C1)) &&
2083           ((match(M->getArgOperand(0), m_Value(X)) &&
2084             match(M->getArgOperand(1), m_APFloat(C2))) ||
2085            (match(M->getArgOperand(1), m_Value(X)) &&
2086             match(M->getArgOperand(0), m_APFloat(C2))))) {
2087         APFloat Res(0.0);
2088         switch (IID) {
2089         case Intrinsic::maxnum:
2090           Res = maxnum(*C1, *C2);
2091           break;
2092         case Intrinsic::minnum:
2093           Res = minnum(*C1, *C2);
2094           break;
2095         case Intrinsic::maximum:
2096           Res = maximum(*C1, *C2);
2097           break;
2098         case Intrinsic::minimum:
2099           Res = minimum(*C1, *C2);
2100           break;
2101         default:
2102           llvm_unreachable("unexpected intrinsic ID");
2103         }
2104         Instruction *NewCall = Builder.CreateBinaryIntrinsic(
2105             IID, X, ConstantFP::get(Arg0->getType(), Res));
2106         NewCall->copyIRFlags(II);
2107         return replaceInstUsesWith(*II, NewCall);
2108       }
2109     }
2110 
2111     break;
2112   }
2113   case Intrinsic::fmuladd: {
2114     // Canonicalize fast fmuladd to the separate fmul + fadd.
2115     if (II->isFast()) {
2116       BuilderTy::FastMathFlagGuard Guard(Builder);
2117       Builder.setFastMathFlags(II->getFastMathFlags());
2118       Value *Mul = Builder.CreateFMul(II->getArgOperand(0),
2119                                       II->getArgOperand(1));
2120       Value *Add = Builder.CreateFAdd(Mul, II->getArgOperand(2));
2121       Add->takeName(II);
2122       return replaceInstUsesWith(*II, Add);
2123     }
2124 
2125     LLVM_FALLTHROUGH;
2126   }
2127   case Intrinsic::fma: {
2128     Value *Src0 = II->getArgOperand(0);
2129     Value *Src1 = II->getArgOperand(1);
2130 
2131     // Canonicalize constant multiply operand to Src1.
2132     if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
2133       II->setArgOperand(0, Src1);
2134       II->setArgOperand(1, Src0);
2135       std::swap(Src0, Src1);
2136     }
2137 
2138     // fma fneg(x), fneg(y), z -> fma x, y, z
2139     Value *X, *Y;
2140     if (match(Src0, m_FNeg(m_Value(X))) && match(Src1, m_FNeg(m_Value(Y)))) {
2141       II->setArgOperand(0, X);
2142       II->setArgOperand(1, Y);
2143       return II;
2144     }
2145 
2146     // fma fabs(x), fabs(x), z -> fma x, x, z
2147     if (match(Src0, m_FAbs(m_Value(X))) &&
2148         match(Src1, m_FAbs(m_Specific(X)))) {
2149       II->setArgOperand(0, X);
2150       II->setArgOperand(1, X);
2151       return II;
2152     }
2153 
2154     // fma x, 1, z -> fadd x, z
2155     if (match(Src1, m_FPOne())) {
2156       auto *FAdd = BinaryOperator::CreateFAdd(Src0, II->getArgOperand(2));
2157       FAdd->copyFastMathFlags(II);
2158       return FAdd;
2159     }
2160 
2161     break;
2162   }
2163   case Intrinsic::fabs: {
2164     Value *Cond;
2165     Constant *LHS, *RHS;
2166     if (match(II->getArgOperand(0),
2167               m_Select(m_Value(Cond), m_Constant(LHS), m_Constant(RHS)))) {
2168       CallInst *Call0 = Builder.CreateCall(II->getCalledFunction(), {LHS});
2169       CallInst *Call1 = Builder.CreateCall(II->getCalledFunction(), {RHS});
2170       return SelectInst::Create(Cond, Call0, Call1);
2171     }
2172 
2173     LLVM_FALLTHROUGH;
2174   }
2175   case Intrinsic::ceil:
2176   case Intrinsic::floor:
2177   case Intrinsic::round:
2178   case Intrinsic::nearbyint:
2179   case Intrinsic::rint:
2180   case Intrinsic::trunc: {
2181     Value *ExtSrc;
2182     if (match(II->getArgOperand(0), m_OneUse(m_FPExt(m_Value(ExtSrc))))) {
2183       // Narrow the call: intrinsic (fpext x) -> fpext (intrinsic x)
2184       Value *NarrowII =
2185           Builder.CreateUnaryIntrinsic(II->getIntrinsicID(), ExtSrc, II);
2186       return new FPExtInst(NarrowII, II->getType());
2187     }
2188     break;
2189   }
2190   case Intrinsic::cos:
2191   case Intrinsic::amdgcn_cos: {
2192     Value *X;
2193     Value *Src = II->getArgOperand(0);
2194     if (match(Src, m_FNeg(m_Value(X))) || match(Src, m_FAbs(m_Value(X)))) {
2195       // cos(-x) -> cos(x)
2196       // cos(fabs(x)) -> cos(x)
2197       II->setArgOperand(0, X);
2198       return II;
2199     }
2200     break;
2201   }
2202   case Intrinsic::sin: {
2203     Value *X;
2204     if (match(II->getArgOperand(0), m_OneUse(m_FNeg(m_Value(X))))) {
2205       // sin(-x) --> -sin(x)
2206       Value *NewSin = Builder.CreateUnaryIntrinsic(Intrinsic::sin, X, II);
2207       Instruction *FNeg = BinaryOperator::CreateFNeg(NewSin);
2208       FNeg->copyFastMathFlags(II);
2209       return FNeg;
2210     }
2211     break;
2212   }
2213   case Intrinsic::ppc_altivec_lvx:
2214   case Intrinsic::ppc_altivec_lvxl:
2215     // Turn PPC lvx -> load if the pointer is known aligned.
2216     if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC,
2217                                    &DT) >= 16) {
2218       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
2219                                          PointerType::getUnqual(II->getType()));
2220       return new LoadInst(Ptr);
2221     }
2222     break;
2223   case Intrinsic::ppc_vsx_lxvw4x:
2224   case Intrinsic::ppc_vsx_lxvd2x: {
2225     // Turn PPC VSX loads into normal loads.
2226     Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
2227                                        PointerType::getUnqual(II->getType()));
2228     return new LoadInst(Ptr, Twine(""), false, 1);
2229   }
2230   case Intrinsic::ppc_altivec_stvx:
2231   case Intrinsic::ppc_altivec_stvxl:
2232     // Turn stvx -> store if the pointer is known aligned.
2233     if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC,
2234                                    &DT) >= 16) {
2235       Type *OpPtrTy =
2236         PointerType::getUnqual(II->getArgOperand(0)->getType());
2237       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
2238       return new StoreInst(II->getArgOperand(0), Ptr);
2239     }
2240     break;
2241   case Intrinsic::ppc_vsx_stxvw4x:
2242   case Intrinsic::ppc_vsx_stxvd2x: {
2243     // Turn PPC VSX stores into normal stores.
2244     Type *OpPtrTy = PointerType::getUnqual(II->getArgOperand(0)->getType());
2245     Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
2246     return new StoreInst(II->getArgOperand(0), Ptr, false, 1);
2247   }
2248   case Intrinsic::ppc_qpx_qvlfs:
2249     // Turn PPC QPX qvlfs -> load if the pointer is known aligned.
2250     if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC,
2251                                    &DT) >= 16) {
2252       Type *VTy = VectorType::get(Builder.getFloatTy(),
2253                                   II->getType()->getVectorNumElements());
2254       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
2255                                          PointerType::getUnqual(VTy));
2256       Value *Load = Builder.CreateLoad(Ptr);
2257       return new FPExtInst(Load, II->getType());
2258     }
2259     break;
2260   case Intrinsic::ppc_qpx_qvlfd:
2261     // Turn PPC QPX qvlfd -> load if the pointer is known aligned.
2262     if (getOrEnforceKnownAlignment(II->getArgOperand(0), 32, DL, II, &AC,
2263                                    &DT) >= 32) {
2264       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
2265                                          PointerType::getUnqual(II->getType()));
2266       return new LoadInst(Ptr);
2267     }
2268     break;
2269   case Intrinsic::ppc_qpx_qvstfs:
2270     // Turn PPC QPX qvstfs -> store if the pointer is known aligned.
2271     if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC,
2272                                    &DT) >= 16) {
2273       Type *VTy = VectorType::get(Builder.getFloatTy(),
2274           II->getArgOperand(0)->getType()->getVectorNumElements());
2275       Value *TOp = Builder.CreateFPTrunc(II->getArgOperand(0), VTy);
2276       Type *OpPtrTy = PointerType::getUnqual(VTy);
2277       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
2278       return new StoreInst(TOp, Ptr);
2279     }
2280     break;
2281   case Intrinsic::ppc_qpx_qvstfd:
2282     // Turn PPC QPX qvstfd -> store if the pointer is known aligned.
2283     if (getOrEnforceKnownAlignment(II->getArgOperand(1), 32, DL, II, &AC,
2284                                    &DT) >= 32) {
2285       Type *OpPtrTy =
2286         PointerType::getUnqual(II->getArgOperand(0)->getType());
2287       Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
2288       return new StoreInst(II->getArgOperand(0), Ptr);
2289     }
2290     break;
2291 
2292   case Intrinsic::x86_bmi_bextr_32:
2293   case Intrinsic::x86_bmi_bextr_64:
2294   case Intrinsic::x86_tbm_bextri_u32:
2295   case Intrinsic::x86_tbm_bextri_u64:
2296     // If the RHS is a constant we can try some simplifications.
2297     if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
2298       uint64_t Shift = C->getZExtValue();
2299       uint64_t Length = (Shift >> 8) & 0xff;
2300       Shift &= 0xff;
2301       unsigned BitWidth = II->getType()->getIntegerBitWidth();
2302       // If the length is 0 or the shift is out of range, replace with zero.
2303       if (Length == 0 || Shift >= BitWidth)
2304         return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), 0));
2305       // If the LHS is also a constant, we can completely constant fold this.
2306       if (auto *InC = dyn_cast<ConstantInt>(II->getArgOperand(0))) {
2307         uint64_t Result = InC->getZExtValue() >> Shift;
2308         if (Length > BitWidth)
2309           Length = BitWidth;
2310         Result &= maskTrailingOnes<uint64_t>(Length);
2311         return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Result));
2312       }
2313       // TODO should we turn this into 'and' if shift is 0? Or 'shl' if we
2314       // are only masking bits that a shift already cleared?
2315     }
2316     break;
2317 
2318   case Intrinsic::x86_bmi_bzhi_32:
2319   case Intrinsic::x86_bmi_bzhi_64:
2320     // If the RHS is a constant we can try some simplifications.
2321     if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
2322       uint64_t Index = C->getZExtValue() & 0xff;
2323       unsigned BitWidth = II->getType()->getIntegerBitWidth();
2324       if (Index >= BitWidth)
2325         return replaceInstUsesWith(CI, II->getArgOperand(0));
2326       if (Index == 0)
2327         return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), 0));
2328       // If the LHS is also a constant, we can completely constant fold this.
2329       if (auto *InC = dyn_cast<ConstantInt>(II->getArgOperand(0))) {
2330         uint64_t Result = InC->getZExtValue();
2331         Result &= maskTrailingOnes<uint64_t>(Index);
2332         return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Result));
2333       }
2334       // TODO should we convert this to an AND if the RHS is constant?
2335     }
2336     break;
2337 
2338   case Intrinsic::x86_vcvtph2ps_128:
2339   case Intrinsic::x86_vcvtph2ps_256: {
2340     auto Arg = II->getArgOperand(0);
2341     auto ArgType = cast<VectorType>(Arg->getType());
2342     auto RetType = cast<VectorType>(II->getType());
2343     unsigned ArgWidth = ArgType->getNumElements();
2344     unsigned RetWidth = RetType->getNumElements();
2345     assert(RetWidth <= ArgWidth && "Unexpected input/return vector widths");
2346     assert(ArgType->isIntOrIntVectorTy() &&
2347            ArgType->getScalarSizeInBits() == 16 &&
2348            "CVTPH2PS input type should be 16-bit integer vector");
2349     assert(RetType->getScalarType()->isFloatTy() &&
2350            "CVTPH2PS output type should be 32-bit float vector");
2351 
2352     // Constant folding: Convert to generic half to single conversion.
2353     if (isa<ConstantAggregateZero>(Arg))
2354       return replaceInstUsesWith(*II, ConstantAggregateZero::get(RetType));
2355 
2356     if (isa<ConstantDataVector>(Arg)) {
2357       auto VectorHalfAsShorts = Arg;
2358       if (RetWidth < ArgWidth) {
2359         SmallVector<uint32_t, 8> SubVecMask;
2360         for (unsigned i = 0; i != RetWidth; ++i)
2361           SubVecMask.push_back((int)i);
2362         VectorHalfAsShorts = Builder.CreateShuffleVector(
2363             Arg, UndefValue::get(ArgType), SubVecMask);
2364       }
2365 
2366       auto VectorHalfType =
2367           VectorType::get(Type::getHalfTy(II->getContext()), RetWidth);
2368       auto VectorHalfs =
2369           Builder.CreateBitCast(VectorHalfAsShorts, VectorHalfType);
2370       auto VectorFloats = Builder.CreateFPExt(VectorHalfs, RetType);
2371       return replaceInstUsesWith(*II, VectorFloats);
2372     }
2373 
2374     // We only use the lowest lanes of the argument.
2375     if (Value *V = SimplifyDemandedVectorEltsLow(Arg, ArgWidth, RetWidth)) {
2376       II->setArgOperand(0, V);
2377       return II;
2378     }
2379     break;
2380   }
2381 
2382   case Intrinsic::x86_sse_cvtss2si:
2383   case Intrinsic::x86_sse_cvtss2si64:
2384   case Intrinsic::x86_sse_cvttss2si:
2385   case Intrinsic::x86_sse_cvttss2si64:
2386   case Intrinsic::x86_sse2_cvtsd2si:
2387   case Intrinsic::x86_sse2_cvtsd2si64:
2388   case Intrinsic::x86_sse2_cvttsd2si:
2389   case Intrinsic::x86_sse2_cvttsd2si64:
2390   case Intrinsic::x86_avx512_vcvtss2si32:
2391   case Intrinsic::x86_avx512_vcvtss2si64:
2392   case Intrinsic::x86_avx512_vcvtss2usi32:
2393   case Intrinsic::x86_avx512_vcvtss2usi64:
2394   case Intrinsic::x86_avx512_vcvtsd2si32:
2395   case Intrinsic::x86_avx512_vcvtsd2si64:
2396   case Intrinsic::x86_avx512_vcvtsd2usi32:
2397   case Intrinsic::x86_avx512_vcvtsd2usi64:
2398   case Intrinsic::x86_avx512_cvttss2si:
2399   case Intrinsic::x86_avx512_cvttss2si64:
2400   case Intrinsic::x86_avx512_cvttss2usi:
2401   case Intrinsic::x86_avx512_cvttss2usi64:
2402   case Intrinsic::x86_avx512_cvttsd2si:
2403   case Intrinsic::x86_avx512_cvttsd2si64:
2404   case Intrinsic::x86_avx512_cvttsd2usi:
2405   case Intrinsic::x86_avx512_cvttsd2usi64: {
2406     // These intrinsics only demand the 0th element of their input vectors. If
2407     // we can simplify the input based on that, do so now.
2408     Value *Arg = II->getArgOperand(0);
2409     unsigned VWidth = Arg->getType()->getVectorNumElements();
2410     if (Value *V = SimplifyDemandedVectorEltsLow(Arg, VWidth, 1)) {
2411       II->setArgOperand(0, V);
2412       return II;
2413     }
2414     break;
2415   }
2416 
2417   case Intrinsic::x86_sse41_round_ps:
2418   case Intrinsic::x86_sse41_round_pd:
2419   case Intrinsic::x86_avx_round_ps_256:
2420   case Intrinsic::x86_avx_round_pd_256:
2421   case Intrinsic::x86_avx512_mask_rndscale_ps_128:
2422   case Intrinsic::x86_avx512_mask_rndscale_ps_256:
2423   case Intrinsic::x86_avx512_mask_rndscale_ps_512:
2424   case Intrinsic::x86_avx512_mask_rndscale_pd_128:
2425   case Intrinsic::x86_avx512_mask_rndscale_pd_256:
2426   case Intrinsic::x86_avx512_mask_rndscale_pd_512:
2427   case Intrinsic::x86_avx512_mask_rndscale_ss:
2428   case Intrinsic::x86_avx512_mask_rndscale_sd:
2429     if (Value *V = simplifyX86round(*II, Builder))
2430       return replaceInstUsesWith(*II, V);
2431     break;
2432 
2433   case Intrinsic::x86_mmx_pmovmskb:
2434   case Intrinsic::x86_sse_movmsk_ps:
2435   case Intrinsic::x86_sse2_movmsk_pd:
2436   case Intrinsic::x86_sse2_pmovmskb_128:
2437   case Intrinsic::x86_avx_movmsk_pd_256:
2438   case Intrinsic::x86_avx_movmsk_ps_256:
2439   case Intrinsic::x86_avx2_pmovmskb:
2440     if (Value *V = simplifyX86movmsk(*II))
2441       return replaceInstUsesWith(*II, V);
2442     break;
2443 
2444   case Intrinsic::x86_sse_comieq_ss:
2445   case Intrinsic::x86_sse_comige_ss:
2446   case Intrinsic::x86_sse_comigt_ss:
2447   case Intrinsic::x86_sse_comile_ss:
2448   case Intrinsic::x86_sse_comilt_ss:
2449   case Intrinsic::x86_sse_comineq_ss:
2450   case Intrinsic::x86_sse_ucomieq_ss:
2451   case Intrinsic::x86_sse_ucomige_ss:
2452   case Intrinsic::x86_sse_ucomigt_ss:
2453   case Intrinsic::x86_sse_ucomile_ss:
2454   case Intrinsic::x86_sse_ucomilt_ss:
2455   case Intrinsic::x86_sse_ucomineq_ss:
2456   case Intrinsic::x86_sse2_comieq_sd:
2457   case Intrinsic::x86_sse2_comige_sd:
2458   case Intrinsic::x86_sse2_comigt_sd:
2459   case Intrinsic::x86_sse2_comile_sd:
2460   case Intrinsic::x86_sse2_comilt_sd:
2461   case Intrinsic::x86_sse2_comineq_sd:
2462   case Intrinsic::x86_sse2_ucomieq_sd:
2463   case Intrinsic::x86_sse2_ucomige_sd:
2464   case Intrinsic::x86_sse2_ucomigt_sd:
2465   case Intrinsic::x86_sse2_ucomile_sd:
2466   case Intrinsic::x86_sse2_ucomilt_sd:
2467   case Intrinsic::x86_sse2_ucomineq_sd:
2468   case Intrinsic::x86_avx512_vcomi_ss:
2469   case Intrinsic::x86_avx512_vcomi_sd:
2470   case Intrinsic::x86_avx512_mask_cmp_ss:
2471   case Intrinsic::x86_avx512_mask_cmp_sd: {
2472     // These intrinsics only demand the 0th element of their input vectors. If
2473     // we can simplify the input based on that, do so now.
2474     bool MadeChange = false;
2475     Value *Arg0 = II->getArgOperand(0);
2476     Value *Arg1 = II->getArgOperand(1);
2477     unsigned VWidth = Arg0->getType()->getVectorNumElements();
2478     if (Value *V = SimplifyDemandedVectorEltsLow(Arg0, VWidth, 1)) {
2479       II->setArgOperand(0, V);
2480       MadeChange = true;
2481     }
2482     if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, 1)) {
2483       II->setArgOperand(1, V);
2484       MadeChange = true;
2485     }
2486     if (MadeChange)
2487       return II;
2488     break;
2489   }
2490   case Intrinsic::x86_avx512_cmp_pd_128:
2491   case Intrinsic::x86_avx512_cmp_pd_256:
2492   case Intrinsic::x86_avx512_cmp_pd_512:
2493   case Intrinsic::x86_avx512_cmp_ps_128:
2494   case Intrinsic::x86_avx512_cmp_ps_256:
2495   case Intrinsic::x86_avx512_cmp_ps_512: {
2496     // Folding cmp(sub(a,b),0) -> cmp(a,b) and cmp(0,sub(a,b)) -> cmp(b,a)
2497     Value *Arg0 = II->getArgOperand(0);
2498     Value *Arg1 = II->getArgOperand(1);
2499     bool Arg0IsZero = match(Arg0, m_PosZeroFP());
2500     if (Arg0IsZero)
2501       std::swap(Arg0, Arg1);
2502     Value *A, *B;
2503     // This fold requires only the NINF(not +/- inf) since inf minus
2504     // inf is nan.
2505     // NSZ(No Signed Zeros) is not needed because zeros of any sign are
2506     // equal for both compares.
2507     // NNAN is not needed because nans compare the same for both compares.
2508     // The compare intrinsic uses the above assumptions and therefore
2509     // doesn't require additional flags.
2510     if ((match(Arg0, m_OneUse(m_FSub(m_Value(A), m_Value(B)))) &&
2511          match(Arg1, m_PosZeroFP()) && isa<Instruction>(Arg0) &&
2512          cast<Instruction>(Arg0)->getFastMathFlags().noInfs())) {
2513       if (Arg0IsZero)
2514         std::swap(A, B);
2515       II->setArgOperand(0, A);
2516       II->setArgOperand(1, B);
2517       return II;
2518     }
2519     break;
2520   }
2521 
2522   case Intrinsic::x86_avx512_add_ps_512:
2523   case Intrinsic::x86_avx512_div_ps_512:
2524   case Intrinsic::x86_avx512_mul_ps_512:
2525   case Intrinsic::x86_avx512_sub_ps_512:
2526   case Intrinsic::x86_avx512_add_pd_512:
2527   case Intrinsic::x86_avx512_div_pd_512:
2528   case Intrinsic::x86_avx512_mul_pd_512:
2529   case Intrinsic::x86_avx512_sub_pd_512:
2530     // If the rounding mode is CUR_DIRECTION(4) we can turn these into regular
2531     // IR operations.
2532     if (auto *R = dyn_cast<ConstantInt>(II->getArgOperand(2))) {
2533       if (R->getValue() == 4) {
2534         Value *Arg0 = II->getArgOperand(0);
2535         Value *Arg1 = II->getArgOperand(1);
2536 
2537         Value *V;
2538         switch (II->getIntrinsicID()) {
2539         default: llvm_unreachable("Case stmts out of sync!");
2540         case Intrinsic::x86_avx512_add_ps_512:
2541         case Intrinsic::x86_avx512_add_pd_512:
2542           V = Builder.CreateFAdd(Arg0, Arg1);
2543           break;
2544         case Intrinsic::x86_avx512_sub_ps_512:
2545         case Intrinsic::x86_avx512_sub_pd_512:
2546           V = Builder.CreateFSub(Arg0, Arg1);
2547           break;
2548         case Intrinsic::x86_avx512_mul_ps_512:
2549         case Intrinsic::x86_avx512_mul_pd_512:
2550           V = Builder.CreateFMul(Arg0, Arg1);
2551           break;
2552         case Intrinsic::x86_avx512_div_ps_512:
2553         case Intrinsic::x86_avx512_div_pd_512:
2554           V = Builder.CreateFDiv(Arg0, Arg1);
2555           break;
2556         }
2557 
2558         return replaceInstUsesWith(*II, V);
2559       }
2560     }
2561     break;
2562 
2563   case Intrinsic::x86_avx512_mask_add_ss_round:
2564   case Intrinsic::x86_avx512_mask_div_ss_round:
2565   case Intrinsic::x86_avx512_mask_mul_ss_round:
2566   case Intrinsic::x86_avx512_mask_sub_ss_round:
2567   case Intrinsic::x86_avx512_mask_add_sd_round:
2568   case Intrinsic::x86_avx512_mask_div_sd_round:
2569   case Intrinsic::x86_avx512_mask_mul_sd_round:
2570   case Intrinsic::x86_avx512_mask_sub_sd_round:
2571     // If the rounding mode is CUR_DIRECTION(4) we can turn these into regular
2572     // IR operations.
2573     if (auto *R = dyn_cast<ConstantInt>(II->getArgOperand(4))) {
2574       if (R->getValue() == 4) {
2575         // Extract the element as scalars.
2576         Value *Arg0 = II->getArgOperand(0);
2577         Value *Arg1 = II->getArgOperand(1);
2578         Value *LHS = Builder.CreateExtractElement(Arg0, (uint64_t)0);
2579         Value *RHS = Builder.CreateExtractElement(Arg1, (uint64_t)0);
2580 
2581         Value *V;
2582         switch (II->getIntrinsicID()) {
2583         default: llvm_unreachable("Case stmts out of sync!");
2584         case Intrinsic::x86_avx512_mask_add_ss_round:
2585         case Intrinsic::x86_avx512_mask_add_sd_round:
2586           V = Builder.CreateFAdd(LHS, RHS);
2587           break;
2588         case Intrinsic::x86_avx512_mask_sub_ss_round:
2589         case Intrinsic::x86_avx512_mask_sub_sd_round:
2590           V = Builder.CreateFSub(LHS, RHS);
2591           break;
2592         case Intrinsic::x86_avx512_mask_mul_ss_round:
2593         case Intrinsic::x86_avx512_mask_mul_sd_round:
2594           V = Builder.CreateFMul(LHS, RHS);
2595           break;
2596         case Intrinsic::x86_avx512_mask_div_ss_round:
2597         case Intrinsic::x86_avx512_mask_div_sd_round:
2598           V = Builder.CreateFDiv(LHS, RHS);
2599           break;
2600         }
2601 
2602         // Handle the masking aspect of the intrinsic.
2603         Value *Mask = II->getArgOperand(3);
2604         auto *C = dyn_cast<ConstantInt>(Mask);
2605         // We don't need a select if we know the mask bit is a 1.
2606         if (!C || !C->getValue()[0]) {
2607           // Cast the mask to an i1 vector and then extract the lowest element.
2608           auto *MaskTy = VectorType::get(Builder.getInt1Ty(),
2609                              cast<IntegerType>(Mask->getType())->getBitWidth());
2610           Mask = Builder.CreateBitCast(Mask, MaskTy);
2611           Mask = Builder.CreateExtractElement(Mask, (uint64_t)0);
2612           // Extract the lowest element from the passthru operand.
2613           Value *Passthru = Builder.CreateExtractElement(II->getArgOperand(2),
2614                                                           (uint64_t)0);
2615           V = Builder.CreateSelect(Mask, V, Passthru);
2616         }
2617 
2618         // Insert the result back into the original argument 0.
2619         V = Builder.CreateInsertElement(Arg0, V, (uint64_t)0);
2620 
2621         return replaceInstUsesWith(*II, V);
2622       }
2623     }
2624     LLVM_FALLTHROUGH;
2625 
2626   // X86 scalar intrinsics simplified with SimplifyDemandedVectorElts.
2627   case Intrinsic::x86_avx512_mask_max_ss_round:
2628   case Intrinsic::x86_avx512_mask_min_ss_round:
2629   case Intrinsic::x86_avx512_mask_max_sd_round:
2630   case Intrinsic::x86_avx512_mask_min_sd_round:
2631   case Intrinsic::x86_sse_cmp_ss:
2632   case Intrinsic::x86_sse_min_ss:
2633   case Intrinsic::x86_sse_max_ss:
2634   case Intrinsic::x86_sse2_cmp_sd:
2635   case Intrinsic::x86_sse2_min_sd:
2636   case Intrinsic::x86_sse2_max_sd:
2637   case Intrinsic::x86_xop_vfrcz_ss:
2638   case Intrinsic::x86_xop_vfrcz_sd: {
2639    unsigned VWidth = II->getType()->getVectorNumElements();
2640    APInt UndefElts(VWidth, 0);
2641    APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
2642    if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, UndefElts)) {
2643      if (V != II)
2644        return replaceInstUsesWith(*II, V);
2645      return II;
2646    }
2647    break;
2648   }
2649   case Intrinsic::x86_sse41_round_ss:
2650   case Intrinsic::x86_sse41_round_sd: {
2651     unsigned VWidth = II->getType()->getVectorNumElements();
2652     APInt UndefElts(VWidth, 0);
2653     APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
2654     if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, UndefElts)) {
2655       if (V != II)
2656         return replaceInstUsesWith(*II, V);
2657       return II;
2658     } else if (Value *V = simplifyX86round(*II, Builder))
2659       return replaceInstUsesWith(*II, V);
2660     break;
2661   }
2662 
2663   // Constant fold add/sub with saturation intrinsics.
2664   case Intrinsic::x86_sse2_padds_b:
2665   case Intrinsic::x86_sse2_padds_w:
2666   case Intrinsic::x86_sse2_psubs_b:
2667   case Intrinsic::x86_sse2_psubs_w:
2668   case Intrinsic::x86_avx2_padds_b:
2669   case Intrinsic::x86_avx2_padds_w:
2670   case Intrinsic::x86_avx2_psubs_b:
2671   case Intrinsic::x86_avx2_psubs_w:
2672   case Intrinsic::x86_avx512_padds_b_512:
2673   case Intrinsic::x86_avx512_padds_w_512:
2674   case Intrinsic::x86_avx512_psubs_b_512:
2675   case Intrinsic::x86_avx512_psubs_w_512:
2676     if (Value *V = simplifyX86AddsSubs(*II, Builder))
2677       return replaceInstUsesWith(*II, V);
2678     break;
2679 
2680   // Constant fold ashr( <A x Bi>, Ci ).
2681   // Constant fold lshr( <A x Bi>, Ci ).
2682   // Constant fold shl( <A x Bi>, Ci ).
2683   case Intrinsic::x86_sse2_psrai_d:
2684   case Intrinsic::x86_sse2_psrai_w:
2685   case Intrinsic::x86_avx2_psrai_d:
2686   case Intrinsic::x86_avx2_psrai_w:
2687   case Intrinsic::x86_avx512_psrai_q_128:
2688   case Intrinsic::x86_avx512_psrai_q_256:
2689   case Intrinsic::x86_avx512_psrai_d_512:
2690   case Intrinsic::x86_avx512_psrai_q_512:
2691   case Intrinsic::x86_avx512_psrai_w_512:
2692   case Intrinsic::x86_sse2_psrli_d:
2693   case Intrinsic::x86_sse2_psrli_q:
2694   case Intrinsic::x86_sse2_psrli_w:
2695   case Intrinsic::x86_avx2_psrli_d:
2696   case Intrinsic::x86_avx2_psrli_q:
2697   case Intrinsic::x86_avx2_psrli_w:
2698   case Intrinsic::x86_avx512_psrli_d_512:
2699   case Intrinsic::x86_avx512_psrli_q_512:
2700   case Intrinsic::x86_avx512_psrli_w_512:
2701   case Intrinsic::x86_sse2_pslli_d:
2702   case Intrinsic::x86_sse2_pslli_q:
2703   case Intrinsic::x86_sse2_pslli_w:
2704   case Intrinsic::x86_avx2_pslli_d:
2705   case Intrinsic::x86_avx2_pslli_q:
2706   case Intrinsic::x86_avx2_pslli_w:
2707   case Intrinsic::x86_avx512_pslli_d_512:
2708   case Intrinsic::x86_avx512_pslli_q_512:
2709   case Intrinsic::x86_avx512_pslli_w_512:
2710     if (Value *V = simplifyX86immShift(*II, Builder))
2711       return replaceInstUsesWith(*II, V);
2712     break;
2713 
2714   case Intrinsic::x86_sse2_psra_d:
2715   case Intrinsic::x86_sse2_psra_w:
2716   case Intrinsic::x86_avx2_psra_d:
2717   case Intrinsic::x86_avx2_psra_w:
2718   case Intrinsic::x86_avx512_psra_q_128:
2719   case Intrinsic::x86_avx512_psra_q_256:
2720   case Intrinsic::x86_avx512_psra_d_512:
2721   case Intrinsic::x86_avx512_psra_q_512:
2722   case Intrinsic::x86_avx512_psra_w_512:
2723   case Intrinsic::x86_sse2_psrl_d:
2724   case Intrinsic::x86_sse2_psrl_q:
2725   case Intrinsic::x86_sse2_psrl_w:
2726   case Intrinsic::x86_avx2_psrl_d:
2727   case Intrinsic::x86_avx2_psrl_q:
2728   case Intrinsic::x86_avx2_psrl_w:
2729   case Intrinsic::x86_avx512_psrl_d_512:
2730   case Intrinsic::x86_avx512_psrl_q_512:
2731   case Intrinsic::x86_avx512_psrl_w_512:
2732   case Intrinsic::x86_sse2_psll_d:
2733   case Intrinsic::x86_sse2_psll_q:
2734   case Intrinsic::x86_sse2_psll_w:
2735   case Intrinsic::x86_avx2_psll_d:
2736   case Intrinsic::x86_avx2_psll_q:
2737   case Intrinsic::x86_avx2_psll_w:
2738   case Intrinsic::x86_avx512_psll_d_512:
2739   case Intrinsic::x86_avx512_psll_q_512:
2740   case Intrinsic::x86_avx512_psll_w_512: {
2741     if (Value *V = simplifyX86immShift(*II, Builder))
2742       return replaceInstUsesWith(*II, V);
2743 
2744     // SSE2/AVX2 uses only the first 64-bits of the 128-bit vector
2745     // operand to compute the shift amount.
2746     Value *Arg1 = II->getArgOperand(1);
2747     assert(Arg1->getType()->getPrimitiveSizeInBits() == 128 &&
2748            "Unexpected packed shift size");
2749     unsigned VWidth = Arg1->getType()->getVectorNumElements();
2750 
2751     if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, VWidth / 2)) {
2752       II->setArgOperand(1, V);
2753       return II;
2754     }
2755     break;
2756   }
2757 
2758   case Intrinsic::x86_avx2_psllv_d:
2759   case Intrinsic::x86_avx2_psllv_d_256:
2760   case Intrinsic::x86_avx2_psllv_q:
2761   case Intrinsic::x86_avx2_psllv_q_256:
2762   case Intrinsic::x86_avx512_psllv_d_512:
2763   case Intrinsic::x86_avx512_psllv_q_512:
2764   case Intrinsic::x86_avx512_psllv_w_128:
2765   case Intrinsic::x86_avx512_psllv_w_256:
2766   case Intrinsic::x86_avx512_psllv_w_512:
2767   case Intrinsic::x86_avx2_psrav_d:
2768   case Intrinsic::x86_avx2_psrav_d_256:
2769   case Intrinsic::x86_avx512_psrav_q_128:
2770   case Intrinsic::x86_avx512_psrav_q_256:
2771   case Intrinsic::x86_avx512_psrav_d_512:
2772   case Intrinsic::x86_avx512_psrav_q_512:
2773   case Intrinsic::x86_avx512_psrav_w_128:
2774   case Intrinsic::x86_avx512_psrav_w_256:
2775   case Intrinsic::x86_avx512_psrav_w_512:
2776   case Intrinsic::x86_avx2_psrlv_d:
2777   case Intrinsic::x86_avx2_psrlv_d_256:
2778   case Intrinsic::x86_avx2_psrlv_q:
2779   case Intrinsic::x86_avx2_psrlv_q_256:
2780   case Intrinsic::x86_avx512_psrlv_d_512:
2781   case Intrinsic::x86_avx512_psrlv_q_512:
2782   case Intrinsic::x86_avx512_psrlv_w_128:
2783   case Intrinsic::x86_avx512_psrlv_w_256:
2784   case Intrinsic::x86_avx512_psrlv_w_512:
2785     if (Value *V = simplifyX86varShift(*II, Builder))
2786       return replaceInstUsesWith(*II, V);
2787     break;
2788 
2789   case Intrinsic::x86_sse2_packssdw_128:
2790   case Intrinsic::x86_sse2_packsswb_128:
2791   case Intrinsic::x86_avx2_packssdw:
2792   case Intrinsic::x86_avx2_packsswb:
2793   case Intrinsic::x86_avx512_packssdw_512:
2794   case Intrinsic::x86_avx512_packsswb_512:
2795     if (Value *V = simplifyX86pack(*II, true))
2796       return replaceInstUsesWith(*II, V);
2797     break;
2798 
2799   case Intrinsic::x86_sse2_packuswb_128:
2800   case Intrinsic::x86_sse41_packusdw:
2801   case Intrinsic::x86_avx2_packusdw:
2802   case Intrinsic::x86_avx2_packuswb:
2803   case Intrinsic::x86_avx512_packusdw_512:
2804   case Intrinsic::x86_avx512_packuswb_512:
2805     if (Value *V = simplifyX86pack(*II, false))
2806       return replaceInstUsesWith(*II, V);
2807     break;
2808 
2809   case Intrinsic::x86_pclmulqdq:
2810   case Intrinsic::x86_pclmulqdq_256:
2811   case Intrinsic::x86_pclmulqdq_512: {
2812     if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(2))) {
2813       unsigned Imm = C->getZExtValue();
2814 
2815       bool MadeChange = false;
2816       Value *Arg0 = II->getArgOperand(0);
2817       Value *Arg1 = II->getArgOperand(1);
2818       unsigned VWidth = Arg0->getType()->getVectorNumElements();
2819 
2820       APInt UndefElts1(VWidth, 0);
2821       APInt DemandedElts1 = APInt::getSplat(VWidth,
2822                                             APInt(2, (Imm & 0x01) ? 2 : 1));
2823       if (Value *V = SimplifyDemandedVectorElts(Arg0, DemandedElts1,
2824                                                 UndefElts1)) {
2825         II->setArgOperand(0, V);
2826         MadeChange = true;
2827       }
2828 
2829       APInt UndefElts2(VWidth, 0);
2830       APInt DemandedElts2 = APInt::getSplat(VWidth,
2831                                             APInt(2, (Imm & 0x10) ? 2 : 1));
2832       if (Value *V = SimplifyDemandedVectorElts(Arg1, DemandedElts2,
2833                                                 UndefElts2)) {
2834         II->setArgOperand(1, V);
2835         MadeChange = true;
2836       }
2837 
2838       // If either input elements are undef, the result is zero.
2839       if (DemandedElts1.isSubsetOf(UndefElts1) ||
2840           DemandedElts2.isSubsetOf(UndefElts2))
2841         return replaceInstUsesWith(*II,
2842                                    ConstantAggregateZero::get(II->getType()));
2843 
2844       if (MadeChange)
2845         return II;
2846     }
2847     break;
2848   }
2849 
2850   case Intrinsic::x86_sse41_insertps:
2851     if (Value *V = simplifyX86insertps(*II, Builder))
2852       return replaceInstUsesWith(*II, V);
2853     break;
2854 
2855   case Intrinsic::x86_sse4a_extrq: {
2856     Value *Op0 = II->getArgOperand(0);
2857     Value *Op1 = II->getArgOperand(1);
2858     unsigned VWidth0 = Op0->getType()->getVectorNumElements();
2859     unsigned VWidth1 = Op1->getType()->getVectorNumElements();
2860     assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2861            Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 &&
2862            VWidth1 == 16 && "Unexpected operand sizes");
2863 
2864     // See if we're dealing with constant values.
2865     Constant *C1 = dyn_cast<Constant>(Op1);
2866     ConstantInt *CILength =
2867         C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0))
2868            : nullptr;
2869     ConstantInt *CIIndex =
2870         C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1))
2871            : nullptr;
2872 
2873     // Attempt to simplify to a constant, shuffle vector or EXTRQI call.
2874     if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, Builder))
2875       return replaceInstUsesWith(*II, V);
2876 
2877     // EXTRQ only uses the lowest 64-bits of the first 128-bit vector
2878     // operands and the lowest 16-bits of the second.
2879     bool MadeChange = false;
2880     if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) {
2881       II->setArgOperand(0, V);
2882       MadeChange = true;
2883     }
2884     if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 2)) {
2885       II->setArgOperand(1, V);
2886       MadeChange = true;
2887     }
2888     if (MadeChange)
2889       return II;
2890     break;
2891   }
2892 
2893   case Intrinsic::x86_sse4a_extrqi: {
2894     // EXTRQI: Extract Length bits starting from Index. Zero pad the remaining
2895     // bits of the lower 64-bits. The upper 64-bits are undefined.
2896     Value *Op0 = II->getArgOperand(0);
2897     unsigned VWidth = Op0->getType()->getVectorNumElements();
2898     assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 &&
2899            "Unexpected operand size");
2900 
2901     // See if we're dealing with constant values.
2902     ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(1));
2903     ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(2));
2904 
2905     // Attempt to simplify to a constant or shuffle vector.
2906     if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, Builder))
2907       return replaceInstUsesWith(*II, V);
2908 
2909     // EXTRQI only uses the lowest 64-bits of the first 128-bit vector
2910     // operand.
2911     if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) {
2912       II->setArgOperand(0, V);
2913       return II;
2914     }
2915     break;
2916   }
2917 
2918   case Intrinsic::x86_sse4a_insertq: {
2919     Value *Op0 = II->getArgOperand(0);
2920     Value *Op1 = II->getArgOperand(1);
2921     unsigned VWidth = Op0->getType()->getVectorNumElements();
2922     assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2923            Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 &&
2924            Op1->getType()->getVectorNumElements() == 2 &&
2925            "Unexpected operand size");
2926 
2927     // See if we're dealing with constant values.
2928     Constant *C1 = dyn_cast<Constant>(Op1);
2929     ConstantInt *CI11 =
2930         C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1))
2931            : nullptr;
2932 
2933     // Attempt to simplify to a constant, shuffle vector or INSERTQI call.
2934     if (CI11) {
2935       const APInt &V11 = CI11->getValue();
2936       APInt Len = V11.zextOrTrunc(6);
2937       APInt Idx = V11.lshr(8).zextOrTrunc(6);
2938       if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, Builder))
2939         return replaceInstUsesWith(*II, V);
2940     }
2941 
2942     // INSERTQ only uses the lowest 64-bits of the first 128-bit vector
2943     // operand.
2944     if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) {
2945       II->setArgOperand(0, V);
2946       return II;
2947     }
2948     break;
2949   }
2950 
2951   case Intrinsic::x86_sse4a_insertqi: {
2952     // INSERTQI: Extract lowest Length bits from lower half of second source and
2953     // insert over first source starting at Index bit. The upper 64-bits are
2954     // undefined.
2955     Value *Op0 = II->getArgOperand(0);
2956     Value *Op1 = II->getArgOperand(1);
2957     unsigned VWidth0 = Op0->getType()->getVectorNumElements();
2958     unsigned VWidth1 = Op1->getType()->getVectorNumElements();
2959     assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2960            Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 &&
2961            VWidth1 == 2 && "Unexpected operand sizes");
2962 
2963     // See if we're dealing with constant values.
2964     ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(2));
2965     ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(3));
2966 
2967     // Attempt to simplify to a constant or shuffle vector.
2968     if (CILength && CIIndex) {
2969       APInt Len = CILength->getValue().zextOrTrunc(6);
2970       APInt Idx = CIIndex->getValue().zextOrTrunc(6);
2971       if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, Builder))
2972         return replaceInstUsesWith(*II, V);
2973     }
2974 
2975     // INSERTQI only uses the lowest 64-bits of the first two 128-bit vector
2976     // operands.
2977     bool MadeChange = false;
2978     if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) {
2979       II->setArgOperand(0, V);
2980       MadeChange = true;
2981     }
2982     if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 1)) {
2983       II->setArgOperand(1, V);
2984       MadeChange = true;
2985     }
2986     if (MadeChange)
2987       return II;
2988     break;
2989   }
2990 
2991   case Intrinsic::x86_sse41_pblendvb:
2992   case Intrinsic::x86_sse41_blendvps:
2993   case Intrinsic::x86_sse41_blendvpd:
2994   case Intrinsic::x86_avx_blendv_ps_256:
2995   case Intrinsic::x86_avx_blendv_pd_256:
2996   case Intrinsic::x86_avx2_pblendvb: {
2997     // fold (blend A, A, Mask) -> A
2998     Value *Op0 = II->getArgOperand(0);
2999     Value *Op1 = II->getArgOperand(1);
3000     Value *Mask = II->getArgOperand(2);
3001     if (Op0 == Op1)
3002       return replaceInstUsesWith(CI, Op0);
3003 
3004     // Zero Mask - select 1st argument.
3005     if (isa<ConstantAggregateZero>(Mask))
3006       return replaceInstUsesWith(CI, Op0);
3007 
3008     // Constant Mask - select 1st/2nd argument lane based on top bit of mask.
3009     if (auto *ConstantMask = dyn_cast<ConstantDataVector>(Mask)) {
3010       Constant *NewSelector = getNegativeIsTrueBoolVec(ConstantMask);
3011       return SelectInst::Create(NewSelector, Op1, Op0, "blendv");
3012     }
3013 
3014     // Convert to a vector select if we can bypass casts and find a boolean
3015     // vector condition value.
3016     Value *BoolVec;
3017     Mask = peekThroughBitcast(Mask);
3018     if (match(Mask, m_SExt(m_Value(BoolVec))) &&
3019         BoolVec->getType()->isVectorTy() &&
3020         BoolVec->getType()->getScalarSizeInBits() == 1) {
3021       assert(Mask->getType()->getPrimitiveSizeInBits() ==
3022              II->getType()->getPrimitiveSizeInBits() &&
3023              "Not expecting mask and operands with different sizes");
3024 
3025       unsigned NumMaskElts = Mask->getType()->getVectorNumElements();
3026       unsigned NumOperandElts = II->getType()->getVectorNumElements();
3027       if (NumMaskElts == NumOperandElts)
3028         return SelectInst::Create(BoolVec, Op1, Op0);
3029 
3030       // If the mask has less elements than the operands, each mask bit maps to
3031       // multiple elements of the operands. Bitcast back and forth.
3032       if (NumMaskElts < NumOperandElts) {
3033         Value *CastOp0 = Builder.CreateBitCast(Op0, Mask->getType());
3034         Value *CastOp1 = Builder.CreateBitCast(Op1, Mask->getType());
3035         Value *Sel = Builder.CreateSelect(BoolVec, CastOp1, CastOp0);
3036         return new BitCastInst(Sel, II->getType());
3037       }
3038     }
3039 
3040     break;
3041   }
3042 
3043   case Intrinsic::x86_ssse3_pshuf_b_128:
3044   case Intrinsic::x86_avx2_pshuf_b:
3045   case Intrinsic::x86_avx512_pshuf_b_512:
3046     if (Value *V = simplifyX86pshufb(*II, Builder))
3047       return replaceInstUsesWith(*II, V);
3048     break;
3049 
3050   case Intrinsic::x86_avx_vpermilvar_ps:
3051   case Intrinsic::x86_avx_vpermilvar_ps_256:
3052   case Intrinsic::x86_avx512_vpermilvar_ps_512:
3053   case Intrinsic::x86_avx_vpermilvar_pd:
3054   case Intrinsic::x86_avx_vpermilvar_pd_256:
3055   case Intrinsic::x86_avx512_vpermilvar_pd_512:
3056     if (Value *V = simplifyX86vpermilvar(*II, Builder))
3057       return replaceInstUsesWith(*II, V);
3058     break;
3059 
3060   case Intrinsic::x86_avx2_permd:
3061   case Intrinsic::x86_avx2_permps:
3062   case Intrinsic::x86_avx512_permvar_df_256:
3063   case Intrinsic::x86_avx512_permvar_df_512:
3064   case Intrinsic::x86_avx512_permvar_di_256:
3065   case Intrinsic::x86_avx512_permvar_di_512:
3066   case Intrinsic::x86_avx512_permvar_hi_128:
3067   case Intrinsic::x86_avx512_permvar_hi_256:
3068   case Intrinsic::x86_avx512_permvar_hi_512:
3069   case Intrinsic::x86_avx512_permvar_qi_128:
3070   case Intrinsic::x86_avx512_permvar_qi_256:
3071   case Intrinsic::x86_avx512_permvar_qi_512:
3072   case Intrinsic::x86_avx512_permvar_sf_512:
3073   case Intrinsic::x86_avx512_permvar_si_512:
3074     if (Value *V = simplifyX86vpermv(*II, Builder))
3075       return replaceInstUsesWith(*II, V);
3076     break;
3077 
3078   case Intrinsic::x86_avx_maskload_ps:
3079   case Intrinsic::x86_avx_maskload_pd:
3080   case Intrinsic::x86_avx_maskload_ps_256:
3081   case Intrinsic::x86_avx_maskload_pd_256:
3082   case Intrinsic::x86_avx2_maskload_d:
3083   case Intrinsic::x86_avx2_maskload_q:
3084   case Intrinsic::x86_avx2_maskload_d_256:
3085   case Intrinsic::x86_avx2_maskload_q_256:
3086     if (Instruction *I = simplifyX86MaskedLoad(*II, *this))
3087       return I;
3088     break;
3089 
3090   case Intrinsic::x86_sse2_maskmov_dqu:
3091   case Intrinsic::x86_avx_maskstore_ps:
3092   case Intrinsic::x86_avx_maskstore_pd:
3093   case Intrinsic::x86_avx_maskstore_ps_256:
3094   case Intrinsic::x86_avx_maskstore_pd_256:
3095   case Intrinsic::x86_avx2_maskstore_d:
3096   case Intrinsic::x86_avx2_maskstore_q:
3097   case Intrinsic::x86_avx2_maskstore_d_256:
3098   case Intrinsic::x86_avx2_maskstore_q_256:
3099     if (simplifyX86MaskedStore(*II, *this))
3100       return nullptr;
3101     break;
3102 
3103   case Intrinsic::x86_xop_vpcomb:
3104   case Intrinsic::x86_xop_vpcomd:
3105   case Intrinsic::x86_xop_vpcomq:
3106   case Intrinsic::x86_xop_vpcomw:
3107     if (Value *V = simplifyX86vpcom(*II, Builder, true))
3108       return replaceInstUsesWith(*II, V);
3109     break;
3110 
3111   case Intrinsic::x86_xop_vpcomub:
3112   case Intrinsic::x86_xop_vpcomud:
3113   case Intrinsic::x86_xop_vpcomuq:
3114   case Intrinsic::x86_xop_vpcomuw:
3115     if (Value *V = simplifyX86vpcom(*II, Builder, false))
3116       return replaceInstUsesWith(*II, V);
3117     break;
3118 
3119   case Intrinsic::ppc_altivec_vperm:
3120     // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
3121     // Note that ppc_altivec_vperm has a big-endian bias, so when creating
3122     // a vectorshuffle for little endian, we must undo the transformation
3123     // performed on vec_perm in altivec.h.  That is, we must complement
3124     // the permutation mask with respect to 31 and reverse the order of
3125     // V1 and V2.
3126     if (Constant *Mask = dyn_cast<Constant>(II->getArgOperand(2))) {
3127       assert(Mask->getType()->getVectorNumElements() == 16 &&
3128              "Bad type for intrinsic!");
3129 
3130       // Check that all of the elements are integer constants or undefs.
3131       bool AllEltsOk = true;
3132       for (unsigned i = 0; i != 16; ++i) {
3133         Constant *Elt = Mask->getAggregateElement(i);
3134         if (!Elt || !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) {
3135           AllEltsOk = false;
3136           break;
3137         }
3138       }
3139 
3140       if (AllEltsOk) {
3141         // Cast the input vectors to byte vectors.
3142         Value *Op0 = Builder.CreateBitCast(II->getArgOperand(0),
3143                                            Mask->getType());
3144         Value *Op1 = Builder.CreateBitCast(II->getArgOperand(1),
3145                                            Mask->getType());
3146         Value *Result = UndefValue::get(Op0->getType());
3147 
3148         // Only extract each element once.
3149         Value *ExtractedElts[32];
3150         memset(ExtractedElts, 0, sizeof(ExtractedElts));
3151 
3152         for (unsigned i = 0; i != 16; ++i) {
3153           if (isa<UndefValue>(Mask->getAggregateElement(i)))
3154             continue;
3155           unsigned Idx =
3156             cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue();
3157           Idx &= 31;  // Match the hardware behavior.
3158           if (DL.isLittleEndian())
3159             Idx = 31 - Idx;
3160 
3161           if (!ExtractedElts[Idx]) {
3162             Value *Op0ToUse = (DL.isLittleEndian()) ? Op1 : Op0;
3163             Value *Op1ToUse = (DL.isLittleEndian()) ? Op0 : Op1;
3164             ExtractedElts[Idx] =
3165               Builder.CreateExtractElement(Idx < 16 ? Op0ToUse : Op1ToUse,
3166                                            Builder.getInt32(Idx&15));
3167           }
3168 
3169           // Insert this value into the result vector.
3170           Result = Builder.CreateInsertElement(Result, ExtractedElts[Idx],
3171                                                Builder.getInt32(i));
3172         }
3173         return CastInst::Create(Instruction::BitCast, Result, CI.getType());
3174       }
3175     }
3176     break;
3177 
3178   case Intrinsic::arm_neon_vld1: {
3179     unsigned MemAlign = getKnownAlignment(II->getArgOperand(0),
3180                                           DL, II, &AC, &DT);
3181     if (Value *V = simplifyNeonVld1(*II, MemAlign, Builder))
3182       return replaceInstUsesWith(*II, V);
3183     break;
3184   }
3185 
3186   case Intrinsic::arm_neon_vld2:
3187   case Intrinsic::arm_neon_vld3:
3188   case Intrinsic::arm_neon_vld4:
3189   case Intrinsic::arm_neon_vld2lane:
3190   case Intrinsic::arm_neon_vld3lane:
3191   case Intrinsic::arm_neon_vld4lane:
3192   case Intrinsic::arm_neon_vst1:
3193   case Intrinsic::arm_neon_vst2:
3194   case Intrinsic::arm_neon_vst3:
3195   case Intrinsic::arm_neon_vst4:
3196   case Intrinsic::arm_neon_vst2lane:
3197   case Intrinsic::arm_neon_vst3lane:
3198   case Intrinsic::arm_neon_vst4lane: {
3199     unsigned MemAlign =
3200         getKnownAlignment(II->getArgOperand(0), DL, II, &AC, &DT);
3201     unsigned AlignArg = II->getNumArgOperands() - 1;
3202     ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg));
3203     if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) {
3204       II->setArgOperand(AlignArg,
3205                         ConstantInt::get(Type::getInt32Ty(II->getContext()),
3206                                          MemAlign, false));
3207       return II;
3208     }
3209     break;
3210   }
3211 
3212   case Intrinsic::arm_neon_vtbl1:
3213   case Intrinsic::aarch64_neon_tbl1:
3214     if (Value *V = simplifyNeonTbl1(*II, Builder))
3215       return replaceInstUsesWith(*II, V);
3216     break;
3217 
3218   case Intrinsic::arm_neon_vmulls:
3219   case Intrinsic::arm_neon_vmullu:
3220   case Intrinsic::aarch64_neon_smull:
3221   case Intrinsic::aarch64_neon_umull: {
3222     Value *Arg0 = II->getArgOperand(0);
3223     Value *Arg1 = II->getArgOperand(1);
3224 
3225     // Handle mul by zero first:
3226     if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
3227       return replaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
3228     }
3229 
3230     // Check for constant LHS & RHS - in this case we just simplify.
3231     bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu ||
3232                  II->getIntrinsicID() == Intrinsic::aarch64_neon_umull);
3233     VectorType *NewVT = cast<VectorType>(II->getType());
3234     if (Constant *CV0 = dyn_cast<Constant>(Arg0)) {
3235       if (Constant *CV1 = dyn_cast<Constant>(Arg1)) {
3236         CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext);
3237         CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext);
3238 
3239         return replaceInstUsesWith(CI, ConstantExpr::getMul(CV0, CV1));
3240       }
3241 
3242       // Couldn't simplify - canonicalize constant to the RHS.
3243       std::swap(Arg0, Arg1);
3244     }
3245 
3246     // Handle mul by one:
3247     if (Constant *CV1 = dyn_cast<Constant>(Arg1))
3248       if (ConstantInt *Splat =
3249               dyn_cast_or_null<ConstantInt>(CV1->getSplatValue()))
3250         if (Splat->isOne())
3251           return CastInst::CreateIntegerCast(Arg0, II->getType(),
3252                                              /*isSigned=*/!Zext);
3253 
3254     break;
3255   }
3256   case Intrinsic::arm_neon_aesd:
3257   case Intrinsic::arm_neon_aese:
3258   case Intrinsic::aarch64_crypto_aesd:
3259   case Intrinsic::aarch64_crypto_aese: {
3260     Value *DataArg = II->getArgOperand(0);
3261     Value *KeyArg  = II->getArgOperand(1);
3262 
3263     // Try to use the builtin XOR in AESE and AESD to eliminate a prior XOR
3264     Value *Data, *Key;
3265     if (match(KeyArg, m_ZeroInt()) &&
3266         match(DataArg, m_Xor(m_Value(Data), m_Value(Key)))) {
3267       II->setArgOperand(0, Data);
3268       II->setArgOperand(1, Key);
3269       return II;
3270     }
3271     break;
3272   }
3273   case Intrinsic::amdgcn_rcp: {
3274     Value *Src = II->getArgOperand(0);
3275 
3276     // TODO: Move to ConstantFolding/InstSimplify?
3277     if (isa<UndefValue>(Src))
3278       return replaceInstUsesWith(CI, Src);
3279 
3280     if (const ConstantFP *C = dyn_cast<ConstantFP>(Src)) {
3281       const APFloat &ArgVal = C->getValueAPF();
3282       APFloat Val(ArgVal.getSemantics(), 1.0);
3283       APFloat::opStatus Status = Val.divide(ArgVal,
3284                                             APFloat::rmNearestTiesToEven);
3285       // Only do this if it was exact and therefore not dependent on the
3286       // rounding mode.
3287       if (Status == APFloat::opOK)
3288         return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(), Val));
3289     }
3290 
3291     break;
3292   }
3293   case Intrinsic::amdgcn_rsq: {
3294     Value *Src = II->getArgOperand(0);
3295 
3296     // TODO: Move to ConstantFolding/InstSimplify?
3297     if (isa<UndefValue>(Src))
3298       return replaceInstUsesWith(CI, Src);
3299     break;
3300   }
3301   case Intrinsic::amdgcn_frexp_mant:
3302   case Intrinsic::amdgcn_frexp_exp: {
3303     Value *Src = II->getArgOperand(0);
3304     if (const ConstantFP *C = dyn_cast<ConstantFP>(Src)) {
3305       int Exp;
3306       APFloat Significand = frexp(C->getValueAPF(), Exp,
3307                                   APFloat::rmNearestTiesToEven);
3308 
3309       if (II->getIntrinsicID() == Intrinsic::amdgcn_frexp_mant) {
3310         return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(),
3311                                                        Significand));
3312       }
3313 
3314       // Match instruction special case behavior.
3315       if (Exp == APFloat::IEK_NaN || Exp == APFloat::IEK_Inf)
3316         Exp = 0;
3317 
3318       return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Exp));
3319     }
3320 
3321     if (isa<UndefValue>(Src))
3322       return replaceInstUsesWith(CI, UndefValue::get(II->getType()));
3323 
3324     break;
3325   }
3326   case Intrinsic::amdgcn_class: {
3327     enum  {
3328       S_NAN = 1 << 0,        // Signaling NaN
3329       Q_NAN = 1 << 1,        // Quiet NaN
3330       N_INFINITY = 1 << 2,   // Negative infinity
3331       N_NORMAL = 1 << 3,     // Negative normal
3332       N_SUBNORMAL = 1 << 4,  // Negative subnormal
3333       N_ZERO = 1 << 5,       // Negative zero
3334       P_ZERO = 1 << 6,       // Positive zero
3335       P_SUBNORMAL = 1 << 7,  // Positive subnormal
3336       P_NORMAL = 1 << 8,     // Positive normal
3337       P_INFINITY = 1 << 9    // Positive infinity
3338     };
3339 
3340     const uint32_t FullMask = S_NAN | Q_NAN | N_INFINITY | N_NORMAL |
3341       N_SUBNORMAL | N_ZERO | P_ZERO | P_SUBNORMAL | P_NORMAL | P_INFINITY;
3342 
3343     Value *Src0 = II->getArgOperand(0);
3344     Value *Src1 = II->getArgOperand(1);
3345     const ConstantInt *CMask = dyn_cast<ConstantInt>(Src1);
3346     if (!CMask) {
3347       if (isa<UndefValue>(Src0))
3348         return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3349 
3350       if (isa<UndefValue>(Src1))
3351         return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false));
3352       break;
3353     }
3354 
3355     uint32_t Mask = CMask->getZExtValue();
3356 
3357     // If all tests are made, it doesn't matter what the value is.
3358     if ((Mask & FullMask) == FullMask)
3359       return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), true));
3360 
3361     if ((Mask & FullMask) == 0)
3362       return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false));
3363 
3364     if (Mask == (S_NAN | Q_NAN)) {
3365       // Equivalent of isnan. Replace with standard fcmp.
3366       Value *FCmp = Builder.CreateFCmpUNO(Src0, Src0);
3367       FCmp->takeName(II);
3368       return replaceInstUsesWith(*II, FCmp);
3369     }
3370 
3371     if (Mask == (N_ZERO | P_ZERO)) {
3372       // Equivalent of == 0.
3373       Value *FCmp = Builder.CreateFCmpOEQ(
3374         Src0, ConstantFP::get(Src0->getType(), 0.0));
3375 
3376       FCmp->takeName(II);
3377       return replaceInstUsesWith(*II, FCmp);
3378     }
3379 
3380     // fp_class (nnan x), qnan|snan|other -> fp_class (nnan x), other
3381     if (((Mask & S_NAN) || (Mask & Q_NAN)) && isKnownNeverNaN(Src0, &TLI)) {
3382       II->setArgOperand(1, ConstantInt::get(Src1->getType(),
3383                                             Mask & ~(S_NAN | Q_NAN)));
3384       return II;
3385     }
3386 
3387     const ConstantFP *CVal = dyn_cast<ConstantFP>(Src0);
3388     if (!CVal) {
3389       if (isa<UndefValue>(Src0))
3390         return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3391 
3392       // Clamp mask to used bits
3393       if ((Mask & FullMask) != Mask) {
3394         CallInst *NewCall = Builder.CreateCall(II->getCalledFunction(),
3395           { Src0, ConstantInt::get(Src1->getType(), Mask & FullMask) }
3396         );
3397 
3398         NewCall->takeName(II);
3399         return replaceInstUsesWith(*II, NewCall);
3400       }
3401 
3402       break;
3403     }
3404 
3405     const APFloat &Val = CVal->getValueAPF();
3406 
3407     bool Result =
3408       ((Mask & S_NAN) && Val.isNaN() && Val.isSignaling()) ||
3409       ((Mask & Q_NAN) && Val.isNaN() && !Val.isSignaling()) ||
3410       ((Mask & N_INFINITY) && Val.isInfinity() && Val.isNegative()) ||
3411       ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) ||
3412       ((Mask & N_SUBNORMAL) && Val.isDenormal() && Val.isNegative()) ||
3413       ((Mask & N_ZERO) && Val.isZero() && Val.isNegative()) ||
3414       ((Mask & P_ZERO) && Val.isZero() && !Val.isNegative()) ||
3415       ((Mask & P_SUBNORMAL) && Val.isDenormal() && !Val.isNegative()) ||
3416       ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) ||
3417       ((Mask & P_INFINITY) && Val.isInfinity() && !Val.isNegative());
3418 
3419     return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), Result));
3420   }
3421   case Intrinsic::amdgcn_cvt_pkrtz: {
3422     Value *Src0 = II->getArgOperand(0);
3423     Value *Src1 = II->getArgOperand(1);
3424     if (const ConstantFP *C0 = dyn_cast<ConstantFP>(Src0)) {
3425       if (const ConstantFP *C1 = dyn_cast<ConstantFP>(Src1)) {
3426         const fltSemantics &HalfSem
3427           = II->getType()->getScalarType()->getFltSemantics();
3428         bool LosesInfo;
3429         APFloat Val0 = C0->getValueAPF();
3430         APFloat Val1 = C1->getValueAPF();
3431         Val0.convert(HalfSem, APFloat::rmTowardZero, &LosesInfo);
3432         Val1.convert(HalfSem, APFloat::rmTowardZero, &LosesInfo);
3433 
3434         Constant *Folded = ConstantVector::get({
3435             ConstantFP::get(II->getContext(), Val0),
3436             ConstantFP::get(II->getContext(), Val1) });
3437         return replaceInstUsesWith(*II, Folded);
3438       }
3439     }
3440 
3441     if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1))
3442       return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3443 
3444     break;
3445   }
3446   case Intrinsic::amdgcn_cvt_pknorm_i16:
3447   case Intrinsic::amdgcn_cvt_pknorm_u16:
3448   case Intrinsic::amdgcn_cvt_pk_i16:
3449   case Intrinsic::amdgcn_cvt_pk_u16: {
3450     Value *Src0 = II->getArgOperand(0);
3451     Value *Src1 = II->getArgOperand(1);
3452 
3453     if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1))
3454       return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3455 
3456     break;
3457   }
3458   case Intrinsic::amdgcn_ubfe:
3459   case Intrinsic::amdgcn_sbfe: {
3460     // Decompose simple cases into standard shifts.
3461     Value *Src = II->getArgOperand(0);
3462     if (isa<UndefValue>(Src))
3463       return replaceInstUsesWith(*II, Src);
3464 
3465     unsigned Width;
3466     Type *Ty = II->getType();
3467     unsigned IntSize = Ty->getIntegerBitWidth();
3468 
3469     ConstantInt *CWidth = dyn_cast<ConstantInt>(II->getArgOperand(2));
3470     if (CWidth) {
3471       Width = CWidth->getZExtValue();
3472       if ((Width & (IntSize - 1)) == 0)
3473         return replaceInstUsesWith(*II, ConstantInt::getNullValue(Ty));
3474 
3475       if (Width >= IntSize) {
3476         // Hardware ignores high bits, so remove those.
3477         II->setArgOperand(2, ConstantInt::get(CWidth->getType(),
3478                                               Width & (IntSize - 1)));
3479         return II;
3480       }
3481     }
3482 
3483     unsigned Offset;
3484     ConstantInt *COffset = dyn_cast<ConstantInt>(II->getArgOperand(1));
3485     if (COffset) {
3486       Offset = COffset->getZExtValue();
3487       if (Offset >= IntSize) {
3488         II->setArgOperand(1, ConstantInt::get(COffset->getType(),
3489                                               Offset & (IntSize - 1)));
3490         return II;
3491       }
3492     }
3493 
3494     bool Signed = II->getIntrinsicID() == Intrinsic::amdgcn_sbfe;
3495 
3496     if (!CWidth || !COffset)
3497       break;
3498 
3499     // The case of Width == 0 is handled above, which makes this tranformation
3500     // safe.  If Width == 0, then the ashr and lshr instructions become poison
3501     // value since the shift amount would be equal to the bit size.
3502     assert(Width != 0);
3503 
3504     // TODO: This allows folding to undef when the hardware has specific
3505     // behavior?
3506     if (Offset + Width < IntSize) {
3507       Value *Shl = Builder.CreateShl(Src, IntSize - Offset - Width);
3508       Value *RightShift = Signed ? Builder.CreateAShr(Shl, IntSize - Width)
3509                                  : Builder.CreateLShr(Shl, IntSize - Width);
3510       RightShift->takeName(II);
3511       return replaceInstUsesWith(*II, RightShift);
3512     }
3513 
3514     Value *RightShift = Signed ? Builder.CreateAShr(Src, Offset)
3515                                : Builder.CreateLShr(Src, Offset);
3516 
3517     RightShift->takeName(II);
3518     return replaceInstUsesWith(*II, RightShift);
3519   }
3520   case Intrinsic::amdgcn_exp:
3521   case Intrinsic::amdgcn_exp_compr: {
3522     ConstantInt *En = dyn_cast<ConstantInt>(II->getArgOperand(1));
3523     if (!En) // Illegal.
3524       break;
3525 
3526     unsigned EnBits = En->getZExtValue();
3527     if (EnBits == 0xf)
3528       break; // All inputs enabled.
3529 
3530     bool IsCompr = II->getIntrinsicID() == Intrinsic::amdgcn_exp_compr;
3531     bool Changed = false;
3532     for (int I = 0; I < (IsCompr ? 2 : 4); ++I) {
3533       if ((!IsCompr && (EnBits & (1 << I)) == 0) ||
3534           (IsCompr && ((EnBits & (0x3 << (2 * I))) == 0))) {
3535         Value *Src = II->getArgOperand(I + 2);
3536         if (!isa<UndefValue>(Src)) {
3537           II->setArgOperand(I + 2, UndefValue::get(Src->getType()));
3538           Changed = true;
3539         }
3540       }
3541     }
3542 
3543     if (Changed)
3544       return II;
3545 
3546     break;
3547   }
3548   case Intrinsic::amdgcn_fmed3: {
3549     // Note this does not preserve proper sNaN behavior if IEEE-mode is enabled
3550     // for the shader.
3551 
3552     Value *Src0 = II->getArgOperand(0);
3553     Value *Src1 = II->getArgOperand(1);
3554     Value *Src2 = II->getArgOperand(2);
3555 
3556     // Checking for NaN before canonicalization provides better fidelity when
3557     // mapping other operations onto fmed3 since the order of operands is
3558     // unchanged.
3559     CallInst *NewCall = nullptr;
3560     if (match(Src0, m_NaN()) || isa<UndefValue>(Src0)) {
3561       NewCall = Builder.CreateMinNum(Src1, Src2);
3562     } else if (match(Src1, m_NaN()) || isa<UndefValue>(Src1)) {
3563       NewCall = Builder.CreateMinNum(Src0, Src2);
3564     } else if (match(Src2, m_NaN()) || isa<UndefValue>(Src2)) {
3565       NewCall = Builder.CreateMaxNum(Src0, Src1);
3566     }
3567 
3568     if (NewCall) {
3569       NewCall->copyFastMathFlags(II);
3570       NewCall->takeName(II);
3571       return replaceInstUsesWith(*II, NewCall);
3572     }
3573 
3574     bool Swap = false;
3575     // Canonicalize constants to RHS operands.
3576     //
3577     // fmed3(c0, x, c1) -> fmed3(x, c0, c1)
3578     if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
3579       std::swap(Src0, Src1);
3580       Swap = true;
3581     }
3582 
3583     if (isa<Constant>(Src1) && !isa<Constant>(Src2)) {
3584       std::swap(Src1, Src2);
3585       Swap = true;
3586     }
3587 
3588     if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
3589       std::swap(Src0, Src1);
3590       Swap = true;
3591     }
3592 
3593     if (Swap) {
3594       II->setArgOperand(0, Src0);
3595       II->setArgOperand(1, Src1);
3596       II->setArgOperand(2, Src2);
3597       return II;
3598     }
3599 
3600     if (const ConstantFP *C0 = dyn_cast<ConstantFP>(Src0)) {
3601       if (const ConstantFP *C1 = dyn_cast<ConstantFP>(Src1)) {
3602         if (const ConstantFP *C2 = dyn_cast<ConstantFP>(Src2)) {
3603           APFloat Result = fmed3AMDGCN(C0->getValueAPF(), C1->getValueAPF(),
3604                                        C2->getValueAPF());
3605           return replaceInstUsesWith(*II,
3606             ConstantFP::get(Builder.getContext(), Result));
3607         }
3608       }
3609     }
3610 
3611     break;
3612   }
3613   case Intrinsic::amdgcn_icmp:
3614   case Intrinsic::amdgcn_fcmp: {
3615     const ConstantInt *CC = dyn_cast<ConstantInt>(II->getArgOperand(2));
3616     if (!CC)
3617       break;
3618 
3619     // Guard against invalid arguments.
3620     int64_t CCVal = CC->getZExtValue();
3621     bool IsInteger = II->getIntrinsicID() == Intrinsic::amdgcn_icmp;
3622     if ((IsInteger && (CCVal < CmpInst::FIRST_ICMP_PREDICATE ||
3623                        CCVal > CmpInst::LAST_ICMP_PREDICATE)) ||
3624         (!IsInteger && (CCVal < CmpInst::FIRST_FCMP_PREDICATE ||
3625                         CCVal > CmpInst::LAST_FCMP_PREDICATE)))
3626       break;
3627 
3628     Value *Src0 = II->getArgOperand(0);
3629     Value *Src1 = II->getArgOperand(1);
3630 
3631     if (auto *CSrc0 = dyn_cast<Constant>(Src0)) {
3632       if (auto *CSrc1 = dyn_cast<Constant>(Src1)) {
3633         Constant *CCmp = ConstantExpr::getCompare(CCVal, CSrc0, CSrc1);
3634         if (CCmp->isNullValue()) {
3635           return replaceInstUsesWith(
3636               *II, ConstantExpr::getSExt(CCmp, II->getType()));
3637         }
3638 
3639         // The result of V_ICMP/V_FCMP assembly instructions (which this
3640         // intrinsic exposes) is one bit per thread, masked with the EXEC
3641         // register (which contains the bitmask of live threads). So a
3642         // comparison that always returns true is the same as a read of the
3643         // EXEC register.
3644         Value *NewF = Intrinsic::getDeclaration(
3645             II->getModule(), Intrinsic::read_register, II->getType());
3646         Metadata *MDArgs[] = {MDString::get(II->getContext(), "exec")};
3647         MDNode *MD = MDNode::get(II->getContext(), MDArgs);
3648         Value *Args[] = {MetadataAsValue::get(II->getContext(), MD)};
3649         CallInst *NewCall = Builder.CreateCall(NewF, Args);
3650         NewCall->addAttribute(AttributeList::FunctionIndex,
3651                               Attribute::Convergent);
3652         NewCall->takeName(II);
3653         return replaceInstUsesWith(*II, NewCall);
3654       }
3655 
3656       // Canonicalize constants to RHS.
3657       CmpInst::Predicate SwapPred
3658         = CmpInst::getSwappedPredicate(static_cast<CmpInst::Predicate>(CCVal));
3659       II->setArgOperand(0, Src1);
3660       II->setArgOperand(1, Src0);
3661       II->setArgOperand(2, ConstantInt::get(CC->getType(),
3662                                             static_cast<int>(SwapPred)));
3663       return II;
3664     }
3665 
3666     if (CCVal != CmpInst::ICMP_EQ && CCVal != CmpInst::ICMP_NE)
3667       break;
3668 
3669     // Canonicalize compare eq with true value to compare != 0
3670     // llvm.amdgcn.icmp(zext (i1 x), 1, eq)
3671     //   -> llvm.amdgcn.icmp(zext (i1 x), 0, ne)
3672     // llvm.amdgcn.icmp(sext (i1 x), -1, eq)
3673     //   -> llvm.amdgcn.icmp(sext (i1 x), 0, ne)
3674     Value *ExtSrc;
3675     if (CCVal == CmpInst::ICMP_EQ &&
3676         ((match(Src1, m_One()) && match(Src0, m_ZExt(m_Value(ExtSrc)))) ||
3677          (match(Src1, m_AllOnes()) && match(Src0, m_SExt(m_Value(ExtSrc))))) &&
3678         ExtSrc->getType()->isIntegerTy(1)) {
3679       II->setArgOperand(1, ConstantInt::getNullValue(Src1->getType()));
3680       II->setArgOperand(2, ConstantInt::get(CC->getType(), CmpInst::ICMP_NE));
3681       return II;
3682     }
3683 
3684     CmpInst::Predicate SrcPred;
3685     Value *SrcLHS;
3686     Value *SrcRHS;
3687 
3688     // Fold compare eq/ne with 0 from a compare result as the predicate to the
3689     // intrinsic. The typical use is a wave vote function in the library, which
3690     // will be fed from a user code condition compared with 0. Fold in the
3691     // redundant compare.
3692 
3693     // llvm.amdgcn.icmp([sz]ext ([if]cmp pred a, b), 0, ne)
3694     //   -> llvm.amdgcn.[if]cmp(a, b, pred)
3695     //
3696     // llvm.amdgcn.icmp([sz]ext ([if]cmp pred a, b), 0, eq)
3697     //   -> llvm.amdgcn.[if]cmp(a, b, inv pred)
3698     if (match(Src1, m_Zero()) &&
3699         match(Src0,
3700               m_ZExtOrSExt(m_Cmp(SrcPred, m_Value(SrcLHS), m_Value(SrcRHS))))) {
3701       if (CCVal == CmpInst::ICMP_EQ)
3702         SrcPred = CmpInst::getInversePredicate(SrcPred);
3703 
3704       Intrinsic::ID NewIID = CmpInst::isFPPredicate(SrcPred) ?
3705         Intrinsic::amdgcn_fcmp : Intrinsic::amdgcn_icmp;
3706 
3707       Type *Ty = SrcLHS->getType();
3708       if (auto *CmpType = dyn_cast<IntegerType>(Ty)) {
3709         // Promote to next legal integer type.
3710         unsigned Width = CmpType->getBitWidth();
3711         unsigned NewWidth = Width;
3712         if (Width <= 16)
3713           NewWidth = 16;
3714         else if (Width <= 32)
3715           NewWidth = 32;
3716         else if (Width <= 64)
3717           NewWidth = 64;
3718         else if (Width > 64)
3719           break; // Can't handle this.
3720 
3721         if (Width != NewWidth) {
3722           IntegerType *CmpTy = Builder.getIntNTy(NewWidth);
3723           if (CmpInst::isSigned(SrcPred)) {
3724             SrcLHS = Builder.CreateSExt(SrcLHS, CmpTy);
3725             SrcRHS = Builder.CreateSExt(SrcRHS, CmpTy);
3726           } else {
3727             SrcLHS = Builder.CreateZExt(SrcLHS, CmpTy);
3728             SrcRHS = Builder.CreateZExt(SrcRHS, CmpTy);
3729           }
3730         }
3731       } else if (!Ty->isFloatTy() && !Ty->isDoubleTy() && !Ty->isHalfTy())
3732         break;
3733 
3734       Value *NewF = Intrinsic::getDeclaration(II->getModule(), NewIID,
3735                                               SrcLHS->getType());
3736       Value *Args[] = { SrcLHS, SrcRHS,
3737                         ConstantInt::get(CC->getType(), SrcPred) };
3738       CallInst *NewCall = Builder.CreateCall(NewF, Args);
3739       NewCall->takeName(II);
3740       return replaceInstUsesWith(*II, NewCall);
3741     }
3742 
3743     break;
3744   }
3745   case Intrinsic::amdgcn_wqm_vote: {
3746     // wqm_vote is identity when the argument is constant.
3747     if (!isa<Constant>(II->getArgOperand(0)))
3748       break;
3749 
3750     return replaceInstUsesWith(*II, II->getArgOperand(0));
3751   }
3752   case Intrinsic::amdgcn_kill: {
3753     const ConstantInt *C = dyn_cast<ConstantInt>(II->getArgOperand(0));
3754     if (!C || !C->getZExtValue())
3755       break;
3756 
3757     // amdgcn.kill(i1 1) is a no-op
3758     return eraseInstFromFunction(CI);
3759   }
3760   case Intrinsic::amdgcn_update_dpp: {
3761     Value *Old = II->getArgOperand(0);
3762 
3763     auto BC = dyn_cast<ConstantInt>(II->getArgOperand(5));
3764     auto RM = dyn_cast<ConstantInt>(II->getArgOperand(3));
3765     auto BM = dyn_cast<ConstantInt>(II->getArgOperand(4));
3766     if (!BC || !RM || !BM ||
3767         BC->isZeroValue() ||
3768         RM->getZExtValue() != 0xF ||
3769         BM->getZExtValue() != 0xF ||
3770         isa<UndefValue>(Old))
3771       break;
3772 
3773     // If bound_ctrl = 1, row mask = bank mask = 0xf we can omit old value.
3774     II->setOperand(0, UndefValue::get(Old->getType()));
3775     return II;
3776   }
3777   case Intrinsic::stackrestore: {
3778     // If the save is right next to the restore, remove the restore.  This can
3779     // happen when variable allocas are DCE'd.
3780     if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
3781       if (SS->getIntrinsicID() == Intrinsic::stacksave) {
3782         // Skip over debug info.
3783         if (SS->getNextNonDebugInstruction() == II) {
3784           return eraseInstFromFunction(CI);
3785         }
3786       }
3787     }
3788 
3789     // Scan down this block to see if there is another stack restore in the
3790     // same block without an intervening call/alloca.
3791     BasicBlock::iterator BI(II);
3792     Instruction *TI = II->getParent()->getTerminator();
3793     bool CannotRemove = false;
3794     for (++BI; &*BI != TI; ++BI) {
3795       if (isa<AllocaInst>(BI)) {
3796         CannotRemove = true;
3797         break;
3798       }
3799       if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
3800         if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
3801           // If there is a stackrestore below this one, remove this one.
3802           if (II->getIntrinsicID() == Intrinsic::stackrestore)
3803             return eraseInstFromFunction(CI);
3804 
3805           // Bail if we cross over an intrinsic with side effects, such as
3806           // llvm.stacksave, llvm.read_register, or llvm.setjmp.
3807           if (II->mayHaveSideEffects()) {
3808             CannotRemove = true;
3809             break;
3810           }
3811         } else {
3812           // If we found a non-intrinsic call, we can't remove the stack
3813           // restore.
3814           CannotRemove = true;
3815           break;
3816         }
3817       }
3818     }
3819 
3820     // If the stack restore is in a return, resume, or unwind block and if there
3821     // are no allocas or calls between the restore and the return, nuke the
3822     // restore.
3823     if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI)))
3824       return eraseInstFromFunction(CI);
3825     break;
3826   }
3827   case Intrinsic::lifetime_start:
3828     // Asan needs to poison memory to detect invalid access which is possible
3829     // even for empty lifetime range.
3830     if (II->getFunction()->hasFnAttribute(Attribute::SanitizeAddress) ||
3831         II->getFunction()->hasFnAttribute(Attribute::SanitizeHWAddress))
3832       break;
3833 
3834     if (removeTriviallyEmptyRange(*II, Intrinsic::lifetime_start,
3835                                   Intrinsic::lifetime_end, *this))
3836       return nullptr;
3837     break;
3838   case Intrinsic::assume: {
3839     Value *IIOperand = II->getArgOperand(0);
3840     // Remove an assume if it is followed by an identical assume.
3841     // TODO: Do we need this? Unless there are conflicting assumptions, the
3842     // computeKnownBits(IIOperand) below here eliminates redundant assumes.
3843     Instruction *Next = II->getNextNonDebugInstruction();
3844     if (match(Next, m_Intrinsic<Intrinsic::assume>(m_Specific(IIOperand))))
3845       return eraseInstFromFunction(CI);
3846 
3847     // Canonicalize assume(a && b) -> assume(a); assume(b);
3848     // Note: New assumption intrinsics created here are registered by
3849     // the InstCombineIRInserter object.
3850     Value *AssumeIntrinsic = II->getCalledValue(), *A, *B;
3851     if (match(IIOperand, m_And(m_Value(A), m_Value(B)))) {
3852       Builder.CreateCall(AssumeIntrinsic, A, II->getName());
3853       Builder.CreateCall(AssumeIntrinsic, B, II->getName());
3854       return eraseInstFromFunction(*II);
3855     }
3856     // assume(!(a || b)) -> assume(!a); assume(!b);
3857     if (match(IIOperand, m_Not(m_Or(m_Value(A), m_Value(B))))) {
3858       Builder.CreateCall(AssumeIntrinsic, Builder.CreateNot(A), II->getName());
3859       Builder.CreateCall(AssumeIntrinsic, Builder.CreateNot(B), II->getName());
3860       return eraseInstFromFunction(*II);
3861     }
3862 
3863     // assume( (load addr) != null ) -> add 'nonnull' metadata to load
3864     // (if assume is valid at the load)
3865     CmpInst::Predicate Pred;
3866     Instruction *LHS;
3867     if (match(IIOperand, m_ICmp(Pred, m_Instruction(LHS), m_Zero())) &&
3868         Pred == ICmpInst::ICMP_NE && LHS->getOpcode() == Instruction::Load &&
3869         LHS->getType()->isPointerTy() &&
3870         isValidAssumeForContext(II, LHS, &DT)) {
3871       MDNode *MD = MDNode::get(II->getContext(), None);
3872       LHS->setMetadata(LLVMContext::MD_nonnull, MD);
3873       return eraseInstFromFunction(*II);
3874 
3875       // TODO: apply nonnull return attributes to calls and invokes
3876       // TODO: apply range metadata for range check patterns?
3877     }
3878 
3879     // If there is a dominating assume with the same condition as this one,
3880     // then this one is redundant, and should be removed.
3881     KnownBits Known(1);
3882     computeKnownBits(IIOperand, Known, 0, II);
3883     if (Known.isAllOnes())
3884       return eraseInstFromFunction(*II);
3885 
3886     // Update the cache of affected values for this assumption (we might be
3887     // here because we just simplified the condition).
3888     AC.updateAffectedValues(II);
3889     break;
3890   }
3891   case Intrinsic::experimental_gc_relocate: {
3892     // Translate facts known about a pointer before relocating into
3893     // facts about the relocate value, while being careful to
3894     // preserve relocation semantics.
3895     Value *DerivedPtr = cast<GCRelocateInst>(II)->getDerivedPtr();
3896 
3897     // Remove the relocation if unused, note that this check is required
3898     // to prevent the cases below from looping forever.
3899     if (II->use_empty())
3900       return eraseInstFromFunction(*II);
3901 
3902     // Undef is undef, even after relocation.
3903     // TODO: provide a hook for this in GCStrategy.  This is clearly legal for
3904     // most practical collectors, but there was discussion in the review thread
3905     // about whether it was legal for all possible collectors.
3906     if (isa<UndefValue>(DerivedPtr))
3907       // Use undef of gc_relocate's type to replace it.
3908       return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3909 
3910     if (auto *PT = dyn_cast<PointerType>(II->getType())) {
3911       // The relocation of null will be null for most any collector.
3912       // TODO: provide a hook for this in GCStrategy.  There might be some
3913       // weird collector this property does not hold for.
3914       if (isa<ConstantPointerNull>(DerivedPtr))
3915         // Use null-pointer of gc_relocate's type to replace it.
3916         return replaceInstUsesWith(*II, ConstantPointerNull::get(PT));
3917 
3918       // isKnownNonNull -> nonnull attribute
3919       if (!II->hasRetAttr(Attribute::NonNull) &&
3920           isKnownNonZero(DerivedPtr, DL, 0, &AC, II, &DT)) {
3921         II->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
3922         return II;
3923       }
3924     }
3925 
3926     // TODO: bitcast(relocate(p)) -> relocate(bitcast(p))
3927     // Canonicalize on the type from the uses to the defs
3928 
3929     // TODO: relocate((gep p, C, C2, ...)) -> gep(relocate(p), C, C2, ...)
3930     break;
3931   }
3932 
3933   case Intrinsic::experimental_guard: {
3934     // Is this guard followed by another guard?  We scan forward over a small
3935     // fixed window of instructions to handle common cases with conditions
3936     // computed between guards.
3937     Instruction *NextInst = II->getNextNode();
3938     for (unsigned i = 0; i < GuardWideningWindow; i++) {
3939       // Note: Using context-free form to avoid compile time blow up
3940       if (!isSafeToSpeculativelyExecute(NextInst))
3941         break;
3942       NextInst = NextInst->getNextNode();
3943     }
3944     Value *NextCond = nullptr;
3945     if (match(NextInst,
3946               m_Intrinsic<Intrinsic::experimental_guard>(m_Value(NextCond)))) {
3947       Value *CurrCond = II->getArgOperand(0);
3948 
3949       // Remove a guard that it is immediately preceded by an identical guard.
3950       if (CurrCond == NextCond)
3951         return eraseInstFromFunction(*NextInst);
3952 
3953       // Otherwise canonicalize guard(a); guard(b) -> guard(a & b).
3954       Instruction* MoveI = II->getNextNode();
3955       while (MoveI != NextInst) {
3956         auto *Temp = MoveI;
3957         MoveI = MoveI->getNextNode();
3958         Temp->moveBefore(II);
3959       }
3960       II->setArgOperand(0, Builder.CreateAnd(CurrCond, NextCond));
3961       return eraseInstFromFunction(*NextInst);
3962     }
3963     break;
3964   }
3965   }
3966   return visitCallSite(II);
3967 }
3968 
3969 // Fence instruction simplification
3970 Instruction *InstCombiner::visitFenceInst(FenceInst &FI) {
3971   // Remove identical consecutive fences.
3972   Instruction *Next = FI.getNextNonDebugInstruction();
3973   if (auto *NFI = dyn_cast<FenceInst>(Next))
3974     if (FI.isIdenticalTo(NFI))
3975       return eraseInstFromFunction(FI);
3976   return nullptr;
3977 }
3978 
3979 // InvokeInst simplification
3980 Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
3981   return visitCallSite(&II);
3982 }
3983 
3984 /// If this cast does not affect the value passed through the varargs area, we
3985 /// can eliminate the use of the cast.
3986 static bool isSafeToEliminateVarargsCast(const CallSite CS,
3987                                          const DataLayout &DL,
3988                                          const CastInst *const CI,
3989                                          const int ix) {
3990   if (!CI->isLosslessCast())
3991     return false;
3992 
3993   // If this is a GC intrinsic, avoid munging types.  We need types for
3994   // statepoint reconstruction in SelectionDAG.
3995   // TODO: This is probably something which should be expanded to all
3996   // intrinsics since the entire point of intrinsics is that
3997   // they are understandable by the optimizer.
3998   if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS))
3999     return false;
4000 
4001   // The size of ByVal or InAlloca arguments is derived from the type, so we
4002   // can't change to a type with a different size.  If the size were
4003   // passed explicitly we could avoid this check.
4004   if (!CS.isByValOrInAllocaArgument(ix))
4005     return true;
4006 
4007   Type* SrcTy =
4008             cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
4009   Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
4010   if (!SrcTy->isSized() || !DstTy->isSized())
4011     return false;
4012   if (DL.getTypeAllocSize(SrcTy) != DL.getTypeAllocSize(DstTy))
4013     return false;
4014   return true;
4015 }
4016 
4017 Instruction *InstCombiner::tryOptimizeCall(CallInst *CI) {
4018   if (!CI->getCalledFunction()) return nullptr;
4019 
4020   auto InstCombineRAUW = [this](Instruction *From, Value *With) {
4021     replaceInstUsesWith(*From, With);
4022   };
4023   auto InstCombineErase = [this](Instruction *I) {
4024     eraseInstFromFunction(*I);
4025   };
4026   LibCallSimplifier Simplifier(DL, &TLI, ORE, InstCombineRAUW,
4027                                InstCombineErase);
4028   if (Value *With = Simplifier.optimizeCall(CI)) {
4029     ++NumSimplified;
4030     return CI->use_empty() ? CI : replaceInstUsesWith(*CI, With);
4031   }
4032 
4033   return nullptr;
4034 }
4035 
4036 static IntrinsicInst *findInitTrampolineFromAlloca(Value *TrampMem) {
4037   // Strip off at most one level of pointer casts, looking for an alloca.  This
4038   // is good enough in practice and simpler than handling any number of casts.
4039   Value *Underlying = TrampMem->stripPointerCasts();
4040   if (Underlying != TrampMem &&
4041       (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem))
4042     return nullptr;
4043   if (!isa<AllocaInst>(Underlying))
4044     return nullptr;
4045 
4046   IntrinsicInst *InitTrampoline = nullptr;
4047   for (User *U : TrampMem->users()) {
4048     IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
4049     if (!II)
4050       return nullptr;
4051     if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
4052       if (InitTrampoline)
4053         // More than one init_trampoline writes to this value.  Give up.
4054         return nullptr;
4055       InitTrampoline = II;
4056       continue;
4057     }
4058     if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
4059       // Allow any number of calls to adjust.trampoline.
4060       continue;
4061     return nullptr;
4062   }
4063 
4064   // No call to init.trampoline found.
4065   if (!InitTrampoline)
4066     return nullptr;
4067 
4068   // Check that the alloca is being used in the expected way.
4069   if (InitTrampoline->getOperand(0) != TrampMem)
4070     return nullptr;
4071 
4072   return InitTrampoline;
4073 }
4074 
4075 static IntrinsicInst *findInitTrampolineFromBB(IntrinsicInst *AdjustTramp,
4076                                                Value *TrampMem) {
4077   // Visit all the previous instructions in the basic block, and try to find a
4078   // init.trampoline which has a direct path to the adjust.trampoline.
4079   for (BasicBlock::iterator I = AdjustTramp->getIterator(),
4080                             E = AdjustTramp->getParent()->begin();
4081        I != E;) {
4082     Instruction *Inst = &*--I;
4083     if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
4084       if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
4085           II->getOperand(0) == TrampMem)
4086         return II;
4087     if (Inst->mayWriteToMemory())
4088       return nullptr;
4089   }
4090   return nullptr;
4091 }
4092 
4093 // Given a call to llvm.adjust.trampoline, find and return the corresponding
4094 // call to llvm.init.trampoline if the call to the trampoline can be optimized
4095 // to a direct call to a function.  Otherwise return NULL.
4096 static IntrinsicInst *findInitTrampoline(Value *Callee) {
4097   Callee = Callee->stripPointerCasts();
4098   IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
4099   if (!AdjustTramp ||
4100       AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
4101     return nullptr;
4102 
4103   Value *TrampMem = AdjustTramp->getOperand(0);
4104 
4105   if (IntrinsicInst *IT = findInitTrampolineFromAlloca(TrampMem))
4106     return IT;
4107   if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem))
4108     return IT;
4109   return nullptr;
4110 }
4111 
4112 /// Improvements for call and invoke instructions.
4113 Instruction *InstCombiner::visitCallSite(CallSite CS) {
4114   if (isAllocLikeFn(CS.getInstruction(), &TLI))
4115     return visitAllocSite(*CS.getInstruction());
4116 
4117   bool Changed = false;
4118 
4119   // Mark any parameters that are known to be non-null with the nonnull
4120   // attribute.  This is helpful for inlining calls to functions with null
4121   // checks on their arguments.
4122   SmallVector<unsigned, 4> ArgNos;
4123   unsigned ArgNo = 0;
4124 
4125   for (Value *V : CS.args()) {
4126     if (V->getType()->isPointerTy() &&
4127         !CS.paramHasAttr(ArgNo, Attribute::NonNull) &&
4128         isKnownNonZero(V, DL, 0, &AC, CS.getInstruction(), &DT))
4129       ArgNos.push_back(ArgNo);
4130     ArgNo++;
4131   }
4132 
4133   assert(ArgNo == CS.arg_size() && "sanity check");
4134 
4135   if (!ArgNos.empty()) {
4136     AttributeList AS = CS.getAttributes();
4137     LLVMContext &Ctx = CS.getInstruction()->getContext();
4138     AS = AS.addParamAttribute(Ctx, ArgNos,
4139                               Attribute::get(Ctx, Attribute::NonNull));
4140     CS.setAttributes(AS);
4141     Changed = true;
4142   }
4143 
4144   // If the callee is a pointer to a function, attempt to move any casts to the
4145   // arguments of the call/invoke.
4146   Value *Callee = CS.getCalledValue();
4147   if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
4148     return nullptr;
4149 
4150   if (Function *CalleeF = dyn_cast<Function>(Callee)) {
4151     // Remove the convergent attr on calls when the callee is not convergent.
4152     if (CS.isConvergent() && !CalleeF->isConvergent() &&
4153         !CalleeF->isIntrinsic()) {
4154       LLVM_DEBUG(dbgs() << "Removing convergent attr from instr "
4155                         << CS.getInstruction() << "\n");
4156       CS.setNotConvergent();
4157       return CS.getInstruction();
4158     }
4159 
4160     // If the call and callee calling conventions don't match, this call must
4161     // be unreachable, as the call is undefined.
4162     if (CalleeF->getCallingConv() != CS.getCallingConv() &&
4163         // Only do this for calls to a function with a body.  A prototype may
4164         // not actually end up matching the implementation's calling conv for a
4165         // variety of reasons (e.g. it may be written in assembly).
4166         !CalleeF->isDeclaration()) {
4167       Instruction *OldCall = CS.getInstruction();
4168       new StoreInst(ConstantInt::getTrue(Callee->getContext()),
4169                 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
4170                                   OldCall);
4171       // If OldCall does not return void then replaceAllUsesWith undef.
4172       // This allows ValueHandlers and custom metadata to adjust itself.
4173       if (!OldCall->getType()->isVoidTy())
4174         replaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
4175       if (isa<CallInst>(OldCall))
4176         return eraseInstFromFunction(*OldCall);
4177 
4178       // We cannot remove an invoke, because it would change the CFG, just
4179       // change the callee to a null pointer.
4180       cast<InvokeInst>(OldCall)->setCalledFunction(
4181                                     Constant::getNullValue(CalleeF->getType()));
4182       return nullptr;
4183     }
4184   }
4185 
4186   if ((isa<ConstantPointerNull>(Callee) &&
4187        !NullPointerIsDefined(CS.getInstruction()->getFunction())) ||
4188       isa<UndefValue>(Callee)) {
4189     // If CS does not return void then replaceAllUsesWith undef.
4190     // This allows ValueHandlers and custom metadata to adjust itself.
4191     if (!CS.getInstruction()->getType()->isVoidTy())
4192       replaceInstUsesWith(*CS.getInstruction(),
4193                           UndefValue::get(CS.getInstruction()->getType()));
4194 
4195     if (isa<InvokeInst>(CS.getInstruction())) {
4196       // Can't remove an invoke because we cannot change the CFG.
4197       return nullptr;
4198     }
4199 
4200     // This instruction is not reachable, just remove it.  We insert a store to
4201     // undef so that we know that this code is not reachable, despite the fact
4202     // that we can't modify the CFG here.
4203     new StoreInst(ConstantInt::getTrue(Callee->getContext()),
4204                   UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
4205                   CS.getInstruction());
4206 
4207     return eraseInstFromFunction(*CS.getInstruction());
4208   }
4209 
4210   if (IntrinsicInst *II = findInitTrampoline(Callee))
4211     return transformCallThroughTrampoline(CS, II);
4212 
4213   PointerType *PTy = cast<PointerType>(Callee->getType());
4214   FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
4215   if (FTy->isVarArg()) {
4216     int ix = FTy->getNumParams();
4217     // See if we can optimize any arguments passed through the varargs area of
4218     // the call.
4219     for (CallSite::arg_iterator I = CS.arg_begin() + FTy->getNumParams(),
4220            E = CS.arg_end(); I != E; ++I, ++ix) {
4221       CastInst *CI = dyn_cast<CastInst>(*I);
4222       if (CI && isSafeToEliminateVarargsCast(CS, DL, CI, ix)) {
4223         *I = CI->getOperand(0);
4224         Changed = true;
4225       }
4226     }
4227   }
4228 
4229   if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
4230     // Inline asm calls cannot throw - mark them 'nounwind'.
4231     CS.setDoesNotThrow();
4232     Changed = true;
4233   }
4234 
4235   // Try to optimize the call if possible, we require DataLayout for most of
4236   // this.  None of these calls are seen as possibly dead so go ahead and
4237   // delete the instruction now.
4238   if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
4239     Instruction *I = tryOptimizeCall(CI);
4240     // If we changed something return the result, etc. Otherwise let
4241     // the fallthrough check.
4242     if (I) return eraseInstFromFunction(*I);
4243   }
4244 
4245   return Changed ? CS.getInstruction() : nullptr;
4246 }
4247 
4248 /// If the callee is a constexpr cast of a function, attempt to move the cast to
4249 /// the arguments of the call/invoke.
4250 bool InstCombiner::transformConstExprCastCall(CallSite CS) {
4251   auto *Callee = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
4252   if (!Callee)
4253     return false;
4254 
4255   // If this is a call to a thunk function, don't remove the cast. Thunks are
4256   // used to transparently forward all incoming parameters and outgoing return
4257   // values, so it's important to leave the cast in place.
4258   if (Callee->hasFnAttribute("thunk"))
4259     return false;
4260 
4261   // If this is a musttail call, the callee's prototype must match the caller's
4262   // prototype with the exception of pointee types. The code below doesn't
4263   // implement that, so we can't do this transform.
4264   // TODO: Do the transform if it only requires adding pointer casts.
4265   if (CS.isMustTailCall())
4266     return false;
4267 
4268   Instruction *Caller = CS.getInstruction();
4269   const AttributeList &CallerPAL = CS.getAttributes();
4270 
4271   // Okay, this is a cast from a function to a different type.  Unless doing so
4272   // would cause a type conversion of one of our arguments, change this call to
4273   // be a direct call with arguments casted to the appropriate types.
4274   FunctionType *FT = Callee->getFunctionType();
4275   Type *OldRetTy = Caller->getType();
4276   Type *NewRetTy = FT->getReturnType();
4277 
4278   // Check to see if we are changing the return type...
4279   if (OldRetTy != NewRetTy) {
4280 
4281     if (NewRetTy->isStructTy())
4282       return false; // TODO: Handle multiple return values.
4283 
4284     if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) {
4285       if (Callee->isDeclaration())
4286         return false;   // Cannot transform this return value.
4287 
4288       if (!Caller->use_empty() &&
4289           // void -> non-void is handled specially
4290           !NewRetTy->isVoidTy())
4291         return false;   // Cannot transform this return value.
4292     }
4293 
4294     if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
4295       AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
4296       if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy)))
4297         return false;   // Attribute not compatible with transformed value.
4298     }
4299 
4300     // If the callsite is an invoke instruction, and the return value is used by
4301     // a PHI node in a successor, we cannot change the return type of the call
4302     // because there is no place to put the cast instruction (without breaking
4303     // the critical edge).  Bail out in this case.
4304     if (!Caller->use_empty())
4305       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
4306         for (User *U : II->users())
4307           if (PHINode *PN = dyn_cast<PHINode>(U))
4308             if (PN->getParent() == II->getNormalDest() ||
4309                 PN->getParent() == II->getUnwindDest())
4310               return false;
4311   }
4312 
4313   unsigned NumActualArgs = CS.arg_size();
4314   unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
4315 
4316   // Prevent us turning:
4317   // declare void @takes_i32_inalloca(i32* inalloca)
4318   //  call void bitcast (void (i32*)* @takes_i32_inalloca to void (i32)*)(i32 0)
4319   //
4320   // into:
4321   //  call void @takes_i32_inalloca(i32* null)
4322   //
4323   //  Similarly, avoid folding away bitcasts of byval calls.
4324   if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) ||
4325       Callee->getAttributes().hasAttrSomewhere(Attribute::ByVal))
4326     return false;
4327 
4328   CallSite::arg_iterator AI = CS.arg_begin();
4329   for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
4330     Type *ParamTy = FT->getParamType(i);
4331     Type *ActTy = (*AI)->getType();
4332 
4333     if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
4334       return false;   // Cannot transform this parameter value.
4335 
4336     if (AttrBuilder(CallerPAL.getParamAttributes(i))
4337             .overlaps(AttributeFuncs::typeIncompatible(ParamTy)))
4338       return false;   // Attribute not compatible with transformed value.
4339 
4340     if (CS.isInAllocaArgument(i))
4341       return false;   // Cannot transform to and from inalloca.
4342 
4343     // If the parameter is passed as a byval argument, then we have to have a
4344     // sized type and the sized type has to have the same size as the old type.
4345     if (ParamTy != ActTy && CallerPAL.hasParamAttribute(i, Attribute::ByVal)) {
4346       PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
4347       if (!ParamPTy || !ParamPTy->getElementType()->isSized())
4348         return false;
4349 
4350       Type *CurElTy = ActTy->getPointerElementType();
4351       if (DL.getTypeAllocSize(CurElTy) !=
4352           DL.getTypeAllocSize(ParamPTy->getElementType()))
4353         return false;
4354     }
4355   }
4356 
4357   if (Callee->isDeclaration()) {
4358     // Do not delete arguments unless we have a function body.
4359     if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
4360       return false;
4361 
4362     // If the callee is just a declaration, don't change the varargsness of the
4363     // call.  We don't want to introduce a varargs call where one doesn't
4364     // already exist.
4365     PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
4366     if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
4367       return false;
4368 
4369     // If both the callee and the cast type are varargs, we still have to make
4370     // sure the number of fixed parameters are the same or we have the same
4371     // ABI issues as if we introduce a varargs call.
4372     if (FT->isVarArg() &&
4373         cast<FunctionType>(APTy->getElementType())->isVarArg() &&
4374         FT->getNumParams() !=
4375         cast<FunctionType>(APTy->getElementType())->getNumParams())
4376       return false;
4377   }
4378 
4379   if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
4380       !CallerPAL.isEmpty()) {
4381     // In this case we have more arguments than the new function type, but we
4382     // won't be dropping them.  Check that these extra arguments have attributes
4383     // that are compatible with being a vararg call argument.
4384     unsigned SRetIdx;
4385     if (CallerPAL.hasAttrSomewhere(Attribute::StructRet, &SRetIdx) &&
4386         SRetIdx > FT->getNumParams())
4387       return false;
4388   }
4389 
4390   // Okay, we decided that this is a safe thing to do: go ahead and start
4391   // inserting cast instructions as necessary.
4392   SmallVector<Value *, 8> Args;
4393   SmallVector<AttributeSet, 8> ArgAttrs;
4394   Args.reserve(NumActualArgs);
4395   ArgAttrs.reserve(NumActualArgs);
4396 
4397   // Get any return attributes.
4398   AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
4399 
4400   // If the return value is not being used, the type may not be compatible
4401   // with the existing attributes.  Wipe out any problematic attributes.
4402   RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy));
4403 
4404   AI = CS.arg_begin();
4405   for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
4406     Type *ParamTy = FT->getParamType(i);
4407 
4408     Value *NewArg = *AI;
4409     if ((*AI)->getType() != ParamTy)
4410       NewArg = Builder.CreateBitOrPointerCast(*AI, ParamTy);
4411     Args.push_back(NewArg);
4412 
4413     // Add any parameter attributes.
4414     ArgAttrs.push_back(CallerPAL.getParamAttributes(i));
4415   }
4416 
4417   // If the function takes more arguments than the call was taking, add them
4418   // now.
4419   for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) {
4420     Args.push_back(Constant::getNullValue(FT->getParamType(i)));
4421     ArgAttrs.push_back(AttributeSet());
4422   }
4423 
4424   // If we are removing arguments to the function, emit an obnoxious warning.
4425   if (FT->getNumParams() < NumActualArgs) {
4426     // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722
4427     if (FT->isVarArg()) {
4428       // Add all of the arguments in their promoted form to the arg list.
4429       for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
4430         Type *PTy = getPromotedType((*AI)->getType());
4431         Value *NewArg = *AI;
4432         if (PTy != (*AI)->getType()) {
4433           // Must promote to pass through va_arg area!
4434           Instruction::CastOps opcode =
4435             CastInst::getCastOpcode(*AI, false, PTy, false);
4436           NewArg = Builder.CreateCast(opcode, *AI, PTy);
4437         }
4438         Args.push_back(NewArg);
4439 
4440         // Add any parameter attributes.
4441         ArgAttrs.push_back(CallerPAL.getParamAttributes(i));
4442       }
4443     }
4444   }
4445 
4446   AttributeSet FnAttrs = CallerPAL.getFnAttributes();
4447 
4448   if (NewRetTy->isVoidTy())
4449     Caller->setName("");   // Void type should not have a name.
4450 
4451   assert((ArgAttrs.size() == FT->getNumParams() || FT->isVarArg()) &&
4452          "missing argument attributes");
4453   LLVMContext &Ctx = Callee->getContext();
4454   AttributeList NewCallerPAL = AttributeList::get(
4455       Ctx, FnAttrs, AttributeSet::get(Ctx, RAttrs), ArgAttrs);
4456 
4457   SmallVector<OperandBundleDef, 1> OpBundles;
4458   CS.getOperandBundlesAsDefs(OpBundles);
4459 
4460   CallSite NewCS;
4461   if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
4462     NewCS = Builder.CreateInvoke(Callee, II->getNormalDest(),
4463                                  II->getUnwindDest(), Args, OpBundles);
4464   } else {
4465     NewCS = Builder.CreateCall(Callee, Args, OpBundles);
4466     cast<CallInst>(NewCS.getInstruction())
4467         ->setTailCallKind(cast<CallInst>(Caller)->getTailCallKind());
4468   }
4469   NewCS->takeName(Caller);
4470   NewCS.setCallingConv(CS.getCallingConv());
4471   NewCS.setAttributes(NewCallerPAL);
4472 
4473   // Preserve the weight metadata for the new call instruction. The metadata
4474   // is used by SamplePGO to check callsite's hotness.
4475   uint64_t W;
4476   if (Caller->extractProfTotalWeight(W))
4477     NewCS->setProfWeight(W);
4478 
4479   // Insert a cast of the return type as necessary.
4480   Instruction *NC = NewCS.getInstruction();
4481   Value *NV = NC;
4482   if (OldRetTy != NV->getType() && !Caller->use_empty()) {
4483     if (!NV->getType()->isVoidTy()) {
4484       NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
4485       NC->setDebugLoc(Caller->getDebugLoc());
4486 
4487       // If this is an invoke instruction, we should insert it after the first
4488       // non-phi, instruction in the normal successor block.
4489       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
4490         BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
4491         InsertNewInstBefore(NC, *I);
4492       } else {
4493         // Otherwise, it's a call, just insert cast right after the call.
4494         InsertNewInstBefore(NC, *Caller);
4495       }
4496       Worklist.AddUsersToWorkList(*Caller);
4497     } else {
4498       NV = UndefValue::get(Caller->getType());
4499     }
4500   }
4501 
4502   if (!Caller->use_empty())
4503     replaceInstUsesWith(*Caller, NV);
4504   else if (Caller->hasValueHandle()) {
4505     if (OldRetTy == NV->getType())
4506       ValueHandleBase::ValueIsRAUWd(Caller, NV);
4507     else
4508       // We cannot call ValueIsRAUWd with a different type, and the
4509       // actual tracked value will disappear.
4510       ValueHandleBase::ValueIsDeleted(Caller);
4511   }
4512 
4513   eraseInstFromFunction(*Caller);
4514   return true;
4515 }
4516 
4517 /// Turn a call to a function created by init_trampoline / adjust_trampoline
4518 /// intrinsic pair into a direct call to the underlying function.
4519 Instruction *
4520 InstCombiner::transformCallThroughTrampoline(CallSite CS,
4521                                              IntrinsicInst *Tramp) {
4522   Value *Callee = CS.getCalledValue();
4523   PointerType *PTy = cast<PointerType>(Callee->getType());
4524   FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
4525   AttributeList Attrs = CS.getAttributes();
4526 
4527   // If the call already has the 'nest' attribute somewhere then give up -
4528   // otherwise 'nest' would occur twice after splicing in the chain.
4529   if (Attrs.hasAttrSomewhere(Attribute::Nest))
4530     return nullptr;
4531 
4532   assert(Tramp &&
4533          "transformCallThroughTrampoline called with incorrect CallSite.");
4534 
4535   Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
4536   FunctionType *NestFTy = cast<FunctionType>(NestF->getValueType());
4537 
4538   AttributeList NestAttrs = NestF->getAttributes();
4539   if (!NestAttrs.isEmpty()) {
4540     unsigned NestArgNo = 0;
4541     Type *NestTy = nullptr;
4542     AttributeSet NestAttr;
4543 
4544     // Look for a parameter marked with the 'nest' attribute.
4545     for (FunctionType::param_iterator I = NestFTy->param_begin(),
4546                                       E = NestFTy->param_end();
4547          I != E; ++NestArgNo, ++I) {
4548       AttributeSet AS = NestAttrs.getParamAttributes(NestArgNo);
4549       if (AS.hasAttribute(Attribute::Nest)) {
4550         // Record the parameter type and any other attributes.
4551         NestTy = *I;
4552         NestAttr = AS;
4553         break;
4554       }
4555     }
4556 
4557     if (NestTy) {
4558       Instruction *Caller = CS.getInstruction();
4559       std::vector<Value*> NewArgs;
4560       std::vector<AttributeSet> NewArgAttrs;
4561       NewArgs.reserve(CS.arg_size() + 1);
4562       NewArgAttrs.reserve(CS.arg_size());
4563 
4564       // Insert the nest argument into the call argument list, which may
4565       // mean appending it.  Likewise for attributes.
4566 
4567       {
4568         unsigned ArgNo = 0;
4569         CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
4570         do {
4571           if (ArgNo == NestArgNo) {
4572             // Add the chain argument and attributes.
4573             Value *NestVal = Tramp->getArgOperand(2);
4574             if (NestVal->getType() != NestTy)
4575               NestVal = Builder.CreateBitCast(NestVal, NestTy, "nest");
4576             NewArgs.push_back(NestVal);
4577             NewArgAttrs.push_back(NestAttr);
4578           }
4579 
4580           if (I == E)
4581             break;
4582 
4583           // Add the original argument and attributes.
4584           NewArgs.push_back(*I);
4585           NewArgAttrs.push_back(Attrs.getParamAttributes(ArgNo));
4586 
4587           ++ArgNo;
4588           ++I;
4589         } while (true);
4590       }
4591 
4592       // The trampoline may have been bitcast to a bogus type (FTy).
4593       // Handle this by synthesizing a new function type, equal to FTy
4594       // with the chain parameter inserted.
4595 
4596       std::vector<Type*> NewTypes;
4597       NewTypes.reserve(FTy->getNumParams()+1);
4598 
4599       // Insert the chain's type into the list of parameter types, which may
4600       // mean appending it.
4601       {
4602         unsigned ArgNo = 0;
4603         FunctionType::param_iterator I = FTy->param_begin(),
4604           E = FTy->param_end();
4605 
4606         do {
4607           if (ArgNo == NestArgNo)
4608             // Add the chain's type.
4609             NewTypes.push_back(NestTy);
4610 
4611           if (I == E)
4612             break;
4613 
4614           // Add the original type.
4615           NewTypes.push_back(*I);
4616 
4617           ++ArgNo;
4618           ++I;
4619         } while (true);
4620       }
4621 
4622       // Replace the trampoline call with a direct call.  Let the generic
4623       // code sort out any function type mismatches.
4624       FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
4625                                                 FTy->isVarArg());
4626       Constant *NewCallee =
4627         NestF->getType() == PointerType::getUnqual(NewFTy) ?
4628         NestF : ConstantExpr::getBitCast(NestF,
4629                                          PointerType::getUnqual(NewFTy));
4630       AttributeList NewPAL =
4631           AttributeList::get(FTy->getContext(), Attrs.getFnAttributes(),
4632                              Attrs.getRetAttributes(), NewArgAttrs);
4633 
4634       SmallVector<OperandBundleDef, 1> OpBundles;
4635       CS.getOperandBundlesAsDefs(OpBundles);
4636 
4637       Instruction *NewCaller;
4638       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
4639         NewCaller = InvokeInst::Create(NewCallee,
4640                                        II->getNormalDest(), II->getUnwindDest(),
4641                                        NewArgs, OpBundles);
4642         cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
4643         cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
4644       } else {
4645         NewCaller = CallInst::Create(NewCallee, NewArgs, OpBundles);
4646         cast<CallInst>(NewCaller)->setTailCallKind(
4647             cast<CallInst>(Caller)->getTailCallKind());
4648         cast<CallInst>(NewCaller)->setCallingConv(
4649             cast<CallInst>(Caller)->getCallingConv());
4650         cast<CallInst>(NewCaller)->setAttributes(NewPAL);
4651       }
4652       NewCaller->setDebugLoc(Caller->getDebugLoc());
4653 
4654       return NewCaller;
4655     }
4656   }
4657 
4658   // Replace the trampoline call with a direct call.  Since there is no 'nest'
4659   // parameter, there is no need to adjust the argument list.  Let the generic
4660   // code sort out any function type mismatches.
4661   Constant *NewCallee =
4662     NestF->getType() == PTy ? NestF :
4663                               ConstantExpr::getBitCast(NestF, PTy);
4664   CS.setCalledFunction(NewCallee);
4665   return CS.getInstruction();
4666 }
4667