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