1 //===- InstCombineCalls.cpp -----------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the visitCall, visitInvoke, and visitCallBr functions.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "InstCombineInternal.h"
14 #include "llvm/ADT/APFloat.h"
15 #include "llvm/ADT/APInt.h"
16 #include "llvm/ADT/APSInt.h"
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/FloatingPointMode.h"
19 #include "llvm/ADT/None.h"
20 #include "llvm/ADT/Optional.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/SmallBitVector.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/Twine.h"
26 #include "llvm/Analysis/AliasAnalysis.h"
27 #include "llvm/Analysis/AssumeBundleQueries.h"
28 #include "llvm/Analysis/AssumptionCache.h"
29 #include "llvm/Analysis/InstructionSimplify.h"
30 #include "llvm/Analysis/Loads.h"
31 #include "llvm/Analysis/MemoryBuiltins.h"
32 #include "llvm/Analysis/TargetTransformInfo.h"
33 #include "llvm/Analysis/ValueTracking.h"
34 #include "llvm/Analysis/VectorUtils.h"
35 #include "llvm/IR/Attributes.h"
36 #include "llvm/IR/BasicBlock.h"
37 #include "llvm/IR/Constant.h"
38 #include "llvm/IR/Constants.h"
39 #include "llvm/IR/DataLayout.h"
40 #include "llvm/IR/DerivedTypes.h"
41 #include "llvm/IR/Function.h"
42 #include "llvm/IR/GlobalVariable.h"
43 #include "llvm/IR/InlineAsm.h"
44 #include "llvm/IR/InstrTypes.h"
45 #include "llvm/IR/Instruction.h"
46 #include "llvm/IR/Instructions.h"
47 #include "llvm/IR/IntrinsicInst.h"
48 #include "llvm/IR/Intrinsics.h"
49 #include "llvm/IR/IntrinsicsAArch64.h"
50 #include "llvm/IR/IntrinsicsAMDGPU.h"
51 #include "llvm/IR/IntrinsicsARM.h"
52 #include "llvm/IR/IntrinsicsHexagon.h"
53 #include "llvm/IR/LLVMContext.h"
54 #include "llvm/IR/Metadata.h"
55 #include "llvm/IR/PatternMatch.h"
56 #include "llvm/IR/Statepoint.h"
57 #include "llvm/IR/Type.h"
58 #include "llvm/IR/User.h"
59 #include "llvm/IR/Value.h"
60 #include "llvm/IR/ValueHandle.h"
61 #include "llvm/Support/AtomicOrdering.h"
62 #include "llvm/Support/Casting.h"
63 #include "llvm/Support/CommandLine.h"
64 #include "llvm/Support/Compiler.h"
65 #include "llvm/Support/Debug.h"
66 #include "llvm/Support/ErrorHandling.h"
67 #include "llvm/Support/KnownBits.h"
68 #include "llvm/Support/MathExtras.h"
69 #include "llvm/Support/raw_ostream.h"
70 #include "llvm/Transforms/InstCombine/InstCombineWorklist.h"
71 #include "llvm/Transforms/InstCombine/InstCombiner.h"
72 #include "llvm/Transforms/Utils/AssumeBundleBuilder.h"
73 #include "llvm/Transforms/Utils/Local.h"
74 #include "llvm/Transforms/Utils/SimplifyLibCalls.h"
75 #include <algorithm>
76 #include <cassert>
77 #include <cstdint>
78 #include <cstring>
79 #include <utility>
80 #include <vector>
81 
82 using namespace llvm;
83 using namespace PatternMatch;
84 
85 #define DEBUG_TYPE "instcombine"
86 
87 STATISTIC(NumSimplified, "Number of library calls simplified");
88 
89 static cl::opt<unsigned> GuardWideningWindow(
90     "instcombine-guard-widening-window",
91     cl::init(3),
92     cl::desc("How wide an instruction window to bypass looking for "
93              "another guard"));
94 
95 namespace llvm {
96 /// enable preservation of attributes in assume like:
97 /// call void @llvm.assume(i1 true) [ "nonnull"(i32* %PTR) ]
98 extern cl::opt<bool> EnableKnowledgeRetention;
99 } // namespace llvm
100 
101 /// Return the specified type promoted as it would be to pass though a va_arg
102 /// area.
103 static Type *getPromotedType(Type *Ty) {
104   if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
105     if (ITy->getBitWidth() < 32)
106       return Type::getInt32Ty(Ty->getContext());
107   }
108   return Ty;
109 }
110 
111 Instruction *InstCombinerImpl::SimplifyAnyMemTransfer(AnyMemTransferInst *MI) {
112   Align DstAlign = getKnownAlignment(MI->getRawDest(), DL, MI, &AC, &DT);
113   MaybeAlign CopyDstAlign = MI->getDestAlign();
114   if (!CopyDstAlign || *CopyDstAlign < DstAlign) {
115     MI->setDestAlignment(DstAlign);
116     return MI;
117   }
118 
119   Align SrcAlign = getKnownAlignment(MI->getRawSource(), DL, MI, &AC, &DT);
120   MaybeAlign CopySrcAlign = MI->getSourceAlign();
121   if (!CopySrcAlign || *CopySrcAlign < SrcAlign) {
122     MI->setSourceAlignment(SrcAlign);
123     return MI;
124   }
125 
126   // If we have a store to a location which is known constant, we can conclude
127   // that the store must be storing the constant value (else the memory
128   // wouldn't be constant), and this must be a noop.
129   if (AA->pointsToConstantMemory(MI->getDest())) {
130     // Set the size of the copy to 0, it will be deleted on the next iteration.
131     MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
132     return MI;
133   }
134 
135   // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
136   // load/store.
137   ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getLength());
138   if (!MemOpLength) return nullptr;
139 
140   // Source and destination pointer types are always "i8*" for intrinsic.  See
141   // if the size is something we can handle with a single primitive load/store.
142   // A single load+store correctly handles overlapping memory in the memmove
143   // case.
144   uint64_t Size = MemOpLength->getLimitedValue();
145   assert(Size && "0-sized memory transferring should be removed already.");
146 
147   if (Size > 8 || (Size&(Size-1)))
148     return nullptr;  // If not 1/2/4/8 bytes, exit.
149 
150   // If it is an atomic and alignment is less than the size then we will
151   // introduce the unaligned memory access which will be later transformed
152   // into libcall in CodeGen. This is not evident performance gain so disable
153   // it now.
154   if (isa<AtomicMemTransferInst>(MI))
155     if (*CopyDstAlign < Size || *CopySrcAlign < Size)
156       return nullptr;
157 
158   // Use an integer load+store unless we can find something better.
159   unsigned SrcAddrSp =
160     cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
161   unsigned DstAddrSp =
162     cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
163 
164   IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
165   Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
166   Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
167 
168   // If the memcpy has metadata describing the members, see if we can get the
169   // TBAA tag describing our copy.
170   MDNode *CopyMD = nullptr;
171   if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa)) {
172     CopyMD = M;
173   } else if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa_struct)) {
174     if (M->getNumOperands() == 3 && M->getOperand(0) &&
175         mdconst::hasa<ConstantInt>(M->getOperand(0)) &&
176         mdconst::extract<ConstantInt>(M->getOperand(0))->isZero() &&
177         M->getOperand(1) &&
178         mdconst::hasa<ConstantInt>(M->getOperand(1)) &&
179         mdconst::extract<ConstantInt>(M->getOperand(1))->getValue() ==
180         Size &&
181         M->getOperand(2) && isa<MDNode>(M->getOperand(2)))
182       CopyMD = cast<MDNode>(M->getOperand(2));
183   }
184 
185   Value *Src = Builder.CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
186   Value *Dest = Builder.CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
187   LoadInst *L = Builder.CreateLoad(IntType, Src);
188   // Alignment from the mem intrinsic will be better, so use it.
189   L->setAlignment(*CopySrcAlign);
190   if (CopyMD)
191     L->setMetadata(LLVMContext::MD_tbaa, CopyMD);
192   MDNode *LoopMemParallelMD =
193     MI->getMetadata(LLVMContext::MD_mem_parallel_loop_access);
194   if (LoopMemParallelMD)
195     L->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
196   MDNode *AccessGroupMD = MI->getMetadata(LLVMContext::MD_access_group);
197   if (AccessGroupMD)
198     L->setMetadata(LLVMContext::MD_access_group, AccessGroupMD);
199 
200   StoreInst *S = Builder.CreateStore(L, Dest);
201   // Alignment from the mem intrinsic will be better, so use it.
202   S->setAlignment(*CopyDstAlign);
203   if (CopyMD)
204     S->setMetadata(LLVMContext::MD_tbaa, CopyMD);
205   if (LoopMemParallelMD)
206     S->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
207   if (AccessGroupMD)
208     S->setMetadata(LLVMContext::MD_access_group, AccessGroupMD);
209 
210   if (auto *MT = dyn_cast<MemTransferInst>(MI)) {
211     // non-atomics can be volatile
212     L->setVolatile(MT->isVolatile());
213     S->setVolatile(MT->isVolatile());
214   }
215   if (isa<AtomicMemTransferInst>(MI)) {
216     // atomics have to be unordered
217     L->setOrdering(AtomicOrdering::Unordered);
218     S->setOrdering(AtomicOrdering::Unordered);
219   }
220 
221   // Set the size of the copy to 0, it will be deleted on the next iteration.
222   MI->setLength(Constant::getNullValue(MemOpLength->getType()));
223   return MI;
224 }
225 
226 Instruction *InstCombinerImpl::SimplifyAnyMemSet(AnyMemSetInst *MI) {
227   const Align KnownAlignment =
228       getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT);
229   MaybeAlign MemSetAlign = MI->getDestAlign();
230   if (!MemSetAlign || *MemSetAlign < KnownAlignment) {
231     MI->setDestAlignment(KnownAlignment);
232     return MI;
233   }
234 
235   // If we have a store to a location which is known constant, we can conclude
236   // that the store must be storing the constant value (else the memory
237   // wouldn't be constant), and this must be a noop.
238   if (AA->pointsToConstantMemory(MI->getDest())) {
239     // Set the size of the copy to 0, it will be deleted on the next iteration.
240     MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
241     return MI;
242   }
243 
244   // Extract the length and alignment and fill if they are constant.
245   ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
246   ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
247   if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
248     return nullptr;
249   const uint64_t Len = LenC->getLimitedValue();
250   assert(Len && "0-sized memory setting should be removed already.");
251   const Align Alignment = assumeAligned(MI->getDestAlignment());
252 
253   // If it is an atomic and alignment is less than the size then we will
254   // introduce the unaligned memory access which will be later transformed
255   // into libcall in CodeGen. This is not evident performance gain so disable
256   // it now.
257   if (isa<AtomicMemSetInst>(MI))
258     if (Alignment < Len)
259       return nullptr;
260 
261   // memset(s,c,n) -> store s, c (for n=1,2,4,8)
262   if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
263     Type *ITy = IntegerType::get(MI->getContext(), Len*8);  // n=1 -> i8.
264 
265     Value *Dest = MI->getDest();
266     unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
267     Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
268     Dest = Builder.CreateBitCast(Dest, NewDstPtrTy);
269 
270     // Extract the fill value and store.
271     uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
272     StoreInst *S = Builder.CreateStore(ConstantInt::get(ITy, Fill), Dest,
273                                        MI->isVolatile());
274     S->setAlignment(Alignment);
275     if (isa<AtomicMemSetInst>(MI))
276       S->setOrdering(AtomicOrdering::Unordered);
277 
278     // Set the size of the copy to 0, it will be deleted on the next iteration.
279     MI->setLength(Constant::getNullValue(LenC->getType()));
280     return MI;
281   }
282 
283   return nullptr;
284 }
285 
286 // TODO, Obvious Missing Transforms:
287 // * Narrow width by halfs excluding zero/undef lanes
288 Value *InstCombinerImpl::simplifyMaskedLoad(IntrinsicInst &II) {
289   Value *LoadPtr = II.getArgOperand(0);
290   const Align Alignment =
291       cast<ConstantInt>(II.getArgOperand(1))->getAlignValue();
292 
293   // If the mask is all ones or undefs, this is a plain vector load of the 1st
294   // argument.
295   if (maskIsAllOneOrUndef(II.getArgOperand(2))) {
296     LoadInst *L = Builder.CreateAlignedLoad(II.getType(), LoadPtr, Alignment,
297                                             "unmaskedload");
298     L->copyMetadata(II);
299     return L;
300   }
301 
302   // If we can unconditionally load from this address, replace with a
303   // load/select idiom. TODO: use DT for context sensitive query
304   if (isDereferenceablePointer(LoadPtr, II.getType(),
305                                II.getModule()->getDataLayout(), &II, nullptr)) {
306     LoadInst *LI = Builder.CreateAlignedLoad(II.getType(), LoadPtr, Alignment,
307                                              "unmaskedload");
308     LI->copyMetadata(II);
309     return Builder.CreateSelect(II.getArgOperand(2), LI, II.getArgOperand(3));
310   }
311 
312   return nullptr;
313 }
314 
315 // TODO, Obvious Missing Transforms:
316 // * Single constant active lane -> store
317 // * Narrow width by halfs excluding zero/undef lanes
318 Instruction *InstCombinerImpl::simplifyMaskedStore(IntrinsicInst &II) {
319   auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
320   if (!ConstMask)
321     return nullptr;
322 
323   // If the mask is all zeros, this instruction does nothing.
324   if (ConstMask->isNullValue())
325     return eraseInstFromFunction(II);
326 
327   // If the mask is all ones, this is a plain vector store of the 1st argument.
328   if (ConstMask->isAllOnesValue()) {
329     Value *StorePtr = II.getArgOperand(1);
330     Align Alignment = cast<ConstantInt>(II.getArgOperand(2))->getAlignValue();
331     StoreInst *S =
332         new StoreInst(II.getArgOperand(0), StorePtr, false, Alignment);
333     S->copyMetadata(II);
334     return S;
335   }
336 
337   if (isa<ScalableVectorType>(ConstMask->getType()))
338     return nullptr;
339 
340   // Use masked off lanes to simplify operands via SimplifyDemandedVectorElts
341   APInt DemandedElts = possiblyDemandedEltsInMask(ConstMask);
342   APInt UndefElts(DemandedElts.getBitWidth(), 0);
343   if (Value *V =
344           SimplifyDemandedVectorElts(II.getOperand(0), DemandedElts, UndefElts))
345     return replaceOperand(II, 0, V);
346 
347   return nullptr;
348 }
349 
350 // TODO, Obvious Missing Transforms:
351 // * Single constant active lane load -> load
352 // * Dereferenceable address & few lanes -> scalarize speculative load/selects
353 // * Adjacent vector addresses -> masked.load
354 // * Narrow width by halfs excluding zero/undef lanes
355 // * Vector splat address w/known mask -> scalar load
356 // * Vector incrementing address -> vector masked load
357 Instruction *InstCombinerImpl::simplifyMaskedGather(IntrinsicInst &II) {
358   return nullptr;
359 }
360 
361 // TODO, Obvious Missing Transforms:
362 // * Single constant active lane -> store
363 // * Adjacent vector addresses -> masked.store
364 // * Narrow store width by halfs excluding zero/undef lanes
365 // * Vector splat address w/known mask -> scalar store
366 // * Vector incrementing address -> vector masked store
367 Instruction *InstCombinerImpl::simplifyMaskedScatter(IntrinsicInst &II) {
368   auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
369   if (!ConstMask)
370     return nullptr;
371 
372   // If the mask is all zeros, a scatter does nothing.
373   if (ConstMask->isNullValue())
374     return eraseInstFromFunction(II);
375 
376   if (isa<ScalableVectorType>(ConstMask->getType()))
377     return nullptr;
378 
379   // Use masked off lanes to simplify operands via SimplifyDemandedVectorElts
380   APInt DemandedElts = possiblyDemandedEltsInMask(ConstMask);
381   APInt UndefElts(DemandedElts.getBitWidth(), 0);
382   if (Value *V =
383           SimplifyDemandedVectorElts(II.getOperand(0), DemandedElts, UndefElts))
384     return replaceOperand(II, 0, V);
385   if (Value *V =
386           SimplifyDemandedVectorElts(II.getOperand(1), DemandedElts, UndefElts))
387     return replaceOperand(II, 1, V);
388 
389   return nullptr;
390 }
391 
392 /// This function transforms launder.invariant.group and strip.invariant.group
393 /// like:
394 /// launder(launder(%x)) -> launder(%x)       (the result is not the argument)
395 /// launder(strip(%x)) -> launder(%x)
396 /// strip(strip(%x)) -> strip(%x)             (the result is not the argument)
397 /// strip(launder(%x)) -> strip(%x)
398 /// This is legal because it preserves the most recent information about
399 /// the presence or absence of invariant.group.
400 static Instruction *simplifyInvariantGroupIntrinsic(IntrinsicInst &II,
401                                                     InstCombinerImpl &IC) {
402   auto *Arg = II.getArgOperand(0);
403   auto *StrippedArg = Arg->stripPointerCasts();
404   auto *StrippedInvariantGroupsArg = StrippedArg;
405   while (auto *Intr = dyn_cast<IntrinsicInst>(StrippedInvariantGroupsArg)) {
406     if (Intr->getIntrinsicID() != Intrinsic::launder_invariant_group &&
407         Intr->getIntrinsicID() != Intrinsic::strip_invariant_group)
408       break;
409     StrippedInvariantGroupsArg = Intr->getArgOperand(0)->stripPointerCasts();
410   }
411   if (StrippedArg == StrippedInvariantGroupsArg)
412     return nullptr; // No launders/strips to remove.
413 
414   Value *Result = nullptr;
415 
416   if (II.getIntrinsicID() == Intrinsic::launder_invariant_group)
417     Result = IC.Builder.CreateLaunderInvariantGroup(StrippedInvariantGroupsArg);
418   else if (II.getIntrinsicID() == Intrinsic::strip_invariant_group)
419     Result = IC.Builder.CreateStripInvariantGroup(StrippedInvariantGroupsArg);
420   else
421     llvm_unreachable(
422         "simplifyInvariantGroupIntrinsic only handles launder and strip");
423   if (Result->getType()->getPointerAddressSpace() !=
424       II.getType()->getPointerAddressSpace())
425     Result = IC.Builder.CreateAddrSpaceCast(Result, II.getType());
426   if (Result->getType() != II.getType())
427     Result = IC.Builder.CreateBitCast(Result, II.getType());
428 
429   return cast<Instruction>(Result);
430 }
431 
432 static Instruction *foldCttzCtlz(IntrinsicInst &II, InstCombinerImpl &IC) {
433   assert((II.getIntrinsicID() == Intrinsic::cttz ||
434           II.getIntrinsicID() == Intrinsic::ctlz) &&
435          "Expected cttz or ctlz intrinsic");
436   bool IsTZ = II.getIntrinsicID() == Intrinsic::cttz;
437   Value *Op0 = II.getArgOperand(0);
438   Value *Op1 = II.getArgOperand(1);
439   Value *X;
440   // ctlz(bitreverse(x)) -> cttz(x)
441   // cttz(bitreverse(x)) -> ctlz(x)
442   if (match(Op0, m_BitReverse(m_Value(X)))) {
443     Intrinsic::ID ID = IsTZ ? Intrinsic::ctlz : Intrinsic::cttz;
444     Function *F = Intrinsic::getDeclaration(II.getModule(), ID, II.getType());
445     return CallInst::Create(F, {X, II.getArgOperand(1)});
446   }
447 
448   if (II.getType()->isIntOrIntVectorTy(1)) {
449     // ctlz/cttz i1 Op0 --> not Op0
450     if (match(Op1, m_Zero()))
451       return BinaryOperator::CreateNot(Op0);
452     // If zero is undef, then the input can be assumed to be "true", so the
453     // instruction simplifies to "false".
454     assert(match(Op1, m_One()) && "Expected ctlz/cttz operand to be 0 or 1");
455     return IC.replaceInstUsesWith(II, ConstantInt::getNullValue(II.getType()));
456   }
457 
458   // If the operand is a select with constant arm(s), try to hoist ctlz/cttz.
459   if (auto *Sel = dyn_cast<SelectInst>(Op0))
460     if (Instruction *R = IC.FoldOpIntoSelect(II, Sel))
461       return R;
462 
463   if (IsTZ) {
464     // cttz(-x) -> cttz(x)
465     if (match(Op0, m_Neg(m_Value(X))))
466       return IC.replaceOperand(II, 0, X);
467 
468     // cttz(sext(x)) -> cttz(zext(x))
469     if (match(Op0, m_OneUse(m_SExt(m_Value(X))))) {
470       auto *Zext = IC.Builder.CreateZExt(X, II.getType());
471       auto *CttzZext =
472           IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, Zext, Op1);
473       return IC.replaceInstUsesWith(II, CttzZext);
474     }
475 
476     // Zext doesn't change the number of trailing zeros, so narrow:
477     // cttz(zext(x)) -> zext(cttz(x)) if the 'ZeroIsUndef' parameter is 'true'.
478     if (match(Op0, m_OneUse(m_ZExt(m_Value(X)))) && match(Op1, m_One())) {
479       auto *Cttz = IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, X,
480                                                     IC.Builder.getTrue());
481       auto *ZextCttz = IC.Builder.CreateZExt(Cttz, II.getType());
482       return IC.replaceInstUsesWith(II, ZextCttz);
483     }
484 
485     // cttz(abs(x)) -> cttz(x)
486     // cttz(nabs(x)) -> cttz(x)
487     Value *Y;
488     SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor;
489     if (SPF == SPF_ABS || SPF == SPF_NABS)
490       return IC.replaceOperand(II, 0, X);
491 
492     if (match(Op0, m_Intrinsic<Intrinsic::abs>(m_Value(X))))
493       return IC.replaceOperand(II, 0, X);
494   }
495 
496   KnownBits Known = IC.computeKnownBits(Op0, 0, &II);
497 
498   // Create a mask for bits above (ctlz) or below (cttz) the first known one.
499   unsigned PossibleZeros = IsTZ ? Known.countMaxTrailingZeros()
500                                 : Known.countMaxLeadingZeros();
501   unsigned DefiniteZeros = IsTZ ? Known.countMinTrailingZeros()
502                                 : Known.countMinLeadingZeros();
503 
504   // If all bits above (ctlz) or below (cttz) the first known one are known
505   // zero, this value is constant.
506   // FIXME: This should be in InstSimplify because we're replacing an
507   // instruction with a constant.
508   if (PossibleZeros == DefiniteZeros) {
509     auto *C = ConstantInt::get(Op0->getType(), DefiniteZeros);
510     return IC.replaceInstUsesWith(II, C);
511   }
512 
513   // If the input to cttz/ctlz is known to be non-zero,
514   // then change the 'ZeroIsUndef' parameter to 'true'
515   // because we know the zero behavior can't affect the result.
516   if (!Known.One.isNullValue() ||
517       isKnownNonZero(Op0, IC.getDataLayout(), 0, &IC.getAssumptionCache(), &II,
518                      &IC.getDominatorTree())) {
519     if (!match(II.getArgOperand(1), m_One()))
520       return IC.replaceOperand(II, 1, IC.Builder.getTrue());
521   }
522 
523   // Add range metadata since known bits can't completely reflect what we know.
524   // TODO: Handle splat vectors.
525   auto *IT = dyn_cast<IntegerType>(Op0->getType());
526   if (IT && IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
527     Metadata *LowAndHigh[] = {
528         ConstantAsMetadata::get(ConstantInt::get(IT, DefiniteZeros)),
529         ConstantAsMetadata::get(ConstantInt::get(IT, PossibleZeros + 1))};
530     II.setMetadata(LLVMContext::MD_range,
531                    MDNode::get(II.getContext(), LowAndHigh));
532     return &II;
533   }
534 
535   return nullptr;
536 }
537 
538 static Instruction *foldCtpop(IntrinsicInst &II, InstCombinerImpl &IC) {
539   assert(II.getIntrinsicID() == Intrinsic::ctpop &&
540          "Expected ctpop intrinsic");
541   Type *Ty = II.getType();
542   unsigned BitWidth = Ty->getScalarSizeInBits();
543   Value *Op0 = II.getArgOperand(0);
544   Value *X, *Y;
545 
546   // ctpop(bitreverse(x)) -> ctpop(x)
547   // ctpop(bswap(x)) -> ctpop(x)
548   if (match(Op0, m_BitReverse(m_Value(X))) || match(Op0, m_BSwap(m_Value(X))))
549     return IC.replaceOperand(II, 0, X);
550 
551   // ctpop(rot(x)) -> ctpop(x)
552   if ((match(Op0, m_FShl(m_Value(X), m_Value(Y), m_Value())) ||
553        match(Op0, m_FShr(m_Value(X), m_Value(Y), m_Value()))) &&
554       X == Y)
555     return IC.replaceOperand(II, 0, X);
556 
557   // ctpop(x | -x) -> bitwidth - cttz(x, false)
558   if (Op0->hasOneUse() &&
559       match(Op0, m_c_Or(m_Value(X), m_Neg(m_Deferred(X))))) {
560     Function *F =
561         Intrinsic::getDeclaration(II.getModule(), Intrinsic::cttz, Ty);
562     auto *Cttz = IC.Builder.CreateCall(F, {X, IC.Builder.getFalse()});
563     auto *Bw = ConstantInt::get(Ty, APInt(BitWidth, BitWidth));
564     return IC.replaceInstUsesWith(II, IC.Builder.CreateSub(Bw, Cttz));
565   }
566 
567   // ctpop(~x & (x - 1)) -> cttz(x, false)
568   if (match(Op0,
569             m_c_And(m_Not(m_Value(X)), m_Add(m_Deferred(X), m_AllOnes())))) {
570     Function *F =
571         Intrinsic::getDeclaration(II.getModule(), Intrinsic::cttz, Ty);
572     return CallInst::Create(F, {X, IC.Builder.getFalse()});
573   }
574 
575   // Zext doesn't change the number of set bits, so narrow:
576   // ctpop (zext X) --> zext (ctpop X)
577   if (match(Op0, m_OneUse(m_ZExt(m_Value(X))))) {
578     Value *NarrowPop = IC.Builder.CreateUnaryIntrinsic(Intrinsic::ctpop, X);
579     return CastInst::Create(Instruction::ZExt, NarrowPop, Ty);
580   }
581 
582   // If the operand is a select with constant arm(s), try to hoist ctpop.
583   if (auto *Sel = dyn_cast<SelectInst>(Op0))
584     if (Instruction *R = IC.FoldOpIntoSelect(II, Sel))
585       return R;
586 
587   KnownBits Known(BitWidth);
588   IC.computeKnownBits(Op0, Known, 0, &II);
589 
590   // If all bits are zero except for exactly one fixed bit, then the result
591   // must be 0 or 1, and we can get that answer by shifting to LSB:
592   // ctpop (X & 32) --> (X & 32) >> 5
593   if ((~Known.Zero).isPowerOf2())
594     return BinaryOperator::CreateLShr(
595         Op0, ConstantInt::get(Ty, (~Known.Zero).exactLogBase2()));
596 
597   // FIXME: Try to simplify vectors of integers.
598   auto *IT = dyn_cast<IntegerType>(Ty);
599   if (!IT)
600     return nullptr;
601 
602   // Add range metadata since known bits can't completely reflect what we know.
603   unsigned MinCount = Known.countMinPopulation();
604   unsigned MaxCount = Known.countMaxPopulation();
605   if (IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
606     Metadata *LowAndHigh[] = {
607         ConstantAsMetadata::get(ConstantInt::get(IT, MinCount)),
608         ConstantAsMetadata::get(ConstantInt::get(IT, MaxCount + 1))};
609     II.setMetadata(LLVMContext::MD_range,
610                    MDNode::get(II.getContext(), LowAndHigh));
611     return &II;
612   }
613 
614   return nullptr;
615 }
616 
617 /// Convert a table lookup to shufflevector if the mask is constant.
618 /// This could benefit tbl1 if the mask is { 7,6,5,4,3,2,1,0 }, in
619 /// which case we could lower the shufflevector with rev64 instructions
620 /// as it's actually a byte reverse.
621 static Value *simplifyNeonTbl1(const IntrinsicInst &II,
622                                InstCombiner::BuilderTy &Builder) {
623   // Bail out if the mask is not a constant.
624   auto *C = dyn_cast<Constant>(II.getArgOperand(1));
625   if (!C)
626     return nullptr;
627 
628   auto *VecTy = cast<FixedVectorType>(II.getType());
629   unsigned NumElts = VecTy->getNumElements();
630 
631   // Only perform this transformation for <8 x i8> vector types.
632   if (!VecTy->getElementType()->isIntegerTy(8) || NumElts != 8)
633     return nullptr;
634 
635   int Indexes[8];
636 
637   for (unsigned I = 0; I < NumElts; ++I) {
638     Constant *COp = C->getAggregateElement(I);
639 
640     if (!COp || !isa<ConstantInt>(COp))
641       return nullptr;
642 
643     Indexes[I] = cast<ConstantInt>(COp)->getLimitedValue();
644 
645     // Make sure the mask indices are in range.
646     if ((unsigned)Indexes[I] >= NumElts)
647       return nullptr;
648   }
649 
650   auto *V1 = II.getArgOperand(0);
651   auto *V2 = Constant::getNullValue(V1->getType());
652   return Builder.CreateShuffleVector(V1, V2, makeArrayRef(Indexes));
653 }
654 
655 // Returns true iff the 2 intrinsics have the same operands, limiting the
656 // comparison to the first NumOperands.
657 static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E,
658                              unsigned NumOperands) {
659   assert(I.getNumArgOperands() >= NumOperands && "Not enough operands");
660   assert(E.getNumArgOperands() >= NumOperands && "Not enough operands");
661   for (unsigned i = 0; i < NumOperands; i++)
662     if (I.getArgOperand(i) != E.getArgOperand(i))
663       return false;
664   return true;
665 }
666 
667 // Remove trivially empty start/end intrinsic ranges, i.e. a start
668 // immediately followed by an end (ignoring debuginfo or other
669 // start/end intrinsics in between). As this handles only the most trivial
670 // cases, tracking the nesting level is not needed:
671 //
672 //   call @llvm.foo.start(i1 0)
673 //   call @llvm.foo.start(i1 0) ; This one won't be skipped: it will be removed
674 //   call @llvm.foo.end(i1 0)
675 //   call @llvm.foo.end(i1 0) ; &I
676 static bool
677 removeTriviallyEmptyRange(IntrinsicInst &EndI, InstCombinerImpl &IC,
678                           std::function<bool(const IntrinsicInst &)> IsStart) {
679   // We start from the end intrinsic and scan backwards, so that InstCombine
680   // has already processed (and potentially removed) all the instructions
681   // before the end intrinsic.
682   BasicBlock::reverse_iterator BI(EndI), BE(EndI.getParent()->rend());
683   for (; BI != BE; ++BI) {
684     if (auto *I = dyn_cast<IntrinsicInst>(&*BI)) {
685       if (isa<DbgInfoIntrinsic>(I) ||
686           I->getIntrinsicID() == EndI.getIntrinsicID())
687         continue;
688       if (IsStart(*I)) {
689         if (haveSameOperands(EndI, *I, EndI.getNumArgOperands())) {
690           IC.eraseInstFromFunction(*I);
691           IC.eraseInstFromFunction(EndI);
692           return true;
693         }
694         // Skip start intrinsics that don't pair with this end intrinsic.
695         continue;
696       }
697     }
698     break;
699   }
700 
701   return false;
702 }
703 
704 Instruction *InstCombinerImpl::visitVAEndInst(VAEndInst &I) {
705   removeTriviallyEmptyRange(I, *this, [](const IntrinsicInst &I) {
706     return I.getIntrinsicID() == Intrinsic::vastart ||
707            I.getIntrinsicID() == Intrinsic::vacopy;
708   });
709   return nullptr;
710 }
711 
712 static CallInst *canonicalizeConstantArg0ToArg1(CallInst &Call) {
713   assert(Call.getNumArgOperands() > 1 && "Need at least 2 args to swap");
714   Value *Arg0 = Call.getArgOperand(0), *Arg1 = Call.getArgOperand(1);
715   if (isa<Constant>(Arg0) && !isa<Constant>(Arg1)) {
716     Call.setArgOperand(0, Arg1);
717     Call.setArgOperand(1, Arg0);
718     return &Call;
719   }
720   return nullptr;
721 }
722 
723 /// Creates a result tuple for an overflow intrinsic \p II with a given
724 /// \p Result and a constant \p Overflow value.
725 static Instruction *createOverflowTuple(IntrinsicInst *II, Value *Result,
726                                         Constant *Overflow) {
727   Constant *V[] = {UndefValue::get(Result->getType()), Overflow};
728   StructType *ST = cast<StructType>(II->getType());
729   Constant *Struct = ConstantStruct::get(ST, V);
730   return InsertValueInst::Create(Struct, Result, 0);
731 }
732 
733 Instruction *
734 InstCombinerImpl::foldIntrinsicWithOverflowCommon(IntrinsicInst *II) {
735   WithOverflowInst *WO = cast<WithOverflowInst>(II);
736   Value *OperationResult = nullptr;
737   Constant *OverflowResult = nullptr;
738   if (OptimizeOverflowCheck(WO->getBinaryOp(), WO->isSigned(), WO->getLHS(),
739                             WO->getRHS(), *WO, OperationResult, OverflowResult))
740     return createOverflowTuple(WO, OperationResult, OverflowResult);
741   return nullptr;
742 }
743 
744 static Optional<bool> getKnownSign(Value *Op, Instruction *CxtI,
745                                    const DataLayout &DL, AssumptionCache *AC,
746                                    DominatorTree *DT) {
747   KnownBits Known = computeKnownBits(Op, DL, 0, AC, CxtI, DT);
748   if (Known.isNonNegative())
749     return false;
750   if (Known.isNegative())
751     return true;
752 
753   return isImpliedByDomCondition(
754       ICmpInst::ICMP_SLT, Op, Constant::getNullValue(Op->getType()), CxtI, DL);
755 }
756 
757 /// If we have a clamp pattern like max (min X, 42), 41 -- where the output
758 /// can only be one of two possible constant values -- turn that into a select
759 /// of constants.
760 static Instruction *foldClampRangeOfTwo(IntrinsicInst *II,
761                                         InstCombiner::BuilderTy &Builder) {
762   Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
763   Value *X;
764   const APInt *C0, *C1;
765   if (!match(I1, m_APInt(C1)) || !I0->hasOneUse())
766     return nullptr;
767 
768   CmpInst::Predicate Pred = CmpInst::BAD_ICMP_PREDICATE;
769   switch (II->getIntrinsicID()) {
770   case Intrinsic::smax:
771     if (match(I0, m_SMin(m_Value(X), m_APInt(C0))) && *C0 == *C1 + 1)
772       Pred = ICmpInst::ICMP_SGT;
773     break;
774   case Intrinsic::smin:
775     if (match(I0, m_SMax(m_Value(X), m_APInt(C0))) && *C1 == *C0 + 1)
776       Pred = ICmpInst::ICMP_SLT;
777     break;
778   case Intrinsic::umax:
779     if (match(I0, m_UMin(m_Value(X), m_APInt(C0))) && *C0 == *C1 + 1)
780       Pred = ICmpInst::ICMP_UGT;
781     break;
782   case Intrinsic::umin:
783     if (match(I0, m_UMax(m_Value(X), m_APInt(C0))) && *C1 == *C0 + 1)
784       Pred = ICmpInst::ICMP_ULT;
785     break;
786   default:
787     llvm_unreachable("Expected min/max intrinsic");
788   }
789   if (Pred == CmpInst::BAD_ICMP_PREDICATE)
790     return nullptr;
791 
792   // max (min X, 42), 41 --> X > 41 ? 42 : 41
793   // min (max X, 42), 43 --> X < 43 ? 42 : 43
794   Value *Cmp = Builder.CreateICmp(Pred, X, I1);
795   return SelectInst::Create(Cmp, ConstantInt::get(II->getType(), *C0), I1);
796 }
797 
798 /// Reduce a sequence of min/max intrinsics with a common operand.
799 static Instruction *factorizeMinMaxTree(IntrinsicInst *II) {
800   // Match 3 of the same min/max ops. Example: umin(umin(), umin()).
801   auto *LHS = dyn_cast<IntrinsicInst>(II->getArgOperand(0));
802   auto *RHS = dyn_cast<IntrinsicInst>(II->getArgOperand(1));
803   Intrinsic::ID MinMaxID = II->getIntrinsicID();
804   if (!LHS || !RHS || LHS->getIntrinsicID() != MinMaxID ||
805       RHS->getIntrinsicID() != MinMaxID ||
806       (!LHS->hasOneUse() && !RHS->hasOneUse()))
807     return nullptr;
808 
809   Value *A = LHS->getArgOperand(0);
810   Value *B = LHS->getArgOperand(1);
811   Value *C = RHS->getArgOperand(0);
812   Value *D = RHS->getArgOperand(1);
813 
814   // Look for a common operand.
815   Value *MinMaxOp = nullptr;
816   Value *ThirdOp = nullptr;
817   if (LHS->hasOneUse()) {
818     // If the LHS is only used in this chain and the RHS is used outside of it,
819     // reuse the RHS min/max because that will eliminate the LHS.
820     if (D == A || C == A) {
821       // min(min(a, b), min(c, a)) --> min(min(c, a), b)
822       // min(min(a, b), min(a, d)) --> min(min(a, d), b)
823       MinMaxOp = RHS;
824       ThirdOp = B;
825     } else if (D == B || C == B) {
826       // min(min(a, b), min(c, b)) --> min(min(c, b), a)
827       // min(min(a, b), min(b, d)) --> min(min(b, d), a)
828       MinMaxOp = RHS;
829       ThirdOp = A;
830     }
831   } else {
832     assert(RHS->hasOneUse() && "Expected one-use operand");
833     // Reuse the LHS. This will eliminate the RHS.
834     if (D == A || D == B) {
835       // min(min(a, b), min(c, a)) --> min(min(a, b), c)
836       // min(min(a, b), min(c, b)) --> min(min(a, b), c)
837       MinMaxOp = LHS;
838       ThirdOp = C;
839     } else if (C == A || C == B) {
840       // min(min(a, b), min(b, d)) --> min(min(a, b), d)
841       // min(min(a, b), min(c, b)) --> min(min(a, b), d)
842       MinMaxOp = LHS;
843       ThirdOp = D;
844     }
845   }
846 
847   if (!MinMaxOp || !ThirdOp)
848     return nullptr;
849 
850   Module *Mod = II->getModule();
851   Function *MinMax = Intrinsic::getDeclaration(Mod, MinMaxID, II->getType());
852   return CallInst::Create(MinMax, { MinMaxOp, ThirdOp });
853 }
854 
855 /// CallInst simplification. This mostly only handles folding of intrinsic
856 /// instructions. For normal calls, it allows visitCallBase to do the heavy
857 /// lifting.
858 Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
859   // Don't try to simplify calls without uses. It will not do anything useful,
860   // but will result in the following folds being skipped.
861   if (!CI.use_empty())
862     if (Value *V = SimplifyCall(&CI, SQ.getWithInstruction(&CI)))
863       return replaceInstUsesWith(CI, V);
864 
865   if (isFreeCall(&CI, &TLI))
866     return visitFree(CI);
867 
868   // If the caller function is nounwind, mark the call as nounwind, even if the
869   // callee isn't.
870   if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) {
871     CI.setDoesNotThrow();
872     return &CI;
873   }
874 
875   IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
876   if (!II) return visitCallBase(CI);
877 
878   // For atomic unordered mem intrinsics if len is not a positive or
879   // not a multiple of element size then behavior is undefined.
880   if (auto *AMI = dyn_cast<AtomicMemIntrinsic>(II))
881     if (ConstantInt *NumBytes = dyn_cast<ConstantInt>(AMI->getLength()))
882       if (NumBytes->getSExtValue() < 0 ||
883           (NumBytes->getZExtValue() % AMI->getElementSizeInBytes() != 0)) {
884         CreateNonTerminatorUnreachable(AMI);
885         assert(AMI->getType()->isVoidTy() &&
886                "non void atomic unordered mem intrinsic");
887         return eraseInstFromFunction(*AMI);
888       }
889 
890   // Intrinsics cannot occur in an invoke or a callbr, so handle them here
891   // instead of in visitCallBase.
892   if (auto *MI = dyn_cast<AnyMemIntrinsic>(II)) {
893     bool Changed = false;
894 
895     // memmove/cpy/set of zero bytes is a noop.
896     if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
897       if (NumBytes->isNullValue())
898         return eraseInstFromFunction(CI);
899 
900       if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
901         if (CI->getZExtValue() == 1) {
902           // Replace the instruction with just byte operations.  We would
903           // transform other cases to loads/stores, but we don't know if
904           // alignment is sufficient.
905         }
906     }
907 
908     // No other transformations apply to volatile transfers.
909     if (auto *M = dyn_cast<MemIntrinsic>(MI))
910       if (M->isVolatile())
911         return nullptr;
912 
913     // If we have a memmove and the source operation is a constant global,
914     // then the source and dest pointers can't alias, so we can change this
915     // into a call to memcpy.
916     if (auto *MMI = dyn_cast<AnyMemMoveInst>(MI)) {
917       if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
918         if (GVSrc->isConstant()) {
919           Module *M = CI.getModule();
920           Intrinsic::ID MemCpyID =
921               isa<AtomicMemMoveInst>(MMI)
922                   ? Intrinsic::memcpy_element_unordered_atomic
923                   : Intrinsic::memcpy;
924           Type *Tys[3] = { CI.getArgOperand(0)->getType(),
925                            CI.getArgOperand(1)->getType(),
926                            CI.getArgOperand(2)->getType() };
927           CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
928           Changed = true;
929         }
930     }
931 
932     if (AnyMemTransferInst *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
933       // memmove(x,x,size) -> noop.
934       if (MTI->getSource() == MTI->getDest())
935         return eraseInstFromFunction(CI);
936     }
937 
938     // If we can determine a pointer alignment that is bigger than currently
939     // set, update the alignment.
940     if (auto *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
941       if (Instruction *I = SimplifyAnyMemTransfer(MTI))
942         return I;
943     } else if (auto *MSI = dyn_cast<AnyMemSetInst>(MI)) {
944       if (Instruction *I = SimplifyAnyMemSet(MSI))
945         return I;
946     }
947 
948     if (Changed) return II;
949   }
950 
951   // For fixed width vector result intrinsics, use the generic demanded vector
952   // support.
953   if (auto *IIFVTy = dyn_cast<FixedVectorType>(II->getType())) {
954     auto VWidth = IIFVTy->getNumElements();
955     APInt UndefElts(VWidth, 0);
956     APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
957     if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, UndefElts)) {
958       if (V != II)
959         return replaceInstUsesWith(*II, V);
960       return II;
961     }
962   }
963 
964   if (II->isCommutative()) {
965     if (CallInst *NewCall = canonicalizeConstantArg0ToArg1(CI))
966       return NewCall;
967   }
968 
969   Intrinsic::ID IID = II->getIntrinsicID();
970   switch (IID) {
971   case Intrinsic::objectsize:
972     if (Value *V = lowerObjectSizeCall(II, DL, &TLI, /*MustSucceed=*/false))
973       return replaceInstUsesWith(CI, V);
974     return nullptr;
975   case Intrinsic::abs: {
976     Value *IIOperand = II->getArgOperand(0);
977     bool IntMinIsPoison = cast<Constant>(II->getArgOperand(1))->isOneValue();
978 
979     // abs(-x) -> abs(x)
980     // TODO: Copy nsw if it was present on the neg?
981     Value *X;
982     if (match(IIOperand, m_Neg(m_Value(X))))
983       return replaceOperand(*II, 0, X);
984     if (match(IIOperand, m_Select(m_Value(), m_Value(X), m_Neg(m_Deferred(X)))))
985       return replaceOperand(*II, 0, X);
986     if (match(IIOperand, m_Select(m_Value(), m_Neg(m_Value(X)), m_Deferred(X))))
987       return replaceOperand(*II, 0, X);
988 
989     if (Optional<bool> Sign = getKnownSign(IIOperand, II, DL, &AC, &DT)) {
990       // abs(x) -> x if x >= 0
991       if (!*Sign)
992         return replaceInstUsesWith(*II, IIOperand);
993 
994       // abs(x) -> -x if x < 0
995       if (IntMinIsPoison)
996         return BinaryOperator::CreateNSWNeg(IIOperand);
997       return BinaryOperator::CreateNeg(IIOperand);
998     }
999 
1000     // abs (sext X) --> zext (abs X*)
1001     // Clear the IsIntMin (nsw) bit on the abs to allow narrowing.
1002     if (match(IIOperand, m_OneUse(m_SExt(m_Value(X))))) {
1003       Value *NarrowAbs =
1004           Builder.CreateBinaryIntrinsic(Intrinsic::abs, X, Builder.getFalse());
1005       return CastInst::Create(Instruction::ZExt, NarrowAbs, II->getType());
1006     }
1007 
1008     // Match a complicated way to check if a number is odd/even:
1009     // abs (srem X, 2) --> and X, 1
1010     const APInt *C;
1011     if (match(IIOperand, m_SRem(m_Value(X), m_APInt(C))) && *C == 2)
1012       return BinaryOperator::CreateAnd(X, ConstantInt::get(II->getType(), 1));
1013 
1014     break;
1015   }
1016   case Intrinsic::umin: {
1017     Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1018     // umin(x, 1) == zext(x != 0)
1019     if (match(I1, m_One())) {
1020       Value *Zero = Constant::getNullValue(I0->getType());
1021       Value *Cmp = Builder.CreateICmpNE(I0, Zero);
1022       return CastInst::Create(Instruction::ZExt, Cmp, II->getType());
1023     }
1024     LLVM_FALLTHROUGH;
1025   }
1026   case Intrinsic::umax: {
1027     Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1028     Value *X, *Y;
1029     if (match(I0, m_ZExt(m_Value(X))) && match(I1, m_ZExt(m_Value(Y))) &&
1030         (I0->hasOneUse() || I1->hasOneUse()) && X->getType() == Y->getType()) {
1031       Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, Y);
1032       return CastInst::Create(Instruction::ZExt, NarrowMaxMin, II->getType());
1033     }
1034     Constant *C;
1035     if (match(I0, m_ZExt(m_Value(X))) && match(I1, m_Constant(C)) &&
1036         I0->hasOneUse()) {
1037       Constant *NarrowC = ConstantExpr::getTrunc(C, X->getType());
1038       if (ConstantExpr::getZExt(NarrowC, II->getType()) == C) {
1039         Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, NarrowC);
1040         return CastInst::Create(Instruction::ZExt, NarrowMaxMin, II->getType());
1041       }
1042     }
1043     // If both operands of unsigned min/max are sign-extended, it is still ok
1044     // to narrow the operation.
1045     LLVM_FALLTHROUGH;
1046   }
1047   case Intrinsic::smax:
1048   case Intrinsic::smin: {
1049     Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1050     Value *X, *Y;
1051     if (match(I0, m_SExt(m_Value(X))) && match(I1, m_SExt(m_Value(Y))) &&
1052         (I0->hasOneUse() || I1->hasOneUse()) && X->getType() == Y->getType()) {
1053       Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, Y);
1054       return CastInst::Create(Instruction::SExt, NarrowMaxMin, II->getType());
1055     }
1056 
1057     Constant *C;
1058     if (match(I0, m_SExt(m_Value(X))) && match(I1, m_Constant(C)) &&
1059         I0->hasOneUse()) {
1060       Constant *NarrowC = ConstantExpr::getTrunc(C, X->getType());
1061       if (ConstantExpr::getSExt(NarrowC, II->getType()) == C) {
1062         Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, NarrowC);
1063         return CastInst::Create(Instruction::SExt, NarrowMaxMin, II->getType());
1064       }
1065     }
1066 
1067     if (IID == Intrinsic::smax || IID == Intrinsic::smin) {
1068       // smax (neg nsw X), (neg nsw Y) --> neg nsw (smin X, Y)
1069       // smin (neg nsw X), (neg nsw Y) --> neg nsw (smax X, Y)
1070       // TODO: Canonicalize neg after min/max if I1 is constant.
1071       if (match(I0, m_NSWNeg(m_Value(X))) && match(I1, m_NSWNeg(m_Value(Y))) &&
1072           (I0->hasOneUse() || I1->hasOneUse())) {
1073         Intrinsic::ID InvID = getInverseMinMaxIntrinsic(IID);
1074         Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, X, Y);
1075         return BinaryOperator::CreateNSWNeg(InvMaxMin);
1076       }
1077     }
1078 
1079     // If we can eliminate ~A and Y is free to invert:
1080     // max ~A, Y --> ~(min A, ~Y)
1081     //
1082     // Examples:
1083     // max ~A, ~Y --> ~(min A, Y)
1084     // max ~A, C --> ~(min A, ~C)
1085     // max ~A, (max ~Y, ~Z) --> ~min( A, (min Y, Z))
1086     auto moveNotAfterMinMax = [&](Value *X, Value *Y) -> Instruction * {
1087       Value *A;
1088       if (match(X, m_OneUse(m_Not(m_Value(A)))) &&
1089           !isFreeToInvert(A, A->hasOneUse()) &&
1090           isFreeToInvert(Y, Y->hasOneUse())) {
1091         Value *NotY = Builder.CreateNot(Y);
1092         Intrinsic::ID InvID = getInverseMinMaxIntrinsic(IID);
1093         Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, A, NotY);
1094         return BinaryOperator::CreateNot(InvMaxMin);
1095       }
1096       return nullptr;
1097     };
1098 
1099     if (Instruction *I = moveNotAfterMinMax(I0, I1))
1100       return I;
1101     if (Instruction *I = moveNotAfterMinMax(I1, I0))
1102       return I;
1103 
1104     // smax(X, -X) --> abs(X)
1105     // smin(X, -X) --> -abs(X)
1106     // umax(X, -X) --> -abs(X)
1107     // umin(X, -X) --> abs(X)
1108     if (isKnownNegation(I0, I1)) {
1109       // We can choose either operand as the input to abs(), but if we can
1110       // eliminate the only use of a value, that's better for subsequent
1111       // transforms/analysis.
1112       if (I0->hasOneUse() && !I1->hasOneUse())
1113         std::swap(I0, I1);
1114 
1115       // This is some variant of abs(). See if we can propagate 'nsw' to the abs
1116       // operation and potentially its negation.
1117       bool IntMinIsPoison = isKnownNegation(I0, I1, /* NeedNSW */ true);
1118       Value *Abs = Builder.CreateBinaryIntrinsic(
1119           Intrinsic::abs, I0,
1120           ConstantInt::getBool(II->getContext(), IntMinIsPoison));
1121 
1122       // We don't have a "nabs" intrinsic, so negate if needed based on the
1123       // max/min operation.
1124       if (IID == Intrinsic::smin || IID == Intrinsic::umax)
1125         Abs = Builder.CreateNeg(Abs, "nabs", /* NUW */ false, IntMinIsPoison);
1126       return replaceInstUsesWith(CI, Abs);
1127     }
1128 
1129     if (Instruction *Sel = foldClampRangeOfTwo(II, Builder))
1130       return Sel;
1131 
1132     if (Instruction *SAdd = matchSAddSubSat(*II))
1133       return SAdd;
1134 
1135     if (match(I1, m_ImmConstant()))
1136       if (auto *Sel = dyn_cast<SelectInst>(I0))
1137         if (Instruction *R = FoldOpIntoSelect(*II, Sel))
1138           return R;
1139 
1140     if (Instruction *NewMinMax = factorizeMinMaxTree(II))
1141        return NewMinMax;
1142 
1143     break;
1144   }
1145   case Intrinsic::bswap: {
1146     Value *IIOperand = II->getArgOperand(0);
1147     Value *X = nullptr;
1148 
1149     // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
1150     if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) {
1151       unsigned C = X->getType()->getScalarSizeInBits() -
1152                    IIOperand->getType()->getScalarSizeInBits();
1153       Value *CV = ConstantInt::get(X->getType(), C);
1154       Value *V = Builder.CreateLShr(X, CV);
1155       return new TruncInst(V, IIOperand->getType());
1156     }
1157     break;
1158   }
1159   case Intrinsic::masked_load:
1160     if (Value *SimplifiedMaskedOp = simplifyMaskedLoad(*II))
1161       return replaceInstUsesWith(CI, SimplifiedMaskedOp);
1162     break;
1163   case Intrinsic::masked_store:
1164     return simplifyMaskedStore(*II);
1165   case Intrinsic::masked_gather:
1166     return simplifyMaskedGather(*II);
1167   case Intrinsic::masked_scatter:
1168     return simplifyMaskedScatter(*II);
1169   case Intrinsic::launder_invariant_group:
1170   case Intrinsic::strip_invariant_group:
1171     if (auto *SkippedBarrier = simplifyInvariantGroupIntrinsic(*II, *this))
1172       return replaceInstUsesWith(*II, SkippedBarrier);
1173     break;
1174   case Intrinsic::powi:
1175     if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
1176       // 0 and 1 are handled in instsimplify
1177       // powi(x, -1) -> 1/x
1178       if (Power->isMinusOne())
1179         return BinaryOperator::CreateFDivFMF(ConstantFP::get(CI.getType(), 1.0),
1180                                              II->getArgOperand(0), II);
1181       // powi(x, 2) -> x*x
1182       if (Power->equalsInt(2))
1183         return BinaryOperator::CreateFMulFMF(II->getArgOperand(0),
1184                                              II->getArgOperand(0), II);
1185     }
1186     break;
1187 
1188   case Intrinsic::cttz:
1189   case Intrinsic::ctlz:
1190     if (auto *I = foldCttzCtlz(*II, *this))
1191       return I;
1192     break;
1193 
1194   case Intrinsic::ctpop:
1195     if (auto *I = foldCtpop(*II, *this))
1196       return I;
1197     break;
1198 
1199   case Intrinsic::fshl:
1200   case Intrinsic::fshr: {
1201     Value *Op0 = II->getArgOperand(0), *Op1 = II->getArgOperand(1);
1202     Type *Ty = II->getType();
1203     unsigned BitWidth = Ty->getScalarSizeInBits();
1204     Constant *ShAmtC;
1205     if (match(II->getArgOperand(2), m_ImmConstant(ShAmtC)) &&
1206         !ShAmtC->containsConstantExpression()) {
1207       // Canonicalize a shift amount constant operand to modulo the bit-width.
1208       Constant *WidthC = ConstantInt::get(Ty, BitWidth);
1209       Constant *ModuloC = ConstantExpr::getURem(ShAmtC, WidthC);
1210       if (ModuloC != ShAmtC)
1211         return replaceOperand(*II, 2, ModuloC);
1212 
1213       assert(ConstantExpr::getICmp(ICmpInst::ICMP_UGT, WidthC, ShAmtC) ==
1214                  ConstantInt::getTrue(CmpInst::makeCmpResultType(Ty)) &&
1215              "Shift amount expected to be modulo bitwidth");
1216 
1217       // Canonicalize funnel shift right by constant to funnel shift left. This
1218       // is not entirely arbitrary. For historical reasons, the backend may
1219       // recognize rotate left patterns but miss rotate right patterns.
1220       if (IID == Intrinsic::fshr) {
1221         // fshr X, Y, C --> fshl X, Y, (BitWidth - C)
1222         Constant *LeftShiftC = ConstantExpr::getSub(WidthC, ShAmtC);
1223         Module *Mod = II->getModule();
1224         Function *Fshl = Intrinsic::getDeclaration(Mod, Intrinsic::fshl, Ty);
1225         return CallInst::Create(Fshl, { Op0, Op1, LeftShiftC });
1226       }
1227       assert(IID == Intrinsic::fshl &&
1228              "All funnel shifts by simple constants should go left");
1229 
1230       // fshl(X, 0, C) --> shl X, C
1231       // fshl(X, undef, C) --> shl X, C
1232       if (match(Op1, m_ZeroInt()) || match(Op1, m_Undef()))
1233         return BinaryOperator::CreateShl(Op0, ShAmtC);
1234 
1235       // fshl(0, X, C) --> lshr X, (BW-C)
1236       // fshl(undef, X, C) --> lshr X, (BW-C)
1237       if (match(Op0, m_ZeroInt()) || match(Op0, m_Undef()))
1238         return BinaryOperator::CreateLShr(Op1,
1239                                           ConstantExpr::getSub(WidthC, ShAmtC));
1240 
1241       // fshl i16 X, X, 8 --> bswap i16 X (reduce to more-specific form)
1242       if (Op0 == Op1 && BitWidth == 16 && match(ShAmtC, m_SpecificInt(8))) {
1243         Module *Mod = II->getModule();
1244         Function *Bswap = Intrinsic::getDeclaration(Mod, Intrinsic::bswap, Ty);
1245         return CallInst::Create(Bswap, { Op0 });
1246       }
1247     }
1248 
1249     // Left or right might be masked.
1250     if (SimplifyDemandedInstructionBits(*II))
1251       return &CI;
1252 
1253     // The shift amount (operand 2) of a funnel shift is modulo the bitwidth,
1254     // so only the low bits of the shift amount are demanded if the bitwidth is
1255     // a power-of-2.
1256     if (!isPowerOf2_32(BitWidth))
1257       break;
1258     APInt Op2Demanded = APInt::getLowBitsSet(BitWidth, Log2_32_Ceil(BitWidth));
1259     KnownBits Op2Known(BitWidth);
1260     if (SimplifyDemandedBits(II, 2, Op2Demanded, Op2Known))
1261       return &CI;
1262     break;
1263   }
1264   case Intrinsic::uadd_with_overflow:
1265   case Intrinsic::sadd_with_overflow: {
1266     if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
1267       return I;
1268 
1269     // Given 2 constant operands whose sum does not overflow:
1270     // uaddo (X +nuw C0), C1 -> uaddo X, C0 + C1
1271     // saddo (X +nsw C0), C1 -> saddo X, C0 + C1
1272     Value *X;
1273     const APInt *C0, *C1;
1274     Value *Arg0 = II->getArgOperand(0);
1275     Value *Arg1 = II->getArgOperand(1);
1276     bool IsSigned = IID == Intrinsic::sadd_with_overflow;
1277     bool HasNWAdd = IsSigned ? match(Arg0, m_NSWAdd(m_Value(X), m_APInt(C0)))
1278                              : match(Arg0, m_NUWAdd(m_Value(X), m_APInt(C0)));
1279     if (HasNWAdd && match(Arg1, m_APInt(C1))) {
1280       bool Overflow;
1281       APInt NewC =
1282           IsSigned ? C1->sadd_ov(*C0, Overflow) : C1->uadd_ov(*C0, Overflow);
1283       if (!Overflow)
1284         return replaceInstUsesWith(
1285             *II, Builder.CreateBinaryIntrinsic(
1286                      IID, X, ConstantInt::get(Arg1->getType(), NewC)));
1287     }
1288     break;
1289   }
1290 
1291   case Intrinsic::umul_with_overflow:
1292   case Intrinsic::smul_with_overflow:
1293   case Intrinsic::usub_with_overflow:
1294     if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
1295       return I;
1296     break;
1297 
1298   case Intrinsic::ssub_with_overflow: {
1299     if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
1300       return I;
1301 
1302     Constant *C;
1303     Value *Arg0 = II->getArgOperand(0);
1304     Value *Arg1 = II->getArgOperand(1);
1305     // Given a constant C that is not the minimum signed value
1306     // for an integer of a given bit width:
1307     //
1308     // ssubo X, C -> saddo X, -C
1309     if (match(Arg1, m_Constant(C)) && C->isNotMinSignedValue()) {
1310       Value *NegVal = ConstantExpr::getNeg(C);
1311       // Build a saddo call that is equivalent to the discovered
1312       // ssubo call.
1313       return replaceInstUsesWith(
1314           *II, Builder.CreateBinaryIntrinsic(Intrinsic::sadd_with_overflow,
1315                                              Arg0, NegVal));
1316     }
1317 
1318     break;
1319   }
1320 
1321   case Intrinsic::uadd_sat:
1322   case Intrinsic::sadd_sat:
1323   case Intrinsic::usub_sat:
1324   case Intrinsic::ssub_sat: {
1325     SaturatingInst *SI = cast<SaturatingInst>(II);
1326     Type *Ty = SI->getType();
1327     Value *Arg0 = SI->getLHS();
1328     Value *Arg1 = SI->getRHS();
1329 
1330     // Make use of known overflow information.
1331     OverflowResult OR = computeOverflow(SI->getBinaryOp(), SI->isSigned(),
1332                                         Arg0, Arg1, SI);
1333     switch (OR) {
1334       case OverflowResult::MayOverflow:
1335         break;
1336       case OverflowResult::NeverOverflows:
1337         if (SI->isSigned())
1338           return BinaryOperator::CreateNSW(SI->getBinaryOp(), Arg0, Arg1);
1339         else
1340           return BinaryOperator::CreateNUW(SI->getBinaryOp(), Arg0, Arg1);
1341       case OverflowResult::AlwaysOverflowsLow: {
1342         unsigned BitWidth = Ty->getScalarSizeInBits();
1343         APInt Min = APSInt::getMinValue(BitWidth, !SI->isSigned());
1344         return replaceInstUsesWith(*SI, ConstantInt::get(Ty, Min));
1345       }
1346       case OverflowResult::AlwaysOverflowsHigh: {
1347         unsigned BitWidth = Ty->getScalarSizeInBits();
1348         APInt Max = APSInt::getMaxValue(BitWidth, !SI->isSigned());
1349         return replaceInstUsesWith(*SI, ConstantInt::get(Ty, Max));
1350       }
1351     }
1352 
1353     // ssub.sat(X, C) -> sadd.sat(X, -C) if C != MIN
1354     Constant *C;
1355     if (IID == Intrinsic::ssub_sat && match(Arg1, m_Constant(C)) &&
1356         C->isNotMinSignedValue()) {
1357       Value *NegVal = ConstantExpr::getNeg(C);
1358       return replaceInstUsesWith(
1359           *II, Builder.CreateBinaryIntrinsic(
1360               Intrinsic::sadd_sat, Arg0, NegVal));
1361     }
1362 
1363     // sat(sat(X + Val2) + Val) -> sat(X + (Val+Val2))
1364     // sat(sat(X - Val2) - Val) -> sat(X - (Val+Val2))
1365     // if Val and Val2 have the same sign
1366     if (auto *Other = dyn_cast<IntrinsicInst>(Arg0)) {
1367       Value *X;
1368       const APInt *Val, *Val2;
1369       APInt NewVal;
1370       bool IsUnsigned =
1371           IID == Intrinsic::uadd_sat || IID == Intrinsic::usub_sat;
1372       if (Other->getIntrinsicID() == IID &&
1373           match(Arg1, m_APInt(Val)) &&
1374           match(Other->getArgOperand(0), m_Value(X)) &&
1375           match(Other->getArgOperand(1), m_APInt(Val2))) {
1376         if (IsUnsigned)
1377           NewVal = Val->uadd_sat(*Val2);
1378         else if (Val->isNonNegative() == Val2->isNonNegative()) {
1379           bool Overflow;
1380           NewVal = Val->sadd_ov(*Val2, Overflow);
1381           if (Overflow) {
1382             // Both adds together may add more than SignedMaxValue
1383             // without saturating the final result.
1384             break;
1385           }
1386         } else {
1387           // Cannot fold saturated addition with different signs.
1388           break;
1389         }
1390 
1391         return replaceInstUsesWith(
1392             *II, Builder.CreateBinaryIntrinsic(
1393                      IID, X, ConstantInt::get(II->getType(), NewVal)));
1394       }
1395     }
1396     break;
1397   }
1398 
1399   case Intrinsic::minnum:
1400   case Intrinsic::maxnum:
1401   case Intrinsic::minimum:
1402   case Intrinsic::maximum: {
1403     Value *Arg0 = II->getArgOperand(0);
1404     Value *Arg1 = II->getArgOperand(1);
1405     Value *X, *Y;
1406     if (match(Arg0, m_FNeg(m_Value(X))) && match(Arg1, m_FNeg(m_Value(Y))) &&
1407         (Arg0->hasOneUse() || Arg1->hasOneUse())) {
1408       // If both operands are negated, invert the call and negate the result:
1409       // min(-X, -Y) --> -(max(X, Y))
1410       // max(-X, -Y) --> -(min(X, Y))
1411       Intrinsic::ID NewIID;
1412       switch (IID) {
1413       case Intrinsic::maxnum:
1414         NewIID = Intrinsic::minnum;
1415         break;
1416       case Intrinsic::minnum:
1417         NewIID = Intrinsic::maxnum;
1418         break;
1419       case Intrinsic::maximum:
1420         NewIID = Intrinsic::minimum;
1421         break;
1422       case Intrinsic::minimum:
1423         NewIID = Intrinsic::maximum;
1424         break;
1425       default:
1426         llvm_unreachable("unexpected intrinsic ID");
1427       }
1428       Value *NewCall = Builder.CreateBinaryIntrinsic(NewIID, X, Y, II);
1429       Instruction *FNeg = UnaryOperator::CreateFNeg(NewCall);
1430       FNeg->copyIRFlags(II);
1431       return FNeg;
1432     }
1433 
1434     // m(m(X, C2), C1) -> m(X, C)
1435     const APFloat *C1, *C2;
1436     if (auto *M = dyn_cast<IntrinsicInst>(Arg0)) {
1437       if (M->getIntrinsicID() == IID && match(Arg1, m_APFloat(C1)) &&
1438           ((match(M->getArgOperand(0), m_Value(X)) &&
1439             match(M->getArgOperand(1), m_APFloat(C2))) ||
1440            (match(M->getArgOperand(1), m_Value(X)) &&
1441             match(M->getArgOperand(0), m_APFloat(C2))))) {
1442         APFloat Res(0.0);
1443         switch (IID) {
1444         case Intrinsic::maxnum:
1445           Res = maxnum(*C1, *C2);
1446           break;
1447         case Intrinsic::minnum:
1448           Res = minnum(*C1, *C2);
1449           break;
1450         case Intrinsic::maximum:
1451           Res = maximum(*C1, *C2);
1452           break;
1453         case Intrinsic::minimum:
1454           Res = minimum(*C1, *C2);
1455           break;
1456         default:
1457           llvm_unreachable("unexpected intrinsic ID");
1458         }
1459         Instruction *NewCall = Builder.CreateBinaryIntrinsic(
1460             IID, X, ConstantFP::get(Arg0->getType(), Res), II);
1461         // TODO: Conservatively intersecting FMF. If Res == C2, the transform
1462         //       was a simplification (so Arg0 and its original flags could
1463         //       propagate?)
1464         NewCall->andIRFlags(M);
1465         return replaceInstUsesWith(*II, NewCall);
1466       }
1467     }
1468 
1469     // m((fpext X), (fpext Y)) -> fpext (m(X, Y))
1470     if (match(Arg0, m_OneUse(m_FPExt(m_Value(X)))) &&
1471         match(Arg1, m_OneUse(m_FPExt(m_Value(Y)))) &&
1472         X->getType() == Y->getType()) {
1473       Value *NewCall =
1474           Builder.CreateBinaryIntrinsic(IID, X, Y, II, II->getName());
1475       return new FPExtInst(NewCall, II->getType());
1476     }
1477 
1478     // max X, -X --> fabs X
1479     // min X, -X --> -(fabs X)
1480     // TODO: Remove one-use limitation? That is obviously better for max.
1481     //       It would be an extra instruction for min (fnabs), but that is
1482     //       still likely better for analysis and codegen.
1483     if ((match(Arg0, m_OneUse(m_FNeg(m_Value(X)))) && Arg1 == X) ||
1484         (match(Arg1, m_OneUse(m_FNeg(m_Value(X)))) && Arg0 == X)) {
1485       Value *R = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, X, II);
1486       if (IID == Intrinsic::minimum || IID == Intrinsic::minnum)
1487         R = Builder.CreateFNegFMF(R, II);
1488       return replaceInstUsesWith(*II, R);
1489     }
1490 
1491     break;
1492   }
1493   case Intrinsic::fmuladd: {
1494     // Canonicalize fast fmuladd to the separate fmul + fadd.
1495     if (II->isFast()) {
1496       BuilderTy::FastMathFlagGuard Guard(Builder);
1497       Builder.setFastMathFlags(II->getFastMathFlags());
1498       Value *Mul = Builder.CreateFMul(II->getArgOperand(0),
1499                                       II->getArgOperand(1));
1500       Value *Add = Builder.CreateFAdd(Mul, II->getArgOperand(2));
1501       Add->takeName(II);
1502       return replaceInstUsesWith(*II, Add);
1503     }
1504 
1505     // Try to simplify the underlying FMul.
1506     if (Value *V = SimplifyFMulInst(II->getArgOperand(0), II->getArgOperand(1),
1507                                     II->getFastMathFlags(),
1508                                     SQ.getWithInstruction(II))) {
1509       auto *FAdd = BinaryOperator::CreateFAdd(V, II->getArgOperand(2));
1510       FAdd->copyFastMathFlags(II);
1511       return FAdd;
1512     }
1513 
1514     LLVM_FALLTHROUGH;
1515   }
1516   case Intrinsic::fma: {
1517     // fma fneg(x), fneg(y), z -> fma x, y, z
1518     Value *Src0 = II->getArgOperand(0);
1519     Value *Src1 = II->getArgOperand(1);
1520     Value *X, *Y;
1521     if (match(Src0, m_FNeg(m_Value(X))) && match(Src1, m_FNeg(m_Value(Y)))) {
1522       replaceOperand(*II, 0, X);
1523       replaceOperand(*II, 1, Y);
1524       return II;
1525     }
1526 
1527     // fma fabs(x), fabs(x), z -> fma x, x, z
1528     if (match(Src0, m_FAbs(m_Value(X))) &&
1529         match(Src1, m_FAbs(m_Specific(X)))) {
1530       replaceOperand(*II, 0, X);
1531       replaceOperand(*II, 1, X);
1532       return II;
1533     }
1534 
1535     // Try to simplify the underlying FMul. We can only apply simplifications
1536     // that do not require rounding.
1537     if (Value *V = SimplifyFMAFMul(II->getArgOperand(0), II->getArgOperand(1),
1538                                    II->getFastMathFlags(),
1539                                    SQ.getWithInstruction(II))) {
1540       auto *FAdd = BinaryOperator::CreateFAdd(V, II->getArgOperand(2));
1541       FAdd->copyFastMathFlags(II);
1542       return FAdd;
1543     }
1544 
1545     // fma x, y, 0 -> fmul x, y
1546     // This is always valid for -0.0, but requires nsz for +0.0 as
1547     // -0.0 + 0.0 = 0.0, which would not be the same as the fmul on its own.
1548     if (match(II->getArgOperand(2), m_NegZeroFP()) ||
1549         (match(II->getArgOperand(2), m_PosZeroFP()) &&
1550          II->getFastMathFlags().noSignedZeros()))
1551       return BinaryOperator::CreateFMulFMF(Src0, Src1, II);
1552 
1553     break;
1554   }
1555   case Intrinsic::isnan: {
1556     Value *Arg = II->getArgOperand(0);
1557     if (const auto *FPMO = dyn_cast<FPMathOperator>(Arg)) {
1558       // If argument of this intrinsic call is an instruction that has 'nnan'
1559       // flag, we can assume that NaN cannot be produced, otherwise it is
1560       // undefined behavior.
1561       if (FPMO->getFastMathFlags().noNaNs())
1562         return replaceInstUsesWith(
1563             *II, ConstantInt::get(II->getType(), APInt::getNullValue(1)));
1564     }
1565     break;
1566   }
1567   case Intrinsic::copysign: {
1568     Value *Mag = II->getArgOperand(0), *Sign = II->getArgOperand(1);
1569     if (SignBitMustBeZero(Sign, &TLI)) {
1570       // If we know that the sign argument is positive, reduce to FABS:
1571       // copysign Mag, +Sign --> fabs Mag
1572       Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, Mag, II);
1573       return replaceInstUsesWith(*II, Fabs);
1574     }
1575     // TODO: There should be a ValueTracking sibling like SignBitMustBeOne.
1576     const APFloat *C;
1577     if (match(Sign, m_APFloat(C)) && C->isNegative()) {
1578       // If we know that the sign argument is negative, reduce to FNABS:
1579       // copysign Mag, -Sign --> fneg (fabs Mag)
1580       Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, Mag, II);
1581       return replaceInstUsesWith(*II, Builder.CreateFNegFMF(Fabs, II));
1582     }
1583 
1584     // Propagate sign argument through nested calls:
1585     // copysign Mag, (copysign ?, X) --> copysign Mag, X
1586     Value *X;
1587     if (match(Sign, m_Intrinsic<Intrinsic::copysign>(m_Value(), m_Value(X))))
1588       return replaceOperand(*II, 1, X);
1589 
1590     // Peek through changes of magnitude's sign-bit. This call rewrites those:
1591     // copysign (fabs X), Sign --> copysign X, Sign
1592     // copysign (fneg X), Sign --> copysign X, Sign
1593     if (match(Mag, m_FAbs(m_Value(X))) || match(Mag, m_FNeg(m_Value(X))))
1594       return replaceOperand(*II, 0, X);
1595 
1596     break;
1597   }
1598   case Intrinsic::fabs: {
1599     Value *Cond, *TVal, *FVal;
1600     if (match(II->getArgOperand(0),
1601               m_Select(m_Value(Cond), m_Value(TVal), m_Value(FVal)))) {
1602       // fabs (select Cond, TrueC, FalseC) --> select Cond, AbsT, AbsF
1603       if (isa<Constant>(TVal) && isa<Constant>(FVal)) {
1604         CallInst *AbsT = Builder.CreateCall(II->getCalledFunction(), {TVal});
1605         CallInst *AbsF = Builder.CreateCall(II->getCalledFunction(), {FVal});
1606         return SelectInst::Create(Cond, AbsT, AbsF);
1607       }
1608       // fabs (select Cond, -FVal, FVal) --> fabs FVal
1609       if (match(TVal, m_FNeg(m_Specific(FVal))))
1610         return replaceOperand(*II, 0, FVal);
1611       // fabs (select Cond, TVal, -TVal) --> fabs TVal
1612       if (match(FVal, m_FNeg(m_Specific(TVal))))
1613         return replaceOperand(*II, 0, TVal);
1614     }
1615 
1616     LLVM_FALLTHROUGH;
1617   }
1618   case Intrinsic::ceil:
1619   case Intrinsic::floor:
1620   case Intrinsic::round:
1621   case Intrinsic::roundeven:
1622   case Intrinsic::nearbyint:
1623   case Intrinsic::rint:
1624   case Intrinsic::trunc: {
1625     Value *ExtSrc;
1626     if (match(II->getArgOperand(0), m_OneUse(m_FPExt(m_Value(ExtSrc))))) {
1627       // Narrow the call: intrinsic (fpext x) -> fpext (intrinsic x)
1628       Value *NarrowII = Builder.CreateUnaryIntrinsic(IID, ExtSrc, II);
1629       return new FPExtInst(NarrowII, II->getType());
1630     }
1631     break;
1632   }
1633   case Intrinsic::cos:
1634   case Intrinsic::amdgcn_cos: {
1635     Value *X;
1636     Value *Src = II->getArgOperand(0);
1637     if (match(Src, m_FNeg(m_Value(X))) || match(Src, m_FAbs(m_Value(X)))) {
1638       // cos(-x) -> cos(x)
1639       // cos(fabs(x)) -> cos(x)
1640       return replaceOperand(*II, 0, X);
1641     }
1642     break;
1643   }
1644   case Intrinsic::sin: {
1645     Value *X;
1646     if (match(II->getArgOperand(0), m_OneUse(m_FNeg(m_Value(X))))) {
1647       // sin(-x) --> -sin(x)
1648       Value *NewSin = Builder.CreateUnaryIntrinsic(Intrinsic::sin, X, II);
1649       Instruction *FNeg = UnaryOperator::CreateFNeg(NewSin);
1650       FNeg->copyFastMathFlags(II);
1651       return FNeg;
1652     }
1653     break;
1654   }
1655 
1656   case Intrinsic::arm_neon_vtbl1:
1657   case Intrinsic::aarch64_neon_tbl1:
1658     if (Value *V = simplifyNeonTbl1(*II, Builder))
1659       return replaceInstUsesWith(*II, V);
1660     break;
1661 
1662   case Intrinsic::arm_neon_vmulls:
1663   case Intrinsic::arm_neon_vmullu:
1664   case Intrinsic::aarch64_neon_smull:
1665   case Intrinsic::aarch64_neon_umull: {
1666     Value *Arg0 = II->getArgOperand(0);
1667     Value *Arg1 = II->getArgOperand(1);
1668 
1669     // Handle mul by zero first:
1670     if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
1671       return replaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
1672     }
1673 
1674     // Check for constant LHS & RHS - in this case we just simplify.
1675     bool Zext = (IID == Intrinsic::arm_neon_vmullu ||
1676                  IID == Intrinsic::aarch64_neon_umull);
1677     VectorType *NewVT = cast<VectorType>(II->getType());
1678     if (Constant *CV0 = dyn_cast<Constant>(Arg0)) {
1679       if (Constant *CV1 = dyn_cast<Constant>(Arg1)) {
1680         CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext);
1681         CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext);
1682 
1683         return replaceInstUsesWith(CI, ConstantExpr::getMul(CV0, CV1));
1684       }
1685 
1686       // Couldn't simplify - canonicalize constant to the RHS.
1687       std::swap(Arg0, Arg1);
1688     }
1689 
1690     // Handle mul by one:
1691     if (Constant *CV1 = dyn_cast<Constant>(Arg1))
1692       if (ConstantInt *Splat =
1693               dyn_cast_or_null<ConstantInt>(CV1->getSplatValue()))
1694         if (Splat->isOne())
1695           return CastInst::CreateIntegerCast(Arg0, II->getType(),
1696                                              /*isSigned=*/!Zext);
1697 
1698     break;
1699   }
1700   case Intrinsic::arm_neon_aesd:
1701   case Intrinsic::arm_neon_aese:
1702   case Intrinsic::aarch64_crypto_aesd:
1703   case Intrinsic::aarch64_crypto_aese: {
1704     Value *DataArg = II->getArgOperand(0);
1705     Value *KeyArg  = II->getArgOperand(1);
1706 
1707     // Try to use the builtin XOR in AESE and AESD to eliminate a prior XOR
1708     Value *Data, *Key;
1709     if (match(KeyArg, m_ZeroInt()) &&
1710         match(DataArg, m_Xor(m_Value(Data), m_Value(Key)))) {
1711       replaceOperand(*II, 0, Data);
1712       replaceOperand(*II, 1, Key);
1713       return II;
1714     }
1715     break;
1716   }
1717   case Intrinsic::hexagon_V6_vandvrt:
1718   case Intrinsic::hexagon_V6_vandvrt_128B: {
1719     // Simplify Q -> V -> Q conversion.
1720     if (auto Op0 = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
1721       Intrinsic::ID ID0 = Op0->getIntrinsicID();
1722       if (ID0 != Intrinsic::hexagon_V6_vandqrt &&
1723           ID0 != Intrinsic::hexagon_V6_vandqrt_128B)
1724         break;
1725       Value *Bytes = Op0->getArgOperand(1), *Mask = II->getArgOperand(1);
1726       uint64_t Bytes1 = computeKnownBits(Bytes, 0, Op0).One.getZExtValue();
1727       uint64_t Mask1 = computeKnownBits(Mask, 0, II).One.getZExtValue();
1728       // Check if every byte has common bits in Bytes and Mask.
1729       uint64_t C = Bytes1 & Mask1;
1730       if ((C & 0xFF) && (C & 0xFF00) && (C & 0xFF0000) && (C & 0xFF000000))
1731         return replaceInstUsesWith(*II, Op0->getArgOperand(0));
1732     }
1733     break;
1734   }
1735   case Intrinsic::stackrestore: {
1736     // If the save is right next to the restore, remove the restore.  This can
1737     // happen when variable allocas are DCE'd.
1738     if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
1739       if (SS->getIntrinsicID() == Intrinsic::stacksave) {
1740         // Skip over debug info.
1741         if (SS->getNextNonDebugInstruction() == II) {
1742           return eraseInstFromFunction(CI);
1743         }
1744       }
1745     }
1746 
1747     // Scan down this block to see if there is another stack restore in the
1748     // same block without an intervening call/alloca.
1749     BasicBlock::iterator BI(II);
1750     Instruction *TI = II->getParent()->getTerminator();
1751     bool CannotRemove = false;
1752     for (++BI; &*BI != TI; ++BI) {
1753       if (isa<AllocaInst>(BI)) {
1754         CannotRemove = true;
1755         break;
1756       }
1757       if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
1758         if (auto *II2 = dyn_cast<IntrinsicInst>(BCI)) {
1759           // If there is a stackrestore below this one, remove this one.
1760           if (II2->getIntrinsicID() == Intrinsic::stackrestore)
1761             return eraseInstFromFunction(CI);
1762 
1763           // Bail if we cross over an intrinsic with side effects, such as
1764           // llvm.stacksave, or llvm.read_register.
1765           if (II2->mayHaveSideEffects()) {
1766             CannotRemove = true;
1767             break;
1768           }
1769         } else {
1770           // If we found a non-intrinsic call, we can't remove the stack
1771           // restore.
1772           CannotRemove = true;
1773           break;
1774         }
1775       }
1776     }
1777 
1778     // If the stack restore is in a return, resume, or unwind block and if there
1779     // are no allocas or calls between the restore and the return, nuke the
1780     // restore.
1781     if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI)))
1782       return eraseInstFromFunction(CI);
1783     break;
1784   }
1785   case Intrinsic::lifetime_end:
1786     // Asan needs to poison memory to detect invalid access which is possible
1787     // even for empty lifetime range.
1788     if (II->getFunction()->hasFnAttribute(Attribute::SanitizeAddress) ||
1789         II->getFunction()->hasFnAttribute(Attribute::SanitizeMemory) ||
1790         II->getFunction()->hasFnAttribute(Attribute::SanitizeHWAddress))
1791       break;
1792 
1793     if (removeTriviallyEmptyRange(*II, *this, [](const IntrinsicInst &I) {
1794           return I.getIntrinsicID() == Intrinsic::lifetime_start;
1795         }))
1796       return nullptr;
1797     break;
1798   case Intrinsic::assume: {
1799     Value *IIOperand = II->getArgOperand(0);
1800     SmallVector<OperandBundleDef, 4> OpBundles;
1801     II->getOperandBundlesAsDefs(OpBundles);
1802 
1803     /// This will remove the boolean Condition from the assume given as
1804     /// argument and remove the assume if it becomes useless.
1805     /// always returns nullptr for use as a return values.
1806     auto RemoveConditionFromAssume = [&](Instruction *Assume) -> Instruction * {
1807       assert(isa<AssumeInst>(Assume));
1808       if (isAssumeWithEmptyBundle(*cast<AssumeInst>(II)))
1809         return eraseInstFromFunction(CI);
1810       replaceUse(II->getOperandUse(0), ConstantInt::getTrue(II->getContext()));
1811       return nullptr;
1812     };
1813     // Remove an assume if it is followed by an identical assume.
1814     // TODO: Do we need this? Unless there are conflicting assumptions, the
1815     // computeKnownBits(IIOperand) below here eliminates redundant assumes.
1816     Instruction *Next = II->getNextNonDebugInstruction();
1817     if (match(Next, m_Intrinsic<Intrinsic::assume>(m_Specific(IIOperand))))
1818       return RemoveConditionFromAssume(Next);
1819 
1820     // Canonicalize assume(a && b) -> assume(a); assume(b);
1821     // Note: New assumption intrinsics created here are registered by
1822     // the InstCombineIRInserter object.
1823     FunctionType *AssumeIntrinsicTy = II->getFunctionType();
1824     Value *AssumeIntrinsic = II->getCalledOperand();
1825     Value *A, *B;
1826     if (match(IIOperand, m_LogicalAnd(m_Value(A), m_Value(B)))) {
1827       Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic, A, OpBundles,
1828                          II->getName());
1829       Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic, B, II->getName());
1830       return eraseInstFromFunction(*II);
1831     }
1832     // assume(!(a || b)) -> assume(!a); assume(!b);
1833     if (match(IIOperand, m_Not(m_LogicalOr(m_Value(A), m_Value(B))))) {
1834       Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic,
1835                          Builder.CreateNot(A), OpBundles, II->getName());
1836       Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic,
1837                          Builder.CreateNot(B), II->getName());
1838       return eraseInstFromFunction(*II);
1839     }
1840 
1841     // assume( (load addr) != null ) -> add 'nonnull' metadata to load
1842     // (if assume is valid at the load)
1843     CmpInst::Predicate Pred;
1844     Instruction *LHS;
1845     if (match(IIOperand, m_ICmp(Pred, m_Instruction(LHS), m_Zero())) &&
1846         Pred == ICmpInst::ICMP_NE && LHS->getOpcode() == Instruction::Load &&
1847         LHS->getType()->isPointerTy() &&
1848         isValidAssumeForContext(II, LHS, &DT)) {
1849       MDNode *MD = MDNode::get(II->getContext(), None);
1850       LHS->setMetadata(LLVMContext::MD_nonnull, MD);
1851       return RemoveConditionFromAssume(II);
1852 
1853       // TODO: apply nonnull return attributes to calls and invokes
1854       // TODO: apply range metadata for range check patterns?
1855     }
1856 
1857     // Convert nonnull assume like:
1858     // %A = icmp ne i32* %PTR, null
1859     // call void @llvm.assume(i1 %A)
1860     // into
1861     // call void @llvm.assume(i1 true) [ "nonnull"(i32* %PTR) ]
1862     if (EnableKnowledgeRetention &&
1863         match(IIOperand, m_Cmp(Pred, m_Value(A), m_Zero())) &&
1864         Pred == CmpInst::ICMP_NE && A->getType()->isPointerTy()) {
1865       if (auto *Replacement = buildAssumeFromKnowledge(
1866               {RetainedKnowledge{Attribute::NonNull, 0, A}}, Next, &AC, &DT)) {
1867 
1868         Replacement->insertBefore(Next);
1869         AC.registerAssumption(Replacement);
1870         return RemoveConditionFromAssume(II);
1871       }
1872     }
1873 
1874     // Convert alignment assume like:
1875     // %B = ptrtoint i32* %A to i64
1876     // %C = and i64 %B, Constant
1877     // %D = icmp eq i64 %C, 0
1878     // call void @llvm.assume(i1 %D)
1879     // into
1880     // call void @llvm.assume(i1 true) [ "align"(i32* [[A]], i64  Constant + 1)]
1881     uint64_t AlignMask;
1882     if (EnableKnowledgeRetention &&
1883         match(IIOperand,
1884               m_Cmp(Pred, m_And(m_Value(A), m_ConstantInt(AlignMask)),
1885                     m_Zero())) &&
1886         Pred == CmpInst::ICMP_EQ) {
1887       if (isPowerOf2_64(AlignMask + 1)) {
1888         uint64_t Offset = 0;
1889         match(A, m_Add(m_Value(A), m_ConstantInt(Offset)));
1890         if (match(A, m_PtrToInt(m_Value(A)))) {
1891           /// Note: this doesn't preserve the offset information but merges
1892           /// offset and alignment.
1893           /// TODO: we can generate a GEP instead of merging the alignment with
1894           /// the offset.
1895           RetainedKnowledge RK{Attribute::Alignment,
1896                                (unsigned)MinAlign(Offset, AlignMask + 1), A};
1897           if (auto *Replacement =
1898                   buildAssumeFromKnowledge(RK, Next, &AC, &DT)) {
1899 
1900             Replacement->insertAfter(II);
1901             AC.registerAssumption(Replacement);
1902           }
1903           return RemoveConditionFromAssume(II);
1904         }
1905       }
1906     }
1907 
1908     /// Canonicalize Knowledge in operand bundles.
1909     if (EnableKnowledgeRetention && II->hasOperandBundles()) {
1910       for (unsigned Idx = 0; Idx < II->getNumOperandBundles(); Idx++) {
1911         auto &BOI = II->bundle_op_info_begin()[Idx];
1912         RetainedKnowledge RK =
1913           llvm::getKnowledgeFromBundle(cast<AssumeInst>(*II), BOI);
1914         if (BOI.End - BOI.Begin > 2)
1915           continue; // Prevent reducing knowledge in an align with offset since
1916                     // extracting a RetainedKnowledge form them looses offset
1917                     // information
1918         RetainedKnowledge CanonRK =
1919           llvm::simplifyRetainedKnowledge(cast<AssumeInst>(II), RK,
1920                                           &getAssumptionCache(),
1921                                           &getDominatorTree());
1922         if (CanonRK == RK)
1923           continue;
1924         if (!CanonRK) {
1925           if (BOI.End - BOI.Begin > 0) {
1926             Worklist.pushValue(II->op_begin()[BOI.Begin]);
1927             Value::dropDroppableUse(II->op_begin()[BOI.Begin]);
1928           }
1929           continue;
1930         }
1931         assert(RK.AttrKind == CanonRK.AttrKind);
1932         if (BOI.End - BOI.Begin > 0)
1933           II->op_begin()[BOI.Begin].set(CanonRK.WasOn);
1934         if (BOI.End - BOI.Begin > 1)
1935           II->op_begin()[BOI.Begin + 1].set(ConstantInt::get(
1936               Type::getInt64Ty(II->getContext()), CanonRK.ArgValue));
1937         if (RK.WasOn)
1938           Worklist.pushValue(RK.WasOn);
1939         return II;
1940       }
1941     }
1942 
1943     // If there is a dominating assume with the same condition as this one,
1944     // then this one is redundant, and should be removed.
1945     KnownBits Known(1);
1946     computeKnownBits(IIOperand, Known, 0, II);
1947     if (Known.isAllOnes() && isAssumeWithEmptyBundle(cast<AssumeInst>(*II)))
1948       return eraseInstFromFunction(*II);
1949 
1950     // Update the cache of affected values for this assumption (we might be
1951     // here because we just simplified the condition).
1952     AC.updateAffectedValues(cast<AssumeInst>(II));
1953     break;
1954   }
1955   case Intrinsic::experimental_guard: {
1956     // Is this guard followed by another guard?  We scan forward over a small
1957     // fixed window of instructions to handle common cases with conditions
1958     // computed between guards.
1959     Instruction *NextInst = II->getNextNonDebugInstruction();
1960     for (unsigned i = 0; i < GuardWideningWindow; i++) {
1961       // Note: Using context-free form to avoid compile time blow up
1962       if (!isSafeToSpeculativelyExecute(NextInst))
1963         break;
1964       NextInst = NextInst->getNextNonDebugInstruction();
1965     }
1966     Value *NextCond = nullptr;
1967     if (match(NextInst,
1968               m_Intrinsic<Intrinsic::experimental_guard>(m_Value(NextCond)))) {
1969       Value *CurrCond = II->getArgOperand(0);
1970 
1971       // Remove a guard that it is immediately preceded by an identical guard.
1972       // Otherwise canonicalize guard(a); guard(b) -> guard(a & b).
1973       if (CurrCond != NextCond) {
1974         Instruction *MoveI = II->getNextNonDebugInstruction();
1975         while (MoveI != NextInst) {
1976           auto *Temp = MoveI;
1977           MoveI = MoveI->getNextNonDebugInstruction();
1978           Temp->moveBefore(II);
1979         }
1980         replaceOperand(*II, 0, Builder.CreateAnd(CurrCond, NextCond));
1981       }
1982       eraseInstFromFunction(*NextInst);
1983       return II;
1984     }
1985     break;
1986   }
1987   case Intrinsic::experimental_vector_insert: {
1988     Value *Vec = II->getArgOperand(0);
1989     Value *SubVec = II->getArgOperand(1);
1990     Value *Idx = II->getArgOperand(2);
1991     auto *DstTy = dyn_cast<FixedVectorType>(II->getType());
1992     auto *VecTy = dyn_cast<FixedVectorType>(Vec->getType());
1993     auto *SubVecTy = dyn_cast<FixedVectorType>(SubVec->getType());
1994 
1995     // Only canonicalize if the destination vector, Vec, and SubVec are all
1996     // fixed vectors.
1997     if (DstTy && VecTy && SubVecTy) {
1998       unsigned DstNumElts = DstTy->getNumElements();
1999       unsigned VecNumElts = VecTy->getNumElements();
2000       unsigned SubVecNumElts = SubVecTy->getNumElements();
2001       unsigned IdxN = cast<ConstantInt>(Idx)->getZExtValue();
2002 
2003       // An insert that entirely overwrites Vec with SubVec is a nop.
2004       if (VecNumElts == SubVecNumElts)
2005         return replaceInstUsesWith(CI, SubVec);
2006 
2007       // Widen SubVec into a vector of the same width as Vec, since
2008       // shufflevector requires the two input vectors to be the same width.
2009       // Elements beyond the bounds of SubVec within the widened vector are
2010       // undefined.
2011       SmallVector<int, 8> WidenMask;
2012       unsigned i;
2013       for (i = 0; i != SubVecNumElts; ++i)
2014         WidenMask.push_back(i);
2015       for (; i != VecNumElts; ++i)
2016         WidenMask.push_back(UndefMaskElem);
2017 
2018       Value *WidenShuffle = Builder.CreateShuffleVector(SubVec, WidenMask);
2019 
2020       SmallVector<int, 8> Mask;
2021       for (unsigned i = 0; i != IdxN; ++i)
2022         Mask.push_back(i);
2023       for (unsigned i = DstNumElts; i != DstNumElts + SubVecNumElts; ++i)
2024         Mask.push_back(i);
2025       for (unsigned i = IdxN + SubVecNumElts; i != DstNumElts; ++i)
2026         Mask.push_back(i);
2027 
2028       Value *Shuffle = Builder.CreateShuffleVector(Vec, WidenShuffle, Mask);
2029       return replaceInstUsesWith(CI, Shuffle);
2030     }
2031     break;
2032   }
2033   case Intrinsic::experimental_vector_extract: {
2034     Value *Vec = II->getArgOperand(0);
2035     Value *Idx = II->getArgOperand(1);
2036 
2037     auto *DstTy = dyn_cast<FixedVectorType>(II->getType());
2038     auto *VecTy = dyn_cast<FixedVectorType>(Vec->getType());
2039 
2040     // Only canonicalize if the the destination vector and Vec are fixed
2041     // vectors.
2042     if (DstTy && VecTy) {
2043       unsigned DstNumElts = DstTy->getNumElements();
2044       unsigned VecNumElts = VecTy->getNumElements();
2045       unsigned IdxN = cast<ConstantInt>(Idx)->getZExtValue();
2046 
2047       // Extracting the entirety of Vec is a nop.
2048       if (VecNumElts == DstNumElts) {
2049         replaceInstUsesWith(CI, Vec);
2050         return eraseInstFromFunction(CI);
2051       }
2052 
2053       SmallVector<int, 8> Mask;
2054       for (unsigned i = 0; i != DstNumElts; ++i)
2055         Mask.push_back(IdxN + i);
2056 
2057       Value *Shuffle = Builder.CreateShuffleVector(Vec, Mask);
2058       return replaceInstUsesWith(CI, Shuffle);
2059     }
2060     break;
2061   }
2062   case Intrinsic::vector_reduce_or:
2063   case Intrinsic::vector_reduce_and: {
2064     // Canonicalize logical or/and reductions:
2065     // Or reduction for i1 is represented as:
2066     // %val = bitcast <ReduxWidth x i1> to iReduxWidth
2067     // %res = cmp ne iReduxWidth %val, 0
2068     // And reduction for i1 is represented as:
2069     // %val = bitcast <ReduxWidth x i1> to iReduxWidth
2070     // %res = cmp eq iReduxWidth %val, 11111
2071     Value *Arg = II->getArgOperand(0);
2072     Value *Vect;
2073     if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2074       if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2075         if (FTy->getElementType() == Builder.getInt1Ty()) {
2076           Value *Res = Builder.CreateBitCast(
2077               Vect, Builder.getIntNTy(FTy->getNumElements()));
2078           if (IID == Intrinsic::vector_reduce_and) {
2079             Res = Builder.CreateICmpEQ(
2080                 Res, ConstantInt::getAllOnesValue(Res->getType()));
2081           } else {
2082             assert(IID == Intrinsic::vector_reduce_or &&
2083                    "Expected or reduction.");
2084             Res = Builder.CreateIsNotNull(Res);
2085           }
2086           if (Arg != Vect)
2087             Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
2088                                      II->getType());
2089           return replaceInstUsesWith(CI, Res);
2090         }
2091     }
2092     LLVM_FALLTHROUGH;
2093   }
2094   case Intrinsic::vector_reduce_add: {
2095     if (IID == Intrinsic::vector_reduce_add) {
2096       // Convert vector_reduce_add(ZExt(<n x i1>)) to
2097       // ZExtOrTrunc(ctpop(bitcast <n x i1> to in)).
2098       // Convert vector_reduce_add(SExt(<n x i1>)) to
2099       // -ZExtOrTrunc(ctpop(bitcast <n x i1> to in)).
2100       // Convert vector_reduce_add(<n x i1>) to
2101       // Trunc(ctpop(bitcast <n x i1> to in)).
2102       Value *Arg = II->getArgOperand(0);
2103       Value *Vect;
2104       if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2105         if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2106           if (FTy->getElementType() == Builder.getInt1Ty()) {
2107             Value *V = Builder.CreateBitCast(
2108                 Vect, Builder.getIntNTy(FTy->getNumElements()));
2109             Value *Res = Builder.CreateUnaryIntrinsic(Intrinsic::ctpop, V);
2110             if (Res->getType() != II->getType())
2111               Res = Builder.CreateZExtOrTrunc(Res, II->getType());
2112             if (Arg != Vect &&
2113                 cast<Instruction>(Arg)->getOpcode() == Instruction::SExt)
2114               Res = Builder.CreateNeg(Res);
2115             return replaceInstUsesWith(CI, Res);
2116           }
2117       }
2118     }
2119     LLVM_FALLTHROUGH;
2120   }
2121   case Intrinsic::vector_reduce_xor: {
2122     if (IID == Intrinsic::vector_reduce_xor) {
2123       // Exclusive disjunction reduction over the vector with
2124       // (potentially-extended) i1 element type is actually a
2125       // (potentially-extended) arithmetic `add` reduction over the original
2126       // non-extended value:
2127       //   vector_reduce_xor(?ext(<n x i1>))
2128       //     -->
2129       //   ?ext(vector_reduce_add(<n x i1>))
2130       Value *Arg = II->getArgOperand(0);
2131       Value *Vect;
2132       if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2133         if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2134           if (FTy->getElementType() == Builder.getInt1Ty()) {
2135             Value *Res = Builder.CreateAddReduce(Vect);
2136             if (Arg != Vect)
2137               Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
2138                                        II->getType());
2139             return replaceInstUsesWith(CI, Res);
2140           }
2141       }
2142     }
2143     LLVM_FALLTHROUGH;
2144   }
2145   case Intrinsic::vector_reduce_mul: {
2146     if (IID == Intrinsic::vector_reduce_mul) {
2147       // Multiplicative reduction over the vector with (potentially-extended)
2148       // i1 element type is actually a (potentially zero-extended)
2149       // logical `and` reduction over the original non-extended value:
2150       //   vector_reduce_mul(?ext(<n x i1>))
2151       //     -->
2152       //   zext(vector_reduce_and(<n x i1>))
2153       Value *Arg = II->getArgOperand(0);
2154       Value *Vect;
2155       if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2156         if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2157           if (FTy->getElementType() == Builder.getInt1Ty()) {
2158             Value *Res = Builder.CreateAndReduce(Vect);
2159             if (Res->getType() != II->getType())
2160               Res = Builder.CreateZExt(Res, II->getType());
2161             return replaceInstUsesWith(CI, Res);
2162           }
2163       }
2164     }
2165     LLVM_FALLTHROUGH;
2166   }
2167   case Intrinsic::vector_reduce_umin:
2168   case Intrinsic::vector_reduce_umax: {
2169     if (IID == Intrinsic::vector_reduce_umin ||
2170         IID == Intrinsic::vector_reduce_umax) {
2171       // UMin/UMax reduction over the vector with (potentially-extended)
2172       // i1 element type is actually a (potentially-extended)
2173       // logical `and`/`or` reduction over the original non-extended value:
2174       //   vector_reduce_u{min,max}(?ext(<n x i1>))
2175       //     -->
2176       //   ?ext(vector_reduce_{and,or}(<n x i1>))
2177       Value *Arg = II->getArgOperand(0);
2178       Value *Vect;
2179       if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2180         if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2181           if (FTy->getElementType() == Builder.getInt1Ty()) {
2182             Value *Res = IID == Intrinsic::vector_reduce_umin
2183                              ? Builder.CreateAndReduce(Vect)
2184                              : Builder.CreateOrReduce(Vect);
2185             if (Arg != Vect)
2186               Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
2187                                        II->getType());
2188             return replaceInstUsesWith(CI, Res);
2189           }
2190       }
2191     }
2192     LLVM_FALLTHROUGH;
2193   }
2194   case Intrinsic::vector_reduce_smin:
2195   case Intrinsic::vector_reduce_smax: {
2196     if (IID == Intrinsic::vector_reduce_smin ||
2197         IID == Intrinsic::vector_reduce_smax) {
2198       // SMin/SMax reduction over the vector with (potentially-extended)
2199       // i1 element type is actually a (potentially-extended)
2200       // logical `and`/`or` reduction over the original non-extended value:
2201       //   vector_reduce_s{min,max}(<n x i1>)
2202       //     -->
2203       //   vector_reduce_{or,and}(<n x i1>)
2204       // and
2205       //   vector_reduce_s{min,max}(sext(<n x i1>))
2206       //     -->
2207       //   sext(vector_reduce_{or,and}(<n x i1>))
2208       // and
2209       //   vector_reduce_s{min,max}(zext(<n x i1>))
2210       //     -->
2211       //   zext(vector_reduce_{and,or}(<n x i1>))
2212       Value *Arg = II->getArgOperand(0);
2213       Value *Vect;
2214       if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
2215         if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
2216           if (FTy->getElementType() == Builder.getInt1Ty()) {
2217             Instruction::CastOps ExtOpc = Instruction::CastOps::CastOpsEnd;
2218             if (Arg != Vect)
2219               ExtOpc = cast<CastInst>(Arg)->getOpcode();
2220             Value *Res = ((IID == Intrinsic::vector_reduce_smin) ==
2221                           (ExtOpc == Instruction::CastOps::ZExt))
2222                              ? Builder.CreateAndReduce(Vect)
2223                              : Builder.CreateOrReduce(Vect);
2224             if (Arg != Vect)
2225               Res = Builder.CreateCast(ExtOpc, Res, II->getType());
2226             return replaceInstUsesWith(CI, Res);
2227           }
2228       }
2229     }
2230     LLVM_FALLTHROUGH;
2231   }
2232   case Intrinsic::vector_reduce_fmax:
2233   case Intrinsic::vector_reduce_fmin:
2234   case Intrinsic::vector_reduce_fadd:
2235   case Intrinsic::vector_reduce_fmul: {
2236     bool CanBeReassociated = (IID != Intrinsic::vector_reduce_fadd &&
2237                               IID != Intrinsic::vector_reduce_fmul) ||
2238                              II->hasAllowReassoc();
2239     const unsigned ArgIdx = (IID == Intrinsic::vector_reduce_fadd ||
2240                              IID == Intrinsic::vector_reduce_fmul)
2241                                 ? 1
2242                                 : 0;
2243     Value *Arg = II->getArgOperand(ArgIdx);
2244     Value *V;
2245     ArrayRef<int> Mask;
2246     if (!isa<FixedVectorType>(Arg->getType()) || !CanBeReassociated ||
2247         !match(Arg, m_Shuffle(m_Value(V), m_Undef(), m_Mask(Mask))) ||
2248         !cast<ShuffleVectorInst>(Arg)->isSingleSource())
2249       break;
2250     int Sz = Mask.size();
2251     SmallBitVector UsedIndices(Sz);
2252     for (int Idx : Mask) {
2253       if (Idx == UndefMaskElem || UsedIndices.test(Idx))
2254         break;
2255       UsedIndices.set(Idx);
2256     }
2257     // Can remove shuffle iff just shuffled elements, no repeats, undefs, or
2258     // other changes.
2259     if (UsedIndices.all()) {
2260       replaceUse(II->getOperandUse(ArgIdx), V);
2261       return nullptr;
2262     }
2263     break;
2264   }
2265   default: {
2266     // Handle target specific intrinsics
2267     Optional<Instruction *> V = targetInstCombineIntrinsic(*II);
2268     if (V.hasValue())
2269       return V.getValue();
2270     break;
2271   }
2272   }
2273   // Some intrinsics (like experimental_gc_statepoint) can be used in invoke
2274   // context, so it is handled in visitCallBase and we should trigger it.
2275   return visitCallBase(*II);
2276 }
2277 
2278 // Fence instruction simplification
2279 Instruction *InstCombinerImpl::visitFenceInst(FenceInst &FI) {
2280   // Remove identical consecutive fences.
2281   Instruction *Next = FI.getNextNonDebugInstruction();
2282   if (auto *NFI = dyn_cast<FenceInst>(Next))
2283     if (FI.isIdenticalTo(NFI))
2284       return eraseInstFromFunction(FI);
2285   return nullptr;
2286 }
2287 
2288 // InvokeInst simplification
2289 Instruction *InstCombinerImpl::visitInvokeInst(InvokeInst &II) {
2290   return visitCallBase(II);
2291 }
2292 
2293 // CallBrInst simplification
2294 Instruction *InstCombinerImpl::visitCallBrInst(CallBrInst &CBI) {
2295   return visitCallBase(CBI);
2296 }
2297 
2298 /// If this cast does not affect the value passed through the varargs area, we
2299 /// can eliminate the use of the cast.
2300 static bool isSafeToEliminateVarargsCast(const CallBase &Call,
2301                                          const DataLayout &DL,
2302                                          const CastInst *const CI,
2303                                          const int ix) {
2304   if (!CI->isLosslessCast())
2305     return false;
2306 
2307   // If this is a GC intrinsic, avoid munging types.  We need types for
2308   // statepoint reconstruction in SelectionDAG.
2309   // TODO: This is probably something which should be expanded to all
2310   // intrinsics since the entire point of intrinsics is that
2311   // they are understandable by the optimizer.
2312   if (isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) ||
2313       isa<GCResultInst>(Call))
2314     return false;
2315 
2316   // Opaque pointers are compatible with any byval types.
2317   PointerType *SrcTy = cast<PointerType>(CI->getOperand(0)->getType());
2318   if (SrcTy->isOpaque())
2319     return true;
2320 
2321   // The size of ByVal or InAlloca arguments is derived from the type, so we
2322   // can't change to a type with a different size.  If the size were
2323   // passed explicitly we could avoid this check.
2324   if (!Call.isPassPointeeByValueArgument(ix))
2325     return true;
2326 
2327   // The transform currently only handles type replacement for byval, not other
2328   // type-carrying attributes.
2329   if (!Call.isByValArgument(ix))
2330     return false;
2331 
2332   Type *SrcElemTy = SrcTy->getElementType();
2333   Type *DstElemTy = Call.getParamByValType(ix);
2334   if (!SrcElemTy->isSized() || !DstElemTy->isSized())
2335     return false;
2336   if (DL.getTypeAllocSize(SrcElemTy) != DL.getTypeAllocSize(DstElemTy))
2337     return false;
2338   return true;
2339 }
2340 
2341 Instruction *InstCombinerImpl::tryOptimizeCall(CallInst *CI) {
2342   if (!CI->getCalledFunction()) return nullptr;
2343 
2344   auto InstCombineRAUW = [this](Instruction *From, Value *With) {
2345     replaceInstUsesWith(*From, With);
2346   };
2347   auto InstCombineErase = [this](Instruction *I) {
2348     eraseInstFromFunction(*I);
2349   };
2350   LibCallSimplifier Simplifier(DL, &TLI, ORE, BFI, PSI, InstCombineRAUW,
2351                                InstCombineErase);
2352   if (Value *With = Simplifier.optimizeCall(CI, Builder)) {
2353     ++NumSimplified;
2354     return CI->use_empty() ? CI : replaceInstUsesWith(*CI, With);
2355   }
2356 
2357   return nullptr;
2358 }
2359 
2360 static IntrinsicInst *findInitTrampolineFromAlloca(Value *TrampMem) {
2361   // Strip off at most one level of pointer casts, looking for an alloca.  This
2362   // is good enough in practice and simpler than handling any number of casts.
2363   Value *Underlying = TrampMem->stripPointerCasts();
2364   if (Underlying != TrampMem &&
2365       (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem))
2366     return nullptr;
2367   if (!isa<AllocaInst>(Underlying))
2368     return nullptr;
2369 
2370   IntrinsicInst *InitTrampoline = nullptr;
2371   for (User *U : TrampMem->users()) {
2372     IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
2373     if (!II)
2374       return nullptr;
2375     if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
2376       if (InitTrampoline)
2377         // More than one init_trampoline writes to this value.  Give up.
2378         return nullptr;
2379       InitTrampoline = II;
2380       continue;
2381     }
2382     if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
2383       // Allow any number of calls to adjust.trampoline.
2384       continue;
2385     return nullptr;
2386   }
2387 
2388   // No call to init.trampoline found.
2389   if (!InitTrampoline)
2390     return nullptr;
2391 
2392   // Check that the alloca is being used in the expected way.
2393   if (InitTrampoline->getOperand(0) != TrampMem)
2394     return nullptr;
2395 
2396   return InitTrampoline;
2397 }
2398 
2399 static IntrinsicInst *findInitTrampolineFromBB(IntrinsicInst *AdjustTramp,
2400                                                Value *TrampMem) {
2401   // Visit all the previous instructions in the basic block, and try to find a
2402   // init.trampoline which has a direct path to the adjust.trampoline.
2403   for (BasicBlock::iterator I = AdjustTramp->getIterator(),
2404                             E = AdjustTramp->getParent()->begin();
2405        I != E;) {
2406     Instruction *Inst = &*--I;
2407     if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
2408       if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
2409           II->getOperand(0) == TrampMem)
2410         return II;
2411     if (Inst->mayWriteToMemory())
2412       return nullptr;
2413   }
2414   return nullptr;
2415 }
2416 
2417 // Given a call to llvm.adjust.trampoline, find and return the corresponding
2418 // call to llvm.init.trampoline if the call to the trampoline can be optimized
2419 // to a direct call to a function.  Otherwise return NULL.
2420 static IntrinsicInst *findInitTrampoline(Value *Callee) {
2421   Callee = Callee->stripPointerCasts();
2422   IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
2423   if (!AdjustTramp ||
2424       AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
2425     return nullptr;
2426 
2427   Value *TrampMem = AdjustTramp->getOperand(0);
2428 
2429   if (IntrinsicInst *IT = findInitTrampolineFromAlloca(TrampMem))
2430     return IT;
2431   if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem))
2432     return IT;
2433   return nullptr;
2434 }
2435 
2436 void InstCombinerImpl::annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI) {
2437   unsigned NumArgs = Call.getNumArgOperands();
2438   ConstantInt *Op0C = dyn_cast<ConstantInt>(Call.getOperand(0));
2439   ConstantInt *Op1C =
2440       (NumArgs == 1) ? nullptr : dyn_cast<ConstantInt>(Call.getOperand(1));
2441   // Bail out if the allocation size is zero (or an invalid alignment of zero
2442   // with aligned_alloc).
2443   if ((Op0C && Op0C->isNullValue()) || (Op1C && Op1C->isNullValue()))
2444     return;
2445 
2446   if (isMallocLikeFn(&Call, TLI) && Op0C) {
2447     if (isOpNewLikeFn(&Call, TLI))
2448       Call.addRetAttr(Attribute::getWithDereferenceableBytes(
2449           Call.getContext(), Op0C->getZExtValue()));
2450     else
2451       Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2452           Call.getContext(), Op0C->getZExtValue()));
2453   } else if (isAlignedAllocLikeFn(&Call, TLI)) {
2454     if (Op1C)
2455       Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2456           Call.getContext(), Op1C->getZExtValue()));
2457     // Add alignment attribute if alignment is a power of two constant.
2458     if (Op0C && Op0C->getValue().ult(llvm::Value::MaximumAlignment) &&
2459         isKnownNonZero(Call.getOperand(1), DL, 0, &AC, &Call, &DT)) {
2460       uint64_t AlignmentVal = Op0C->getZExtValue();
2461       if (llvm::isPowerOf2_64(AlignmentVal)) {
2462         Call.removeRetAttr(Attribute::Alignment);
2463         Call.addRetAttr(Attribute::getWithAlignment(Call.getContext(),
2464                                                     Align(AlignmentVal)));
2465       }
2466     }
2467   } else if (isReallocLikeFn(&Call, TLI) && Op1C) {
2468     Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2469         Call.getContext(), Op1C->getZExtValue()));
2470   } else if (isCallocLikeFn(&Call, TLI) && Op0C && Op1C) {
2471     bool Overflow;
2472     const APInt &N = Op0C->getValue();
2473     APInt Size = N.umul_ov(Op1C->getValue(), Overflow);
2474     if (!Overflow)
2475       Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2476           Call.getContext(), Size.getZExtValue()));
2477   } else if (isStrdupLikeFn(&Call, TLI)) {
2478     uint64_t Len = GetStringLength(Call.getOperand(0));
2479     if (Len) {
2480       // strdup
2481       if (NumArgs == 1)
2482         Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2483             Call.getContext(), Len));
2484       // strndup
2485       else if (NumArgs == 2 && Op1C)
2486         Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
2487             Call.getContext(), std::min(Len, Op1C->getZExtValue() + 1)));
2488     }
2489   }
2490 }
2491 
2492 /// Improvements for call, callbr and invoke instructions.
2493 Instruction *InstCombinerImpl::visitCallBase(CallBase &Call) {
2494   if (isAllocationFn(&Call, &TLI))
2495     annotateAnyAllocSite(Call, &TLI);
2496 
2497   bool Changed = false;
2498 
2499   // Mark any parameters that are known to be non-null with the nonnull
2500   // attribute.  This is helpful for inlining calls to functions with null
2501   // checks on their arguments.
2502   SmallVector<unsigned, 4> ArgNos;
2503   unsigned ArgNo = 0;
2504 
2505   for (Value *V : Call.args()) {
2506     if (V->getType()->isPointerTy() &&
2507         !Call.paramHasAttr(ArgNo, Attribute::NonNull) &&
2508         isKnownNonZero(V, DL, 0, &AC, &Call, &DT))
2509       ArgNos.push_back(ArgNo);
2510     ArgNo++;
2511   }
2512 
2513   assert(ArgNo == Call.arg_size() && "sanity check");
2514 
2515   if (!ArgNos.empty()) {
2516     AttributeList AS = Call.getAttributes();
2517     LLVMContext &Ctx = Call.getContext();
2518     AS = AS.addParamAttribute(Ctx, ArgNos,
2519                               Attribute::get(Ctx, Attribute::NonNull));
2520     Call.setAttributes(AS);
2521     Changed = true;
2522   }
2523 
2524   // If the callee is a pointer to a function, attempt to move any casts to the
2525   // arguments of the call/callbr/invoke.
2526   Value *Callee = Call.getCalledOperand();
2527   if (!isa<Function>(Callee) && transformConstExprCastCall(Call))
2528     return nullptr;
2529 
2530   if (Function *CalleeF = dyn_cast<Function>(Callee)) {
2531     // Remove the convergent attr on calls when the callee is not convergent.
2532     if (Call.isConvergent() && !CalleeF->isConvergent() &&
2533         !CalleeF->isIntrinsic()) {
2534       LLVM_DEBUG(dbgs() << "Removing convergent attr from instr " << Call
2535                         << "\n");
2536       Call.setNotConvergent();
2537       return &Call;
2538     }
2539 
2540     // If the call and callee calling conventions don't match, and neither one
2541     // of the calling conventions is compatible with C calling convention
2542     // this call must be unreachable, as the call is undefined.
2543     if ((CalleeF->getCallingConv() != Call.getCallingConv() &&
2544          !(CalleeF->getCallingConv() == llvm::CallingConv::C &&
2545            TargetLibraryInfoImpl::isCallingConvCCompatible(&Call)) &&
2546          !(Call.getCallingConv() == llvm::CallingConv::C &&
2547            TargetLibraryInfoImpl::isCallingConvCCompatible(CalleeF))) &&
2548         // Only do this for calls to a function with a body.  A prototype may
2549         // not actually end up matching the implementation's calling conv for a
2550         // variety of reasons (e.g. it may be written in assembly).
2551         !CalleeF->isDeclaration()) {
2552       Instruction *OldCall = &Call;
2553       CreateNonTerminatorUnreachable(OldCall);
2554       // If OldCall does not return void then replaceInstUsesWith poison.
2555       // This allows ValueHandlers and custom metadata to adjust itself.
2556       if (!OldCall->getType()->isVoidTy())
2557         replaceInstUsesWith(*OldCall, PoisonValue::get(OldCall->getType()));
2558       if (isa<CallInst>(OldCall))
2559         return eraseInstFromFunction(*OldCall);
2560 
2561       // We cannot remove an invoke or a callbr, because it would change thexi
2562       // CFG, just change the callee to a null pointer.
2563       cast<CallBase>(OldCall)->setCalledFunction(
2564           CalleeF->getFunctionType(),
2565           Constant::getNullValue(CalleeF->getType()));
2566       return nullptr;
2567     }
2568   }
2569 
2570   // Calling a null function pointer is undefined if a null address isn't
2571   // dereferenceable.
2572   if ((isa<ConstantPointerNull>(Callee) &&
2573        !NullPointerIsDefined(Call.getFunction())) ||
2574       isa<UndefValue>(Callee)) {
2575     // If Call does not return void then replaceInstUsesWith poison.
2576     // This allows ValueHandlers and custom metadata to adjust itself.
2577     if (!Call.getType()->isVoidTy())
2578       replaceInstUsesWith(Call, PoisonValue::get(Call.getType()));
2579 
2580     if (Call.isTerminator()) {
2581       // Can't remove an invoke or callbr because we cannot change the CFG.
2582       return nullptr;
2583     }
2584 
2585     // This instruction is not reachable, just remove it.
2586     CreateNonTerminatorUnreachable(&Call);
2587     return eraseInstFromFunction(Call);
2588   }
2589 
2590   if (IntrinsicInst *II = findInitTrampoline(Callee))
2591     return transformCallThroughTrampoline(Call, *II);
2592 
2593   // TODO: Drop this transform once opaque pointer transition is done.
2594   FunctionType *FTy = Call.getFunctionType();
2595   if (FTy->isVarArg()) {
2596     int ix = FTy->getNumParams();
2597     // See if we can optimize any arguments passed through the varargs area of
2598     // the call.
2599     for (auto I = Call.arg_begin() + FTy->getNumParams(), E = Call.arg_end();
2600          I != E; ++I, ++ix) {
2601       CastInst *CI = dyn_cast<CastInst>(*I);
2602       if (CI && isSafeToEliminateVarargsCast(Call, DL, CI, ix)) {
2603         replaceUse(*I, CI->getOperand(0));
2604 
2605         // Update the byval type to match the pointer type.
2606         // Not necessary for opaque pointers.
2607         PointerType *NewTy = cast<PointerType>(CI->getOperand(0)->getType());
2608         if (!NewTy->isOpaque() && Call.isByValArgument(ix)) {
2609           Call.removeParamAttr(ix, Attribute::ByVal);
2610           Call.addParamAttr(
2611               ix, Attribute::getWithByValType(
2612                       Call.getContext(), NewTy->getElementType()));
2613         }
2614         Changed = true;
2615       }
2616     }
2617   }
2618 
2619   if (isa<InlineAsm>(Callee) && !Call.doesNotThrow()) {
2620     InlineAsm *IA = cast<InlineAsm>(Callee);
2621     if (!IA->canThrow()) {
2622       // Normal inline asm calls cannot throw - mark them
2623       // 'nounwind'.
2624       Call.setDoesNotThrow();
2625       Changed = true;
2626     }
2627   }
2628 
2629   // Try to optimize the call if possible, we require DataLayout for most of
2630   // this.  None of these calls are seen as possibly dead so go ahead and
2631   // delete the instruction now.
2632   if (CallInst *CI = dyn_cast<CallInst>(&Call)) {
2633     Instruction *I = tryOptimizeCall(CI);
2634     // If we changed something return the result, etc. Otherwise let
2635     // the fallthrough check.
2636     if (I) return eraseInstFromFunction(*I);
2637   }
2638 
2639   if (!Call.use_empty() && !Call.isMustTailCall())
2640     if (Value *ReturnedArg = Call.getReturnedArgOperand()) {
2641       Type *CallTy = Call.getType();
2642       Type *RetArgTy = ReturnedArg->getType();
2643       if (RetArgTy->canLosslesslyBitCastTo(CallTy))
2644         return replaceInstUsesWith(
2645             Call, Builder.CreateBitOrPointerCast(ReturnedArg, CallTy));
2646     }
2647 
2648   if (isAllocLikeFn(&Call, &TLI))
2649     return visitAllocSite(Call);
2650 
2651   // Handle intrinsics which can be used in both call and invoke context.
2652   switch (Call.getIntrinsicID()) {
2653   case Intrinsic::experimental_gc_statepoint: {
2654     GCStatepointInst &GCSP = *cast<GCStatepointInst>(&Call);
2655     SmallPtrSet<Value *, 32> LiveGcValues;
2656     for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) {
2657       GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc);
2658 
2659       // Remove the relocation if unused.
2660       if (GCR.use_empty()) {
2661         eraseInstFromFunction(GCR);
2662         continue;
2663       }
2664 
2665       Value *DerivedPtr = GCR.getDerivedPtr();
2666       Value *BasePtr = GCR.getBasePtr();
2667 
2668       // Undef is undef, even after relocation.
2669       if (isa<UndefValue>(DerivedPtr) || isa<UndefValue>(BasePtr)) {
2670         replaceInstUsesWith(GCR, UndefValue::get(GCR.getType()));
2671         eraseInstFromFunction(GCR);
2672         continue;
2673       }
2674 
2675       if (auto *PT = dyn_cast<PointerType>(GCR.getType())) {
2676         // The relocation of null will be null for most any collector.
2677         // TODO: provide a hook for this in GCStrategy.  There might be some
2678         // weird collector this property does not hold for.
2679         if (isa<ConstantPointerNull>(DerivedPtr)) {
2680           // Use null-pointer of gc_relocate's type to replace it.
2681           replaceInstUsesWith(GCR, ConstantPointerNull::get(PT));
2682           eraseInstFromFunction(GCR);
2683           continue;
2684         }
2685 
2686         // isKnownNonNull -> nonnull attribute
2687         if (!GCR.hasRetAttr(Attribute::NonNull) &&
2688             isKnownNonZero(DerivedPtr, DL, 0, &AC, &Call, &DT)) {
2689           GCR.addRetAttr(Attribute::NonNull);
2690           // We discovered new fact, re-check users.
2691           Worklist.pushUsersToWorkList(GCR);
2692         }
2693       }
2694 
2695       // If we have two copies of the same pointer in the statepoint argument
2696       // list, canonicalize to one.  This may let us common gc.relocates.
2697       if (GCR.getBasePtr() == GCR.getDerivedPtr() &&
2698           GCR.getBasePtrIndex() != GCR.getDerivedPtrIndex()) {
2699         auto *OpIntTy = GCR.getOperand(2)->getType();
2700         GCR.setOperand(2, ConstantInt::get(OpIntTy, GCR.getBasePtrIndex()));
2701       }
2702 
2703       // TODO: bitcast(relocate(p)) -> relocate(bitcast(p))
2704       // Canonicalize on the type from the uses to the defs
2705 
2706       // TODO: relocate((gep p, C, C2, ...)) -> gep(relocate(p), C, C2, ...)
2707       LiveGcValues.insert(BasePtr);
2708       LiveGcValues.insert(DerivedPtr);
2709     }
2710     Optional<OperandBundleUse> Bundle =
2711         GCSP.getOperandBundle(LLVMContext::OB_gc_live);
2712     unsigned NumOfGCLives = LiveGcValues.size();
2713     if (!Bundle.hasValue() || NumOfGCLives == Bundle->Inputs.size())
2714       break;
2715     // We can reduce the size of gc live bundle.
2716     DenseMap<Value *, unsigned> Val2Idx;
2717     std::vector<Value *> NewLiveGc;
2718     for (unsigned I = 0, E = Bundle->Inputs.size(); I < E; ++I) {
2719       Value *V = Bundle->Inputs[I];
2720       if (Val2Idx.count(V))
2721         continue;
2722       if (LiveGcValues.count(V)) {
2723         Val2Idx[V] = NewLiveGc.size();
2724         NewLiveGc.push_back(V);
2725       } else
2726         Val2Idx[V] = NumOfGCLives;
2727     }
2728     // Update all gc.relocates
2729     for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) {
2730       GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc);
2731       Value *BasePtr = GCR.getBasePtr();
2732       assert(Val2Idx.count(BasePtr) && Val2Idx[BasePtr] != NumOfGCLives &&
2733              "Missed live gc for base pointer");
2734       auto *OpIntTy1 = GCR.getOperand(1)->getType();
2735       GCR.setOperand(1, ConstantInt::get(OpIntTy1, Val2Idx[BasePtr]));
2736       Value *DerivedPtr = GCR.getDerivedPtr();
2737       assert(Val2Idx.count(DerivedPtr) && Val2Idx[DerivedPtr] != NumOfGCLives &&
2738              "Missed live gc for derived pointer");
2739       auto *OpIntTy2 = GCR.getOperand(2)->getType();
2740       GCR.setOperand(2, ConstantInt::get(OpIntTy2, Val2Idx[DerivedPtr]));
2741     }
2742     // Create new statepoint instruction.
2743     OperandBundleDef NewBundle("gc-live", NewLiveGc);
2744     return CallBase::Create(&Call, NewBundle);
2745   }
2746   default: { break; }
2747   }
2748 
2749   return Changed ? &Call : nullptr;
2750 }
2751 
2752 /// If the callee is a constexpr cast of a function, attempt to move the cast to
2753 /// the arguments of the call/callbr/invoke.
2754 bool InstCombinerImpl::transformConstExprCastCall(CallBase &Call) {
2755   auto *Callee =
2756       dyn_cast<Function>(Call.getCalledOperand()->stripPointerCasts());
2757   if (!Callee)
2758     return false;
2759 
2760   // If this is a call to a thunk function, don't remove the cast. Thunks are
2761   // used to transparently forward all incoming parameters and outgoing return
2762   // values, so it's important to leave the cast in place.
2763   if (Callee->hasFnAttribute("thunk"))
2764     return false;
2765 
2766   // If this is a musttail call, the callee's prototype must match the caller's
2767   // prototype with the exception of pointee types. The code below doesn't
2768   // implement that, so we can't do this transform.
2769   // TODO: Do the transform if it only requires adding pointer casts.
2770   if (Call.isMustTailCall())
2771     return false;
2772 
2773   Instruction *Caller = &Call;
2774   const AttributeList &CallerPAL = Call.getAttributes();
2775 
2776   // Okay, this is a cast from a function to a different type.  Unless doing so
2777   // would cause a type conversion of one of our arguments, change this call to
2778   // be a direct call with arguments casted to the appropriate types.
2779   FunctionType *FT = Callee->getFunctionType();
2780   Type *OldRetTy = Caller->getType();
2781   Type *NewRetTy = FT->getReturnType();
2782 
2783   // Check to see if we are changing the return type...
2784   if (OldRetTy != NewRetTy) {
2785 
2786     if (NewRetTy->isStructTy())
2787       return false; // TODO: Handle multiple return values.
2788 
2789     if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) {
2790       if (Callee->isDeclaration())
2791         return false;   // Cannot transform this return value.
2792 
2793       if (!Caller->use_empty() &&
2794           // void -> non-void is handled specially
2795           !NewRetTy->isVoidTy())
2796         return false;   // Cannot transform this return value.
2797     }
2798 
2799     if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
2800       AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
2801       if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy)))
2802         return false;   // Attribute not compatible with transformed value.
2803     }
2804 
2805     // If the callbase is an invoke/callbr instruction, and the return value is
2806     // used by a PHI node in a successor, we cannot change the return type of
2807     // the call because there is no place to put the cast instruction (without
2808     // breaking the critical edge).  Bail out in this case.
2809     if (!Caller->use_empty()) {
2810       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
2811         for (User *U : II->users())
2812           if (PHINode *PN = dyn_cast<PHINode>(U))
2813             if (PN->getParent() == II->getNormalDest() ||
2814                 PN->getParent() == II->getUnwindDest())
2815               return false;
2816       // FIXME: Be conservative for callbr to avoid a quadratic search.
2817       if (isa<CallBrInst>(Caller))
2818         return false;
2819     }
2820   }
2821 
2822   unsigned NumActualArgs = Call.arg_size();
2823   unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
2824 
2825   // Prevent us turning:
2826   // declare void @takes_i32_inalloca(i32* inalloca)
2827   //  call void bitcast (void (i32*)* @takes_i32_inalloca to void (i32)*)(i32 0)
2828   //
2829   // into:
2830   //  call void @takes_i32_inalloca(i32* null)
2831   //
2832   //  Similarly, avoid folding away bitcasts of byval calls.
2833   if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) ||
2834       Callee->getAttributes().hasAttrSomewhere(Attribute::Preallocated) ||
2835       Callee->getAttributes().hasAttrSomewhere(Attribute::ByVal))
2836     return false;
2837 
2838   auto AI = Call.arg_begin();
2839   for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
2840     Type *ParamTy = FT->getParamType(i);
2841     Type *ActTy = (*AI)->getType();
2842 
2843     if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
2844       return false;   // Cannot transform this parameter value.
2845 
2846     if (AttrBuilder(CallerPAL.getParamAttrs(i))
2847             .overlaps(AttributeFuncs::typeIncompatible(ParamTy)))
2848       return false;   // Attribute not compatible with transformed value.
2849 
2850     if (Call.isInAllocaArgument(i))
2851       return false;   // Cannot transform to and from inalloca.
2852 
2853     if (CallerPAL.hasParamAttr(i, Attribute::SwiftError))
2854       return false;
2855 
2856     // If the parameter is passed as a byval argument, then we have to have a
2857     // sized type and the sized type has to have the same size as the old type.
2858     if (ParamTy != ActTy && CallerPAL.hasParamAttr(i, Attribute::ByVal)) {
2859       PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
2860       if (!ParamPTy || !ParamPTy->getElementType()->isSized())
2861         return false;
2862 
2863       Type *CurElTy = Call.getParamByValType(i);
2864       if (DL.getTypeAllocSize(CurElTy) !=
2865           DL.getTypeAllocSize(ParamPTy->getElementType()))
2866         return false;
2867     }
2868   }
2869 
2870   if (Callee->isDeclaration()) {
2871     // Do not delete arguments unless we have a function body.
2872     if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
2873       return false;
2874 
2875     // If the callee is just a declaration, don't change the varargsness of the
2876     // call.  We don't want to introduce a varargs call where one doesn't
2877     // already exist.
2878     PointerType *APTy = cast<PointerType>(Call.getCalledOperand()->getType());
2879     if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
2880       return false;
2881 
2882     // If both the callee and the cast type are varargs, we still have to make
2883     // sure the number of fixed parameters are the same or we have the same
2884     // ABI issues as if we introduce a varargs call.
2885     if (FT->isVarArg() &&
2886         cast<FunctionType>(APTy->getElementType())->isVarArg() &&
2887         FT->getNumParams() !=
2888         cast<FunctionType>(APTy->getElementType())->getNumParams())
2889       return false;
2890   }
2891 
2892   if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
2893       !CallerPAL.isEmpty()) {
2894     // In this case we have more arguments than the new function type, but we
2895     // won't be dropping them.  Check that these extra arguments have attributes
2896     // that are compatible with being a vararg call argument.
2897     unsigned SRetIdx;
2898     if (CallerPAL.hasAttrSomewhere(Attribute::StructRet, &SRetIdx) &&
2899         SRetIdx > FT->getNumParams())
2900       return false;
2901   }
2902 
2903   // Okay, we decided that this is a safe thing to do: go ahead and start
2904   // inserting cast instructions as necessary.
2905   SmallVector<Value *, 8> Args;
2906   SmallVector<AttributeSet, 8> ArgAttrs;
2907   Args.reserve(NumActualArgs);
2908   ArgAttrs.reserve(NumActualArgs);
2909 
2910   // Get any return attributes.
2911   AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
2912 
2913   // If the return value is not being used, the type may not be compatible
2914   // with the existing attributes.  Wipe out any problematic attributes.
2915   RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy));
2916 
2917   LLVMContext &Ctx = Call.getContext();
2918   AI = Call.arg_begin();
2919   for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
2920     Type *ParamTy = FT->getParamType(i);
2921 
2922     Value *NewArg = *AI;
2923     if ((*AI)->getType() != ParamTy)
2924       NewArg = Builder.CreateBitOrPointerCast(*AI, ParamTy);
2925     Args.push_back(NewArg);
2926 
2927     // Add any parameter attributes.
2928     if (CallerPAL.hasParamAttr(i, Attribute::ByVal)) {
2929       AttrBuilder AB(CallerPAL.getParamAttrs(i));
2930       AB.addByValAttr(NewArg->getType()->getPointerElementType());
2931       ArgAttrs.push_back(AttributeSet::get(Ctx, AB));
2932     } else
2933       ArgAttrs.push_back(CallerPAL.getParamAttrs(i));
2934   }
2935 
2936   // If the function takes more arguments than the call was taking, add them
2937   // now.
2938   for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) {
2939     Args.push_back(Constant::getNullValue(FT->getParamType(i)));
2940     ArgAttrs.push_back(AttributeSet());
2941   }
2942 
2943   // If we are removing arguments to the function, emit an obnoxious warning.
2944   if (FT->getNumParams() < NumActualArgs) {
2945     // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722
2946     if (FT->isVarArg()) {
2947       // Add all of the arguments in their promoted form to the arg list.
2948       for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
2949         Type *PTy = getPromotedType((*AI)->getType());
2950         Value *NewArg = *AI;
2951         if (PTy != (*AI)->getType()) {
2952           // Must promote to pass through va_arg area!
2953           Instruction::CastOps opcode =
2954             CastInst::getCastOpcode(*AI, false, PTy, false);
2955           NewArg = Builder.CreateCast(opcode, *AI, PTy);
2956         }
2957         Args.push_back(NewArg);
2958 
2959         // Add any parameter attributes.
2960         ArgAttrs.push_back(CallerPAL.getParamAttrs(i));
2961       }
2962     }
2963   }
2964 
2965   AttributeSet FnAttrs = CallerPAL.getFnAttrs();
2966 
2967   if (NewRetTy->isVoidTy())
2968     Caller->setName("");   // Void type should not have a name.
2969 
2970   assert((ArgAttrs.size() == FT->getNumParams() || FT->isVarArg()) &&
2971          "missing argument attributes");
2972   AttributeList NewCallerPAL = AttributeList::get(
2973       Ctx, FnAttrs, AttributeSet::get(Ctx, RAttrs), ArgAttrs);
2974 
2975   SmallVector<OperandBundleDef, 1> OpBundles;
2976   Call.getOperandBundlesAsDefs(OpBundles);
2977 
2978   CallBase *NewCall;
2979   if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
2980     NewCall = Builder.CreateInvoke(Callee, II->getNormalDest(),
2981                                    II->getUnwindDest(), Args, OpBundles);
2982   } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) {
2983     NewCall = Builder.CreateCallBr(Callee, CBI->getDefaultDest(),
2984                                    CBI->getIndirectDests(), Args, OpBundles);
2985   } else {
2986     NewCall = Builder.CreateCall(Callee, Args, OpBundles);
2987     cast<CallInst>(NewCall)->setTailCallKind(
2988         cast<CallInst>(Caller)->getTailCallKind());
2989   }
2990   NewCall->takeName(Caller);
2991   NewCall->setCallingConv(Call.getCallingConv());
2992   NewCall->setAttributes(NewCallerPAL);
2993 
2994   // Preserve prof metadata if any.
2995   NewCall->copyMetadata(*Caller, {LLVMContext::MD_prof});
2996 
2997   // Insert a cast of the return type as necessary.
2998   Instruction *NC = NewCall;
2999   Value *NV = NC;
3000   if (OldRetTy != NV->getType() && !Caller->use_empty()) {
3001     if (!NV->getType()->isVoidTy()) {
3002       NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
3003       NC->setDebugLoc(Caller->getDebugLoc());
3004 
3005       // If this is an invoke/callbr instruction, we should insert it after the
3006       // first non-phi instruction in the normal successor block.
3007       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
3008         BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
3009         InsertNewInstBefore(NC, *I);
3010       } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) {
3011         BasicBlock::iterator I = CBI->getDefaultDest()->getFirstInsertionPt();
3012         InsertNewInstBefore(NC, *I);
3013       } else {
3014         // Otherwise, it's a call, just insert cast right after the call.
3015         InsertNewInstBefore(NC, *Caller);
3016       }
3017       Worklist.pushUsersToWorkList(*Caller);
3018     } else {
3019       NV = UndefValue::get(Caller->getType());
3020     }
3021   }
3022 
3023   if (!Caller->use_empty())
3024     replaceInstUsesWith(*Caller, NV);
3025   else if (Caller->hasValueHandle()) {
3026     if (OldRetTy == NV->getType())
3027       ValueHandleBase::ValueIsRAUWd(Caller, NV);
3028     else
3029       // We cannot call ValueIsRAUWd with a different type, and the
3030       // actual tracked value will disappear.
3031       ValueHandleBase::ValueIsDeleted(Caller);
3032   }
3033 
3034   eraseInstFromFunction(*Caller);
3035   return true;
3036 }
3037 
3038 /// Turn a call to a function created by init_trampoline / adjust_trampoline
3039 /// intrinsic pair into a direct call to the underlying function.
3040 Instruction *
3041 InstCombinerImpl::transformCallThroughTrampoline(CallBase &Call,
3042                                                  IntrinsicInst &Tramp) {
3043   Value *Callee = Call.getCalledOperand();
3044   Type *CalleeTy = Callee->getType();
3045   FunctionType *FTy = Call.getFunctionType();
3046   AttributeList Attrs = Call.getAttributes();
3047 
3048   // If the call already has the 'nest' attribute somewhere then give up -
3049   // otherwise 'nest' would occur twice after splicing in the chain.
3050   if (Attrs.hasAttrSomewhere(Attribute::Nest))
3051     return nullptr;
3052 
3053   Function *NestF = cast<Function>(Tramp.getArgOperand(1)->stripPointerCasts());
3054   FunctionType *NestFTy = NestF->getFunctionType();
3055 
3056   AttributeList NestAttrs = NestF->getAttributes();
3057   if (!NestAttrs.isEmpty()) {
3058     unsigned NestArgNo = 0;
3059     Type *NestTy = nullptr;
3060     AttributeSet NestAttr;
3061 
3062     // Look for a parameter marked with the 'nest' attribute.
3063     for (FunctionType::param_iterator I = NestFTy->param_begin(),
3064                                       E = NestFTy->param_end();
3065          I != E; ++NestArgNo, ++I) {
3066       AttributeSet AS = NestAttrs.getParamAttrs(NestArgNo);
3067       if (AS.hasAttribute(Attribute::Nest)) {
3068         // Record the parameter type and any other attributes.
3069         NestTy = *I;
3070         NestAttr = AS;
3071         break;
3072       }
3073     }
3074 
3075     if (NestTy) {
3076       std::vector<Value*> NewArgs;
3077       std::vector<AttributeSet> NewArgAttrs;
3078       NewArgs.reserve(Call.arg_size() + 1);
3079       NewArgAttrs.reserve(Call.arg_size());
3080 
3081       // Insert the nest argument into the call argument list, which may
3082       // mean appending it.  Likewise for attributes.
3083 
3084       {
3085         unsigned ArgNo = 0;
3086         auto I = Call.arg_begin(), E = Call.arg_end();
3087         do {
3088           if (ArgNo == NestArgNo) {
3089             // Add the chain argument and attributes.
3090             Value *NestVal = Tramp.getArgOperand(2);
3091             if (NestVal->getType() != NestTy)
3092               NestVal = Builder.CreateBitCast(NestVal, NestTy, "nest");
3093             NewArgs.push_back(NestVal);
3094             NewArgAttrs.push_back(NestAttr);
3095           }
3096 
3097           if (I == E)
3098             break;
3099 
3100           // Add the original argument and attributes.
3101           NewArgs.push_back(*I);
3102           NewArgAttrs.push_back(Attrs.getParamAttrs(ArgNo));
3103 
3104           ++ArgNo;
3105           ++I;
3106         } while (true);
3107       }
3108 
3109       // The trampoline may have been bitcast to a bogus type (FTy).
3110       // Handle this by synthesizing a new function type, equal to FTy
3111       // with the chain parameter inserted.
3112 
3113       std::vector<Type*> NewTypes;
3114       NewTypes.reserve(FTy->getNumParams()+1);
3115 
3116       // Insert the chain's type into the list of parameter types, which may
3117       // mean appending it.
3118       {
3119         unsigned ArgNo = 0;
3120         FunctionType::param_iterator I = FTy->param_begin(),
3121           E = FTy->param_end();
3122 
3123         do {
3124           if (ArgNo == NestArgNo)
3125             // Add the chain's type.
3126             NewTypes.push_back(NestTy);
3127 
3128           if (I == E)
3129             break;
3130 
3131           // Add the original type.
3132           NewTypes.push_back(*I);
3133 
3134           ++ArgNo;
3135           ++I;
3136         } while (true);
3137       }
3138 
3139       // Replace the trampoline call with a direct call.  Let the generic
3140       // code sort out any function type mismatches.
3141       FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
3142                                                 FTy->isVarArg());
3143       Constant *NewCallee =
3144         NestF->getType() == PointerType::getUnqual(NewFTy) ?
3145         NestF : ConstantExpr::getBitCast(NestF,
3146                                          PointerType::getUnqual(NewFTy));
3147       AttributeList NewPAL =
3148           AttributeList::get(FTy->getContext(), Attrs.getFnAttrs(),
3149                              Attrs.getRetAttrs(), NewArgAttrs);
3150 
3151       SmallVector<OperandBundleDef, 1> OpBundles;
3152       Call.getOperandBundlesAsDefs(OpBundles);
3153 
3154       Instruction *NewCaller;
3155       if (InvokeInst *II = dyn_cast<InvokeInst>(&Call)) {
3156         NewCaller = InvokeInst::Create(NewFTy, NewCallee,
3157                                        II->getNormalDest(), II->getUnwindDest(),
3158                                        NewArgs, OpBundles);
3159         cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
3160         cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
3161       } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(&Call)) {
3162         NewCaller =
3163             CallBrInst::Create(NewFTy, NewCallee, CBI->getDefaultDest(),
3164                                CBI->getIndirectDests(), NewArgs, OpBundles);
3165         cast<CallBrInst>(NewCaller)->setCallingConv(CBI->getCallingConv());
3166         cast<CallBrInst>(NewCaller)->setAttributes(NewPAL);
3167       } else {
3168         NewCaller = CallInst::Create(NewFTy, NewCallee, NewArgs, OpBundles);
3169         cast<CallInst>(NewCaller)->setTailCallKind(
3170             cast<CallInst>(Call).getTailCallKind());
3171         cast<CallInst>(NewCaller)->setCallingConv(
3172             cast<CallInst>(Call).getCallingConv());
3173         cast<CallInst>(NewCaller)->setAttributes(NewPAL);
3174       }
3175       NewCaller->setDebugLoc(Call.getDebugLoc());
3176 
3177       return NewCaller;
3178     }
3179   }
3180 
3181   // Replace the trampoline call with a direct call.  Since there is no 'nest'
3182   // parameter, there is no need to adjust the argument list.  Let the generic
3183   // code sort out any function type mismatches.
3184   Constant *NewCallee = ConstantExpr::getBitCast(NestF, CalleeTy);
3185   Call.setCalledFunction(FTy, NewCallee);
3186   return &Call;
3187 }
3188