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