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/Statistic.h" 20 #include "llvm/ADT/STLExtras.h" 21 #include "llvm/ADT/SmallVector.h" 22 #include "llvm/ADT/Twine.h" 23 #include "llvm/Analysis/InstructionSimplify.h" 24 #include "llvm/Analysis/MemoryBuiltins.h" 25 #include "llvm/Analysis/ValueTracking.h" 26 #include "llvm/IR/BasicBlock.h" 27 #include "llvm/IR/CallSite.h" 28 #include "llvm/IR/Constant.h" 29 #include "llvm/IR/DataLayout.h" 30 #include "llvm/IR/DerivedTypes.h" 31 #include "llvm/IR/Function.h" 32 #include "llvm/IR/GlobalVariable.h" 33 #include "llvm/IR/InstrTypes.h" 34 #include "llvm/IR/Instruction.h" 35 #include "llvm/IR/Instructions.h" 36 #include "llvm/IR/IntrinsicInst.h" 37 #include "llvm/IR/Intrinsics.h" 38 #include "llvm/IR/LLVMContext.h" 39 #include "llvm/IR/Metadata.h" 40 #include "llvm/IR/PatternMatch.h" 41 #include "llvm/IR/Statepoint.h" 42 #include "llvm/IR/Type.h" 43 #include "llvm/IR/Value.h" 44 #include "llvm/IR/ValueHandle.h" 45 #include "llvm/Support/Casting.h" 46 #include "llvm/Support/Debug.h" 47 #include "llvm/Support/MathExtras.h" 48 #include "llvm/Transforms/Utils/Local.h" 49 #include "llvm/Transforms/Utils/SimplifyLibCalls.h" 50 #include <algorithm> 51 #include <cassert> 52 #include <cstdint> 53 #include <cstring> 54 #include <vector> 55 56 using namespace llvm; 57 using namespace PatternMatch; 58 59 #define DEBUG_TYPE "instcombine" 60 61 STATISTIC(NumSimplified, "Number of library calls simplified"); 62 63 /// Return the specified type promoted as it would be to pass though a va_arg 64 /// area. 65 static Type *getPromotedType(Type *Ty) { 66 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) { 67 if (ITy->getBitWidth() < 32) 68 return Type::getInt32Ty(Ty->getContext()); 69 } 70 return Ty; 71 } 72 73 /// Given an aggregate type which ultimately holds a single scalar element, 74 /// like {{{type}}} or [1 x type], return type. 75 static Type *reduceToSingleValueType(Type *T) { 76 while (!T->isSingleValueType()) { 77 if (StructType *STy = dyn_cast<StructType>(T)) { 78 if (STy->getNumElements() == 1) 79 T = STy->getElementType(0); 80 else 81 break; 82 } else if (ArrayType *ATy = dyn_cast<ArrayType>(T)) { 83 if (ATy->getNumElements() == 1) 84 T = ATy->getElementType(); 85 else 86 break; 87 } else 88 break; 89 } 90 91 return T; 92 } 93 94 /// Return a constant boolean vector that has true elements in all positions 95 /// where the input constant data vector has an element with the sign bit set. 96 static Constant *getNegativeIsTrueBoolVec(ConstantDataVector *V) { 97 SmallVector<Constant *, 32> BoolVec; 98 IntegerType *BoolTy = Type::getInt1Ty(V->getContext()); 99 for (unsigned I = 0, E = V->getNumElements(); I != E; ++I) { 100 Constant *Elt = V->getElementAsConstant(I); 101 assert((isa<ConstantInt>(Elt) || isa<ConstantFP>(Elt)) && 102 "Unexpected constant data vector element type"); 103 bool Sign = V->getElementType()->isIntegerTy() 104 ? cast<ConstantInt>(Elt)->isNegative() 105 : cast<ConstantFP>(Elt)->isNegative(); 106 BoolVec.push_back(ConstantInt::get(BoolTy, Sign)); 107 } 108 return ConstantVector::get(BoolVec); 109 } 110 111 Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) { 112 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), DL, MI, &AC, &DT); 113 unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), DL, MI, &AC, &DT); 114 unsigned MinAlign = std::min(DstAlign, SrcAlign); 115 unsigned CopyAlign = MI->getAlignment(); 116 117 if (CopyAlign < MinAlign) { 118 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), MinAlign, false)); 119 return MI; 120 } 121 122 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with 123 // load/store. 124 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2)); 125 if (!MemOpLength) return nullptr; 126 127 // Source and destination pointer types are always "i8*" for intrinsic. See 128 // if the size is something we can handle with a single primitive load/store. 129 // A single load+store correctly handles overlapping memory in the memmove 130 // case. 131 uint64_t Size = MemOpLength->getLimitedValue(); 132 assert(Size && "0-sized memory transferring should be removed already."); 133 134 if (Size > 8 || (Size&(Size-1))) 135 return nullptr; // If not 1/2/4/8 bytes, exit. 136 137 // Use an integer load+store unless we can find something better. 138 unsigned SrcAddrSp = 139 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace(); 140 unsigned DstAddrSp = 141 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace(); 142 143 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); 144 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp); 145 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp); 146 147 // Memcpy forces the use of i8* for the source and destination. That means 148 // that if you're using memcpy to move one double around, you'll get a cast 149 // from double* to i8*. We'd much rather use a double load+store rather than 150 // an i64 load+store, here because this improves the odds that the source or 151 // dest address will be promotable. See if we can find a better type than the 152 // integer datatype. 153 Value *StrippedDest = MI->getArgOperand(0)->stripPointerCasts(); 154 MDNode *CopyMD = nullptr; 155 if (StrippedDest != MI->getArgOperand(0)) { 156 Type *SrcETy = cast<PointerType>(StrippedDest->getType()) 157 ->getElementType(); 158 if (SrcETy->isSized() && DL.getTypeStoreSize(SrcETy) == Size) { 159 // The SrcETy might be something like {{{double}}} or [1 x double]. Rip 160 // down through these levels if so. 161 SrcETy = reduceToSingleValueType(SrcETy); 162 163 if (SrcETy->isSingleValueType()) { 164 NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp); 165 NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp); 166 167 // If the memcpy has metadata describing the members, see if we can 168 // get the TBAA tag describing our copy. 169 if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa_struct)) { 170 if (M->getNumOperands() == 3 && M->getOperand(0) && 171 mdconst::hasa<ConstantInt>(M->getOperand(0)) && 172 mdconst::extract<ConstantInt>(M->getOperand(0))->isNullValue() && 173 M->getOperand(1) && 174 mdconst::hasa<ConstantInt>(M->getOperand(1)) && 175 mdconst::extract<ConstantInt>(M->getOperand(1))->getValue() == 176 Size && 177 M->getOperand(2) && isa<MDNode>(M->getOperand(2))) 178 CopyMD = cast<MDNode>(M->getOperand(2)); 179 } 180 } 181 } 182 } 183 184 // If the memcpy/memmove provides better alignment info than we can 185 // infer, use it. 186 SrcAlign = std::max(SrcAlign, CopyAlign); 187 DstAlign = std::max(DstAlign, CopyAlign); 188 189 Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy); 190 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy); 191 LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile()); 192 L->setAlignment(SrcAlign); 193 if (CopyMD) 194 L->setMetadata(LLVMContext::MD_tbaa, CopyMD); 195 MDNode *LoopMemParallelMD = 196 MI->getMetadata(LLVMContext::MD_mem_parallel_loop_access); 197 if (LoopMemParallelMD) 198 L->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD); 199 200 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile()); 201 S->setAlignment(DstAlign); 202 if (CopyMD) 203 S->setMetadata(LLVMContext::MD_tbaa, CopyMD); 204 if (LoopMemParallelMD) 205 S->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD); 206 207 // Set the size of the copy to 0, it will be deleted on the next iteration. 208 MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType())); 209 return MI; 210 } 211 212 Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) { 213 unsigned Alignment = getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT); 214 if (MI->getAlignment() < Alignment) { 215 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), 216 Alignment, false)); 217 return MI; 218 } 219 220 // Extract the length and alignment and fill if they are constant. 221 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength()); 222 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue()); 223 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8)) 224 return nullptr; 225 uint64_t Len = LenC->getLimitedValue(); 226 Alignment = MI->getAlignment(); 227 assert(Len && "0-sized memory setting should be removed already."); 228 229 // memset(s,c,n) -> store s, c (for n=1,2,4,8) 230 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) { 231 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. 232 233 Value *Dest = MI->getDest(); 234 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace(); 235 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp); 236 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy); 237 238 // Alignment 0 is identity for alignment 1 for memset, but not store. 239 if (Alignment == 0) Alignment = 1; 240 241 // Extract the fill value and store. 242 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL; 243 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest, 244 MI->isVolatile()); 245 S->setAlignment(Alignment); 246 247 // Set the size of the copy to 0, it will be deleted on the next iteration. 248 MI->setLength(Constant::getNullValue(LenC->getType())); 249 return MI; 250 } 251 252 return nullptr; 253 } 254 255 static Value *simplifyX86immShift(const IntrinsicInst &II, 256 InstCombiner::BuilderTy &Builder) { 257 bool LogicalShift = false; 258 bool ShiftLeft = false; 259 260 switch (II.getIntrinsicID()) { 261 default: llvm_unreachable("Unexpected intrinsic!"); 262 case Intrinsic::x86_sse2_psra_d: 263 case Intrinsic::x86_sse2_psra_w: 264 case Intrinsic::x86_sse2_psrai_d: 265 case Intrinsic::x86_sse2_psrai_w: 266 case Intrinsic::x86_avx2_psra_d: 267 case Intrinsic::x86_avx2_psra_w: 268 case Intrinsic::x86_avx2_psrai_d: 269 case Intrinsic::x86_avx2_psrai_w: 270 case Intrinsic::x86_avx512_psra_q_128: 271 case Intrinsic::x86_avx512_psrai_q_128: 272 case Intrinsic::x86_avx512_psra_q_256: 273 case Intrinsic::x86_avx512_psrai_q_256: 274 case Intrinsic::x86_avx512_psra_d_512: 275 case Intrinsic::x86_avx512_psra_q_512: 276 case Intrinsic::x86_avx512_psra_w_512: 277 case Intrinsic::x86_avx512_psrai_d_512: 278 case Intrinsic::x86_avx512_psrai_q_512: 279 case Intrinsic::x86_avx512_psrai_w_512: 280 LogicalShift = false; ShiftLeft = false; 281 break; 282 case Intrinsic::x86_sse2_psrl_d: 283 case Intrinsic::x86_sse2_psrl_q: 284 case Intrinsic::x86_sse2_psrl_w: 285 case Intrinsic::x86_sse2_psrli_d: 286 case Intrinsic::x86_sse2_psrli_q: 287 case Intrinsic::x86_sse2_psrli_w: 288 case Intrinsic::x86_avx2_psrl_d: 289 case Intrinsic::x86_avx2_psrl_q: 290 case Intrinsic::x86_avx2_psrl_w: 291 case Intrinsic::x86_avx2_psrli_d: 292 case Intrinsic::x86_avx2_psrli_q: 293 case Intrinsic::x86_avx2_psrli_w: 294 case Intrinsic::x86_avx512_psrl_d_512: 295 case Intrinsic::x86_avx512_psrl_q_512: 296 case Intrinsic::x86_avx512_psrl_w_512: 297 case Intrinsic::x86_avx512_psrli_d_512: 298 case Intrinsic::x86_avx512_psrli_q_512: 299 case Intrinsic::x86_avx512_psrli_w_512: 300 LogicalShift = true; ShiftLeft = false; 301 break; 302 case Intrinsic::x86_sse2_psll_d: 303 case Intrinsic::x86_sse2_psll_q: 304 case Intrinsic::x86_sse2_psll_w: 305 case Intrinsic::x86_sse2_pslli_d: 306 case Intrinsic::x86_sse2_pslli_q: 307 case Intrinsic::x86_sse2_pslli_w: 308 case Intrinsic::x86_avx2_psll_d: 309 case Intrinsic::x86_avx2_psll_q: 310 case Intrinsic::x86_avx2_psll_w: 311 case Intrinsic::x86_avx2_pslli_d: 312 case Intrinsic::x86_avx2_pslli_q: 313 case Intrinsic::x86_avx2_pslli_w: 314 case Intrinsic::x86_avx512_psll_d_512: 315 case Intrinsic::x86_avx512_psll_q_512: 316 case Intrinsic::x86_avx512_psll_w_512: 317 case Intrinsic::x86_avx512_pslli_d_512: 318 case Intrinsic::x86_avx512_pslli_q_512: 319 case Intrinsic::x86_avx512_pslli_w_512: 320 LogicalShift = true; ShiftLeft = true; 321 break; 322 } 323 assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left"); 324 325 // Simplify if count is constant. 326 auto Arg1 = II.getArgOperand(1); 327 auto CAZ = dyn_cast<ConstantAggregateZero>(Arg1); 328 auto CDV = dyn_cast<ConstantDataVector>(Arg1); 329 auto CInt = dyn_cast<ConstantInt>(Arg1); 330 if (!CAZ && !CDV && !CInt) 331 return nullptr; 332 333 APInt Count(64, 0); 334 if (CDV) { 335 // SSE2/AVX2 uses all the first 64-bits of the 128-bit vector 336 // operand to compute the shift amount. 337 auto VT = cast<VectorType>(CDV->getType()); 338 unsigned BitWidth = VT->getElementType()->getPrimitiveSizeInBits(); 339 assert((64 % BitWidth) == 0 && "Unexpected packed shift size"); 340 unsigned NumSubElts = 64 / BitWidth; 341 342 // Concatenate the sub-elements to create the 64-bit value. 343 for (unsigned i = 0; i != NumSubElts; ++i) { 344 unsigned SubEltIdx = (NumSubElts - 1) - i; 345 auto SubElt = cast<ConstantInt>(CDV->getElementAsConstant(SubEltIdx)); 346 Count = Count.shl(BitWidth); 347 Count |= SubElt->getValue().zextOrTrunc(64); 348 } 349 } 350 else if (CInt) 351 Count = CInt->getValue(); 352 353 auto Vec = II.getArgOperand(0); 354 auto VT = cast<VectorType>(Vec->getType()); 355 auto SVT = VT->getElementType(); 356 unsigned VWidth = VT->getNumElements(); 357 unsigned BitWidth = SVT->getPrimitiveSizeInBits(); 358 359 // If shift-by-zero then just return the original value. 360 if (Count == 0) 361 return Vec; 362 363 // Handle cases when Shift >= BitWidth. 364 if (Count.uge(BitWidth)) { 365 // If LogicalShift - just return zero. 366 if (LogicalShift) 367 return ConstantAggregateZero::get(VT); 368 369 // If ArithmeticShift - clamp Shift to (BitWidth - 1). 370 Count = APInt(64, BitWidth - 1); 371 } 372 373 // Get a constant vector of the same type as the first operand. 374 auto ShiftAmt = ConstantInt::get(SVT, Count.zextOrTrunc(BitWidth)); 375 auto ShiftVec = Builder.CreateVectorSplat(VWidth, ShiftAmt); 376 377 if (ShiftLeft) 378 return Builder.CreateShl(Vec, ShiftVec); 379 380 if (LogicalShift) 381 return Builder.CreateLShr(Vec, ShiftVec); 382 383 return Builder.CreateAShr(Vec, ShiftVec); 384 } 385 386 // Attempt to simplify AVX2 per-element shift intrinsics to a generic IR shift. 387 // Unlike the generic IR shifts, the intrinsics have defined behaviour for out 388 // of range shift amounts (logical - set to zero, arithmetic - splat sign bit). 389 static Value *simplifyX86varShift(const IntrinsicInst &II, 390 InstCombiner::BuilderTy &Builder) { 391 bool LogicalShift = false; 392 bool ShiftLeft = false; 393 394 switch (II.getIntrinsicID()) { 395 default: llvm_unreachable("Unexpected intrinsic!"); 396 case Intrinsic::x86_avx2_psrav_d: 397 case Intrinsic::x86_avx2_psrav_d_256: 398 case Intrinsic::x86_avx512_psrav_q_128: 399 case Intrinsic::x86_avx512_psrav_q_256: 400 case Intrinsic::x86_avx512_psrav_d_512: 401 case Intrinsic::x86_avx512_psrav_q_512: 402 case Intrinsic::x86_avx512_psrav_w_128: 403 case Intrinsic::x86_avx512_psrav_w_256: 404 case Intrinsic::x86_avx512_psrav_w_512: 405 LogicalShift = false; 406 ShiftLeft = false; 407 break; 408 case Intrinsic::x86_avx2_psrlv_d: 409 case Intrinsic::x86_avx2_psrlv_d_256: 410 case Intrinsic::x86_avx2_psrlv_q: 411 case Intrinsic::x86_avx2_psrlv_q_256: 412 case Intrinsic::x86_avx512_psrlv_d_512: 413 case Intrinsic::x86_avx512_psrlv_q_512: 414 case Intrinsic::x86_avx512_psrlv_w_128: 415 case Intrinsic::x86_avx512_psrlv_w_256: 416 case Intrinsic::x86_avx512_psrlv_w_512: 417 LogicalShift = true; 418 ShiftLeft = false; 419 break; 420 case Intrinsic::x86_avx2_psllv_d: 421 case Intrinsic::x86_avx2_psllv_d_256: 422 case Intrinsic::x86_avx2_psllv_q: 423 case Intrinsic::x86_avx2_psllv_q_256: 424 case Intrinsic::x86_avx512_psllv_d_512: 425 case Intrinsic::x86_avx512_psllv_q_512: 426 case Intrinsic::x86_avx512_psllv_w_128: 427 case Intrinsic::x86_avx512_psllv_w_256: 428 case Intrinsic::x86_avx512_psllv_w_512: 429 LogicalShift = true; 430 ShiftLeft = true; 431 break; 432 } 433 assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left"); 434 435 // Simplify if all shift amounts are constant/undef. 436 auto *CShift = dyn_cast<Constant>(II.getArgOperand(1)); 437 if (!CShift) 438 return nullptr; 439 440 auto Vec = II.getArgOperand(0); 441 auto VT = cast<VectorType>(II.getType()); 442 auto SVT = VT->getVectorElementType(); 443 int NumElts = VT->getNumElements(); 444 int BitWidth = SVT->getIntegerBitWidth(); 445 446 // Collect each element's shift amount. 447 // We also collect special cases: UNDEF = -1, OUT-OF-RANGE = BitWidth. 448 bool AnyOutOfRange = false; 449 SmallVector<int, 8> ShiftAmts; 450 for (int I = 0; I < NumElts; ++I) { 451 auto *CElt = CShift->getAggregateElement(I); 452 if (CElt && isa<UndefValue>(CElt)) { 453 ShiftAmts.push_back(-1); 454 continue; 455 } 456 457 auto *COp = dyn_cast_or_null<ConstantInt>(CElt); 458 if (!COp) 459 return nullptr; 460 461 // Handle out of range shifts. 462 // If LogicalShift - set to BitWidth (special case). 463 // If ArithmeticShift - set to (BitWidth - 1) (sign splat). 464 APInt ShiftVal = COp->getValue(); 465 if (ShiftVal.uge(BitWidth)) { 466 AnyOutOfRange = LogicalShift; 467 ShiftAmts.push_back(LogicalShift ? BitWidth : BitWidth - 1); 468 continue; 469 } 470 471 ShiftAmts.push_back((int)ShiftVal.getZExtValue()); 472 } 473 474 // If all elements out of range or UNDEF, return vector of zeros/undefs. 475 // ArithmeticShift should only hit this if they are all UNDEF. 476 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; 477 if (all_of(ShiftAmts, OutOfRange)) { 478 SmallVector<Constant *, 8> ConstantVec; 479 for (int Idx : ShiftAmts) { 480 if (Idx < 0) { 481 ConstantVec.push_back(UndefValue::get(SVT)); 482 } else { 483 assert(LogicalShift && "Logical shift expected"); 484 ConstantVec.push_back(ConstantInt::getNullValue(SVT)); 485 } 486 } 487 return ConstantVector::get(ConstantVec); 488 } 489 490 // We can't handle only some out of range values with generic logical shifts. 491 if (AnyOutOfRange) 492 return nullptr; 493 494 // Build the shift amount constant vector. 495 SmallVector<Constant *, 8> ShiftVecAmts; 496 for (int Idx : ShiftAmts) { 497 if (Idx < 0) 498 ShiftVecAmts.push_back(UndefValue::get(SVT)); 499 else 500 ShiftVecAmts.push_back(ConstantInt::get(SVT, Idx)); 501 } 502 auto ShiftVec = ConstantVector::get(ShiftVecAmts); 503 504 if (ShiftLeft) 505 return Builder.CreateShl(Vec, ShiftVec); 506 507 if (LogicalShift) 508 return Builder.CreateLShr(Vec, ShiftVec); 509 510 return Builder.CreateAShr(Vec, ShiftVec); 511 } 512 513 static Value *simplifyX86movmsk(const IntrinsicInst &II, 514 InstCombiner::BuilderTy &Builder) { 515 Value *Arg = II.getArgOperand(0); 516 Type *ResTy = II.getType(); 517 Type *ArgTy = Arg->getType(); 518 519 // movmsk(undef) -> zero as we must ensure the upper bits are zero. 520 if (isa<UndefValue>(Arg)) 521 return Constant::getNullValue(ResTy); 522 523 // We can't easily peek through x86_mmx types. 524 if (!ArgTy->isVectorTy()) 525 return nullptr; 526 527 auto *C = dyn_cast<Constant>(Arg); 528 if (!C) 529 return nullptr; 530 531 // Extract signbits of the vector input and pack into integer result. 532 APInt Result(ResTy->getPrimitiveSizeInBits(), 0); 533 for (unsigned I = 0, E = ArgTy->getVectorNumElements(); I != E; ++I) { 534 auto *COp = C->getAggregateElement(I); 535 if (!COp) 536 return nullptr; 537 if (isa<UndefValue>(COp)) 538 continue; 539 540 auto *CInt = dyn_cast<ConstantInt>(COp); 541 auto *CFp = dyn_cast<ConstantFP>(COp); 542 if (!CInt && !CFp) 543 return nullptr; 544 545 if ((CInt && CInt->isNegative()) || (CFp && CFp->isNegative())) 546 Result.setBit(I); 547 } 548 549 return Constant::getIntegerValue(ResTy, Result); 550 } 551 552 static Value *simplifyX86insertps(const IntrinsicInst &II, 553 InstCombiner::BuilderTy &Builder) { 554 auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2)); 555 if (!CInt) 556 return nullptr; 557 558 VectorType *VecTy = cast<VectorType>(II.getType()); 559 assert(VecTy->getNumElements() == 4 && "insertps with wrong vector type"); 560 561 // The immediate permute control byte looks like this: 562 // [3:0] - zero mask for each 32-bit lane 563 // [5:4] - select one 32-bit destination lane 564 // [7:6] - select one 32-bit source lane 565 566 uint8_t Imm = CInt->getZExtValue(); 567 uint8_t ZMask = Imm & 0xf; 568 uint8_t DestLane = (Imm >> 4) & 0x3; 569 uint8_t SourceLane = (Imm >> 6) & 0x3; 570 571 ConstantAggregateZero *ZeroVector = ConstantAggregateZero::get(VecTy); 572 573 // If all zero mask bits are set, this was just a weird way to 574 // generate a zero vector. 575 if (ZMask == 0xf) 576 return ZeroVector; 577 578 // Initialize by passing all of the first source bits through. 579 uint32_t ShuffleMask[4] = { 0, 1, 2, 3 }; 580 581 // We may replace the second operand with the zero vector. 582 Value *V1 = II.getArgOperand(1); 583 584 if (ZMask) { 585 // If the zero mask is being used with a single input or the zero mask 586 // overrides the destination lane, this is a shuffle with the zero vector. 587 if ((II.getArgOperand(0) == II.getArgOperand(1)) || 588 (ZMask & (1 << DestLane))) { 589 V1 = ZeroVector; 590 // We may still move 32-bits of the first source vector from one lane 591 // to another. 592 ShuffleMask[DestLane] = SourceLane; 593 // The zero mask may override the previous insert operation. 594 for (unsigned i = 0; i < 4; ++i) 595 if ((ZMask >> i) & 0x1) 596 ShuffleMask[i] = i + 4; 597 } else { 598 // TODO: Model this case as 2 shuffles or a 'logical and' plus shuffle? 599 return nullptr; 600 } 601 } else { 602 // Replace the selected destination lane with the selected source lane. 603 ShuffleMask[DestLane] = SourceLane + 4; 604 } 605 606 return Builder.CreateShuffleVector(II.getArgOperand(0), V1, ShuffleMask); 607 } 608 609 /// Attempt to simplify SSE4A EXTRQ/EXTRQI instructions using constant folding 610 /// or conversion to a shuffle vector. 611 static Value *simplifyX86extrq(IntrinsicInst &II, Value *Op0, 612 ConstantInt *CILength, ConstantInt *CIIndex, 613 InstCombiner::BuilderTy &Builder) { 614 auto LowConstantHighUndef = [&](uint64_t Val) { 615 Type *IntTy64 = Type::getInt64Ty(II.getContext()); 616 Constant *Args[] = {ConstantInt::get(IntTy64, Val), 617 UndefValue::get(IntTy64)}; 618 return ConstantVector::get(Args); 619 }; 620 621 // See if we're dealing with constant values. 622 Constant *C0 = dyn_cast<Constant>(Op0); 623 ConstantInt *CI0 = 624 C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0)) 625 : nullptr; 626 627 // Attempt to constant fold. 628 if (CILength && CIIndex) { 629 // From AMD documentation: "The bit index and field length are each six 630 // bits in length other bits of the field are ignored." 631 APInt APIndex = CIIndex->getValue().zextOrTrunc(6); 632 APInt APLength = CILength->getValue().zextOrTrunc(6); 633 634 unsigned Index = APIndex.getZExtValue(); 635 636 // From AMD documentation: "a value of zero in the field length is 637 // defined as length of 64". 638 unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue(); 639 640 // From AMD documentation: "If the sum of the bit index + length field 641 // is greater than 64, the results are undefined". 642 unsigned End = Index + Length; 643 644 // Note that both field index and field length are 8-bit quantities. 645 // Since variables 'Index' and 'Length' are unsigned values 646 // obtained from zero-extending field index and field length 647 // respectively, their sum should never wrap around. 648 if (End > 64) 649 return UndefValue::get(II.getType()); 650 651 // If we are inserting whole bytes, we can convert this to a shuffle. 652 // Lowering can recognize EXTRQI shuffle masks. 653 if ((Length % 8) == 0 && (Index % 8) == 0) { 654 // Convert bit indices to byte indices. 655 Length /= 8; 656 Index /= 8; 657 658 Type *IntTy8 = Type::getInt8Ty(II.getContext()); 659 Type *IntTy32 = Type::getInt32Ty(II.getContext()); 660 VectorType *ShufTy = VectorType::get(IntTy8, 16); 661 662 SmallVector<Constant *, 16> ShuffleMask; 663 for (int i = 0; i != (int)Length; ++i) 664 ShuffleMask.push_back( 665 Constant::getIntegerValue(IntTy32, APInt(32, i + Index))); 666 for (int i = Length; i != 8; ++i) 667 ShuffleMask.push_back( 668 Constant::getIntegerValue(IntTy32, APInt(32, i + 16))); 669 for (int i = 8; i != 16; ++i) 670 ShuffleMask.push_back(UndefValue::get(IntTy32)); 671 672 Value *SV = Builder.CreateShuffleVector( 673 Builder.CreateBitCast(Op0, ShufTy), 674 ConstantAggregateZero::get(ShufTy), ConstantVector::get(ShuffleMask)); 675 return Builder.CreateBitCast(SV, II.getType()); 676 } 677 678 // Constant Fold - shift Index'th bit to lowest position and mask off 679 // Length bits. 680 if (CI0) { 681 APInt Elt = CI0->getValue(); 682 Elt = Elt.lshr(Index).zextOrTrunc(Length); 683 return LowConstantHighUndef(Elt.getZExtValue()); 684 } 685 686 // If we were an EXTRQ call, we'll save registers if we convert to EXTRQI. 687 if (II.getIntrinsicID() == Intrinsic::x86_sse4a_extrq) { 688 Value *Args[] = {Op0, CILength, CIIndex}; 689 Module *M = II.getModule(); 690 Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_extrqi); 691 return Builder.CreateCall(F, Args); 692 } 693 } 694 695 // Constant Fold - extraction from zero is always {zero, undef}. 696 if (CI0 && CI0->equalsInt(0)) 697 return LowConstantHighUndef(0); 698 699 return nullptr; 700 } 701 702 /// Attempt to simplify SSE4A INSERTQ/INSERTQI instructions using constant 703 /// folding or conversion to a shuffle vector. 704 static Value *simplifyX86insertq(IntrinsicInst &II, Value *Op0, Value *Op1, 705 APInt APLength, APInt APIndex, 706 InstCombiner::BuilderTy &Builder) { 707 // From AMD documentation: "The bit index and field length are each six bits 708 // in length other bits of the field are ignored." 709 APIndex = APIndex.zextOrTrunc(6); 710 APLength = APLength.zextOrTrunc(6); 711 712 // Attempt to constant fold. 713 unsigned Index = APIndex.getZExtValue(); 714 715 // From AMD documentation: "a value of zero in the field length is 716 // defined as length of 64". 717 unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue(); 718 719 // From AMD documentation: "If the sum of the bit index + length field 720 // is greater than 64, the results are undefined". 721 unsigned End = Index + Length; 722 723 // Note that both field index and field length are 8-bit quantities. 724 // Since variables 'Index' and 'Length' are unsigned values 725 // obtained from zero-extending field index and field length 726 // respectively, their sum should never wrap around. 727 if (End > 64) 728 return UndefValue::get(II.getType()); 729 730 // If we are inserting whole bytes, we can convert this to a shuffle. 731 // Lowering can recognize INSERTQI shuffle masks. 732 if ((Length % 8) == 0 && (Index % 8) == 0) { 733 // Convert bit indices to byte indices. 734 Length /= 8; 735 Index /= 8; 736 737 Type *IntTy8 = Type::getInt8Ty(II.getContext()); 738 Type *IntTy32 = Type::getInt32Ty(II.getContext()); 739 VectorType *ShufTy = VectorType::get(IntTy8, 16); 740 741 SmallVector<Constant *, 16> ShuffleMask; 742 for (int i = 0; i != (int)Index; ++i) 743 ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i))); 744 for (int i = 0; i != (int)Length; ++i) 745 ShuffleMask.push_back( 746 Constant::getIntegerValue(IntTy32, APInt(32, i + 16))); 747 for (int i = Index + Length; i != 8; ++i) 748 ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i))); 749 for (int i = 8; i != 16; ++i) 750 ShuffleMask.push_back(UndefValue::get(IntTy32)); 751 752 Value *SV = Builder.CreateShuffleVector(Builder.CreateBitCast(Op0, ShufTy), 753 Builder.CreateBitCast(Op1, ShufTy), 754 ConstantVector::get(ShuffleMask)); 755 return Builder.CreateBitCast(SV, II.getType()); 756 } 757 758 // See if we're dealing with constant values. 759 Constant *C0 = dyn_cast<Constant>(Op0); 760 Constant *C1 = dyn_cast<Constant>(Op1); 761 ConstantInt *CI00 = 762 C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0)) 763 : nullptr; 764 ConstantInt *CI10 = 765 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0)) 766 : nullptr; 767 768 // Constant Fold - insert bottom Length bits starting at the Index'th bit. 769 if (CI00 && CI10) { 770 APInt V00 = CI00->getValue(); 771 APInt V10 = CI10->getValue(); 772 APInt Mask = APInt::getLowBitsSet(64, Length).shl(Index); 773 V00 = V00 & ~Mask; 774 V10 = V10.zextOrTrunc(Length).zextOrTrunc(64).shl(Index); 775 APInt Val = V00 | V10; 776 Type *IntTy64 = Type::getInt64Ty(II.getContext()); 777 Constant *Args[] = {ConstantInt::get(IntTy64, Val.getZExtValue()), 778 UndefValue::get(IntTy64)}; 779 return ConstantVector::get(Args); 780 } 781 782 // If we were an INSERTQ call, we'll save demanded elements if we convert to 783 // INSERTQI. 784 if (II.getIntrinsicID() == Intrinsic::x86_sse4a_insertq) { 785 Type *IntTy8 = Type::getInt8Ty(II.getContext()); 786 Constant *CILength = ConstantInt::get(IntTy8, Length, false); 787 Constant *CIIndex = ConstantInt::get(IntTy8, Index, false); 788 789 Value *Args[] = {Op0, Op1, CILength, CIIndex}; 790 Module *M = II.getModule(); 791 Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_insertqi); 792 return Builder.CreateCall(F, Args); 793 } 794 795 return nullptr; 796 } 797 798 /// Attempt to convert pshufb* to shufflevector if the mask is constant. 799 static Value *simplifyX86pshufb(const IntrinsicInst &II, 800 InstCombiner::BuilderTy &Builder) { 801 Constant *V = dyn_cast<Constant>(II.getArgOperand(1)); 802 if (!V) 803 return nullptr; 804 805 auto *VecTy = cast<VectorType>(II.getType()); 806 auto *MaskEltTy = Type::getInt32Ty(II.getContext()); 807 unsigned NumElts = VecTy->getNumElements(); 808 assert((NumElts == 16 || NumElts == 32 || NumElts == 64) && 809 "Unexpected number of elements in shuffle mask!"); 810 811 // Construct a shuffle mask from constant integers or UNDEFs. 812 Constant *Indexes[64] = {nullptr}; 813 814 // Each byte in the shuffle control mask forms an index to permute the 815 // corresponding byte in the destination operand. 816 for (unsigned I = 0; I < NumElts; ++I) { 817 Constant *COp = V->getAggregateElement(I); 818 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp))) 819 return nullptr; 820 821 if (isa<UndefValue>(COp)) { 822 Indexes[I] = UndefValue::get(MaskEltTy); 823 continue; 824 } 825 826 int8_t Index = cast<ConstantInt>(COp)->getValue().getZExtValue(); 827 828 // If the most significant bit (bit[7]) of each byte of the shuffle 829 // control mask is set, then zero is written in the result byte. 830 // The zero vector is in the right-hand side of the resulting 831 // shufflevector. 832 833 // The value of each index for the high 128-bit lane is the least 834 // significant 4 bits of the respective shuffle control byte. 835 Index = ((Index < 0) ? NumElts : Index & 0x0F) + (I & 0xF0); 836 Indexes[I] = ConstantInt::get(MaskEltTy, Index); 837 } 838 839 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts)); 840 auto V1 = II.getArgOperand(0); 841 auto V2 = Constant::getNullValue(VecTy); 842 return Builder.CreateShuffleVector(V1, V2, ShuffleMask); 843 } 844 845 /// Attempt to convert vpermilvar* to shufflevector if the mask is constant. 846 static Value *simplifyX86vpermilvar(const IntrinsicInst &II, 847 InstCombiner::BuilderTy &Builder) { 848 Constant *V = dyn_cast<Constant>(II.getArgOperand(1)); 849 if (!V) 850 return nullptr; 851 852 auto *VecTy = cast<VectorType>(II.getType()); 853 auto *MaskEltTy = Type::getInt32Ty(II.getContext()); 854 unsigned NumElts = VecTy->getVectorNumElements(); 855 bool IsPD = VecTy->getScalarType()->isDoubleTy(); 856 unsigned NumLaneElts = IsPD ? 2 : 4; 857 assert(NumElts == 16 || NumElts == 8 || NumElts == 4 || NumElts == 2); 858 859 // Construct a shuffle mask from constant integers or UNDEFs. 860 Constant *Indexes[16] = {nullptr}; 861 862 // The intrinsics only read one or two bits, clear the rest. 863 for (unsigned I = 0; I < NumElts; ++I) { 864 Constant *COp = V->getAggregateElement(I); 865 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp))) 866 return nullptr; 867 868 if (isa<UndefValue>(COp)) { 869 Indexes[I] = UndefValue::get(MaskEltTy); 870 continue; 871 } 872 873 APInt Index = cast<ConstantInt>(COp)->getValue(); 874 Index = Index.zextOrTrunc(32).getLoBits(2); 875 876 // The PD variants uses bit 1 to select per-lane element index, so 877 // shift down to convert to generic shuffle mask index. 878 if (IsPD) 879 Index = Index.lshr(1); 880 881 // The _256 variants are a bit trickier since the mask bits always index 882 // into the corresponding 128 half. In order to convert to a generic 883 // shuffle, we have to make that explicit. 884 Index += APInt(32, (I / NumLaneElts) * NumLaneElts); 885 886 Indexes[I] = ConstantInt::get(MaskEltTy, Index); 887 } 888 889 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts)); 890 auto V1 = II.getArgOperand(0); 891 auto V2 = UndefValue::get(V1->getType()); 892 return Builder.CreateShuffleVector(V1, V2, ShuffleMask); 893 } 894 895 /// Attempt to convert vpermd/vpermps to shufflevector if the mask is constant. 896 static Value *simplifyX86vpermv(const IntrinsicInst &II, 897 InstCombiner::BuilderTy &Builder) { 898 auto *V = dyn_cast<Constant>(II.getArgOperand(1)); 899 if (!V) 900 return nullptr; 901 902 auto *VecTy = cast<VectorType>(II.getType()); 903 auto *MaskEltTy = Type::getInt32Ty(II.getContext()); 904 unsigned Size = VecTy->getNumElements(); 905 assert(Size == 8 && "Unexpected shuffle mask size"); 906 907 // Construct a shuffle mask from constant integers or UNDEFs. 908 Constant *Indexes[8] = {nullptr}; 909 910 for (unsigned I = 0; I < Size; ++I) { 911 Constant *COp = V->getAggregateElement(I); 912 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp))) 913 return nullptr; 914 915 if (isa<UndefValue>(COp)) { 916 Indexes[I] = UndefValue::get(MaskEltTy); 917 continue; 918 } 919 920 APInt Index = cast<ConstantInt>(COp)->getValue(); 921 Index = Index.zextOrTrunc(32).getLoBits(3); 922 Indexes[I] = ConstantInt::get(MaskEltTy, Index); 923 } 924 925 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, Size)); 926 auto V1 = II.getArgOperand(0); 927 auto V2 = UndefValue::get(VecTy); 928 return Builder.CreateShuffleVector(V1, V2, ShuffleMask); 929 } 930 931 /// The shuffle mask for a perm2*128 selects any two halves of two 256-bit 932 /// source vectors, unless a zero bit is set. If a zero bit is set, 933 /// then ignore that half of the mask and clear that half of the vector. 934 static Value *simplifyX86vperm2(const IntrinsicInst &II, 935 InstCombiner::BuilderTy &Builder) { 936 auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2)); 937 if (!CInt) 938 return nullptr; 939 940 VectorType *VecTy = cast<VectorType>(II.getType()); 941 ConstantAggregateZero *ZeroVector = ConstantAggregateZero::get(VecTy); 942 943 // The immediate permute control byte looks like this: 944 // [1:0] - select 128 bits from sources for low half of destination 945 // [2] - ignore 946 // [3] - zero low half of destination 947 // [5:4] - select 128 bits from sources for high half of destination 948 // [6] - ignore 949 // [7] - zero high half of destination 950 951 uint8_t Imm = CInt->getZExtValue(); 952 953 bool LowHalfZero = Imm & 0x08; 954 bool HighHalfZero = Imm & 0x80; 955 956 // If both zero mask bits are set, this was just a weird way to 957 // generate a zero vector. 958 if (LowHalfZero && HighHalfZero) 959 return ZeroVector; 960 961 // If 0 or 1 zero mask bits are set, this is a simple shuffle. 962 unsigned NumElts = VecTy->getNumElements(); 963 unsigned HalfSize = NumElts / 2; 964 SmallVector<uint32_t, 8> ShuffleMask(NumElts); 965 966 // The high bit of the selection field chooses the 1st or 2nd operand. 967 bool LowInputSelect = Imm & 0x02; 968 bool HighInputSelect = Imm & 0x20; 969 970 // The low bit of the selection field chooses the low or high half 971 // of the selected operand. 972 bool LowHalfSelect = Imm & 0x01; 973 bool HighHalfSelect = Imm & 0x10; 974 975 // Determine which operand(s) are actually in use for this instruction. 976 Value *V0 = LowInputSelect ? II.getArgOperand(1) : II.getArgOperand(0); 977 Value *V1 = HighInputSelect ? II.getArgOperand(1) : II.getArgOperand(0); 978 979 // If needed, replace operands based on zero mask. 980 V0 = LowHalfZero ? ZeroVector : V0; 981 V1 = HighHalfZero ? ZeroVector : V1; 982 983 // Permute low half of result. 984 unsigned StartIndex = LowHalfSelect ? HalfSize : 0; 985 for (unsigned i = 0; i < HalfSize; ++i) 986 ShuffleMask[i] = StartIndex + i; 987 988 // Permute high half of result. 989 StartIndex = HighHalfSelect ? HalfSize : 0; 990 StartIndex += NumElts; 991 for (unsigned i = 0; i < HalfSize; ++i) 992 ShuffleMask[i + HalfSize] = StartIndex + i; 993 994 return Builder.CreateShuffleVector(V0, V1, ShuffleMask); 995 } 996 997 /// Decode XOP integer vector comparison intrinsics. 998 static Value *simplifyX86vpcom(const IntrinsicInst &II, 999 InstCombiner::BuilderTy &Builder, 1000 bool IsSigned) { 1001 if (auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2))) { 1002 uint64_t Imm = CInt->getZExtValue() & 0x7; 1003 VectorType *VecTy = cast<VectorType>(II.getType()); 1004 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE; 1005 1006 switch (Imm) { 1007 case 0x0: 1008 Pred = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; 1009 break; 1010 case 0x1: 1011 Pred = IsSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; 1012 break; 1013 case 0x2: 1014 Pred = IsSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; 1015 break; 1016 case 0x3: 1017 Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; 1018 break; 1019 case 0x4: 1020 Pred = ICmpInst::ICMP_EQ; break; 1021 case 0x5: 1022 Pred = ICmpInst::ICMP_NE; break; 1023 case 0x6: 1024 return ConstantInt::getSigned(VecTy, 0); // FALSE 1025 case 0x7: 1026 return ConstantInt::getSigned(VecTy, -1); // TRUE 1027 } 1028 1029 if (Value *Cmp = Builder.CreateICmp(Pred, II.getArgOperand(0), 1030 II.getArgOperand(1))) 1031 return Builder.CreateSExtOrTrunc(Cmp, VecTy); 1032 } 1033 return nullptr; 1034 } 1035 1036 static Value *simplifyMinnumMaxnum(const IntrinsicInst &II) { 1037 Value *Arg0 = II.getArgOperand(0); 1038 Value *Arg1 = II.getArgOperand(1); 1039 1040 // fmin(x, x) -> x 1041 if (Arg0 == Arg1) 1042 return Arg0; 1043 1044 const auto *C1 = dyn_cast<ConstantFP>(Arg1); 1045 1046 // fmin(x, nan) -> x 1047 if (C1 && C1->isNaN()) 1048 return Arg0; 1049 1050 // This is the value because if undef were NaN, we would return the other 1051 // value and cannot return a NaN unless both operands are. 1052 // 1053 // fmin(undef, x) -> x 1054 if (isa<UndefValue>(Arg0)) 1055 return Arg1; 1056 1057 // fmin(x, undef) -> x 1058 if (isa<UndefValue>(Arg1)) 1059 return Arg0; 1060 1061 Value *X = nullptr; 1062 Value *Y = nullptr; 1063 if (II.getIntrinsicID() == Intrinsic::minnum) { 1064 // fmin(x, fmin(x, y)) -> fmin(x, y) 1065 // fmin(y, fmin(x, y)) -> fmin(x, y) 1066 if (match(Arg1, m_FMin(m_Value(X), m_Value(Y)))) { 1067 if (Arg0 == X || Arg0 == Y) 1068 return Arg1; 1069 } 1070 1071 // fmin(fmin(x, y), x) -> fmin(x, y) 1072 // fmin(fmin(x, y), y) -> fmin(x, y) 1073 if (match(Arg0, m_FMin(m_Value(X), m_Value(Y)))) { 1074 if (Arg1 == X || Arg1 == Y) 1075 return Arg0; 1076 } 1077 1078 // TODO: fmin(nnan x, inf) -> x 1079 // TODO: fmin(nnan ninf x, flt_max) -> x 1080 if (C1 && C1->isInfinity()) { 1081 // fmin(x, -inf) -> -inf 1082 if (C1->isNegative()) 1083 return Arg1; 1084 } 1085 } else { 1086 assert(II.getIntrinsicID() == Intrinsic::maxnum); 1087 // fmax(x, fmax(x, y)) -> fmax(x, y) 1088 // fmax(y, fmax(x, y)) -> fmax(x, y) 1089 if (match(Arg1, m_FMax(m_Value(X), m_Value(Y)))) { 1090 if (Arg0 == X || Arg0 == Y) 1091 return Arg1; 1092 } 1093 1094 // fmax(fmax(x, y), x) -> fmax(x, y) 1095 // fmax(fmax(x, y), y) -> fmax(x, y) 1096 if (match(Arg0, m_FMax(m_Value(X), m_Value(Y)))) { 1097 if (Arg1 == X || Arg1 == Y) 1098 return Arg0; 1099 } 1100 1101 // TODO: fmax(nnan x, -inf) -> x 1102 // TODO: fmax(nnan ninf x, -flt_max) -> x 1103 if (C1 && C1->isInfinity()) { 1104 // fmax(x, inf) -> inf 1105 if (!C1->isNegative()) 1106 return Arg1; 1107 } 1108 } 1109 return nullptr; 1110 } 1111 1112 static bool maskIsAllOneOrUndef(Value *Mask) { 1113 auto *ConstMask = dyn_cast<Constant>(Mask); 1114 if (!ConstMask) 1115 return false; 1116 if (ConstMask->isAllOnesValue() || isa<UndefValue>(ConstMask)) 1117 return true; 1118 for (unsigned I = 0, E = ConstMask->getType()->getVectorNumElements(); I != E; 1119 ++I) { 1120 if (auto *MaskElt = ConstMask->getAggregateElement(I)) 1121 if (MaskElt->isAllOnesValue() || isa<UndefValue>(MaskElt)) 1122 continue; 1123 return false; 1124 } 1125 return true; 1126 } 1127 1128 static Value *simplifyMaskedLoad(const IntrinsicInst &II, 1129 InstCombiner::BuilderTy &Builder) { 1130 // If the mask is all ones or undefs, this is a plain vector load of the 1st 1131 // argument. 1132 if (maskIsAllOneOrUndef(II.getArgOperand(2))) { 1133 Value *LoadPtr = II.getArgOperand(0); 1134 unsigned Alignment = cast<ConstantInt>(II.getArgOperand(1))->getZExtValue(); 1135 return Builder.CreateAlignedLoad(LoadPtr, Alignment, "unmaskedload"); 1136 } 1137 1138 return nullptr; 1139 } 1140 1141 static Instruction *simplifyMaskedStore(IntrinsicInst &II, InstCombiner &IC) { 1142 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3)); 1143 if (!ConstMask) 1144 return nullptr; 1145 1146 // If the mask is all zeros, this instruction does nothing. 1147 if (ConstMask->isNullValue()) 1148 return IC.eraseInstFromFunction(II); 1149 1150 // If the mask is all ones, this is a plain vector store of the 1st argument. 1151 if (ConstMask->isAllOnesValue()) { 1152 Value *StorePtr = II.getArgOperand(1); 1153 unsigned Alignment = cast<ConstantInt>(II.getArgOperand(2))->getZExtValue(); 1154 return new StoreInst(II.getArgOperand(0), StorePtr, false, Alignment); 1155 } 1156 1157 return nullptr; 1158 } 1159 1160 static Instruction *simplifyMaskedGather(IntrinsicInst &II, InstCombiner &IC) { 1161 // If the mask is all zeros, return the "passthru" argument of the gather. 1162 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(2)); 1163 if (ConstMask && ConstMask->isNullValue()) 1164 return IC.replaceInstUsesWith(II, II.getArgOperand(3)); 1165 1166 return nullptr; 1167 } 1168 1169 static Instruction *simplifyMaskedScatter(IntrinsicInst &II, InstCombiner &IC) { 1170 // If the mask is all zeros, a scatter does nothing. 1171 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3)); 1172 if (ConstMask && ConstMask->isNullValue()) 1173 return IC.eraseInstFromFunction(II); 1174 1175 return nullptr; 1176 } 1177 1178 static Instruction *foldCttzCtlz(IntrinsicInst &II, InstCombiner &IC) { 1179 assert((II.getIntrinsicID() == Intrinsic::cttz || 1180 II.getIntrinsicID() == Intrinsic::ctlz) && 1181 "Expected cttz or ctlz intrinsic"); 1182 Value *Op0 = II.getArgOperand(0); 1183 // FIXME: Try to simplify vectors of integers. 1184 auto *IT = dyn_cast<IntegerType>(Op0->getType()); 1185 if (!IT) 1186 return nullptr; 1187 1188 unsigned BitWidth = IT->getBitWidth(); 1189 APInt KnownZero(BitWidth, 0); 1190 APInt KnownOne(BitWidth, 0); 1191 IC.computeKnownBits(Op0, KnownZero, KnownOne, 0, &II); 1192 1193 // Create a mask for bits above (ctlz) or below (cttz) the first known one. 1194 bool IsTZ = II.getIntrinsicID() == Intrinsic::cttz; 1195 unsigned NumMaskBits = IsTZ ? KnownOne.countTrailingZeros() 1196 : KnownOne.countLeadingZeros(); 1197 APInt Mask = IsTZ ? APInt::getLowBitsSet(BitWidth, NumMaskBits) 1198 : APInt::getHighBitsSet(BitWidth, NumMaskBits); 1199 1200 // If all bits above (ctlz) or below (cttz) the first known one are known 1201 // zero, this value is constant. 1202 // FIXME: This should be in InstSimplify because we're replacing an 1203 // instruction with a constant. 1204 if ((Mask & KnownZero) == Mask) { 1205 auto *C = ConstantInt::get(IT, APInt(BitWidth, NumMaskBits)); 1206 return IC.replaceInstUsesWith(II, C); 1207 } 1208 1209 // If the input to cttz/ctlz is known to be non-zero, 1210 // then change the 'ZeroIsUndef' parameter to 'true' 1211 // because we know the zero behavior can't affect the result. 1212 if (KnownOne != 0 || isKnownNonZero(Op0, IC.getDataLayout())) { 1213 if (!match(II.getArgOperand(1), m_One())) { 1214 II.setOperand(1, IC.Builder->getTrue()); 1215 return &II; 1216 } 1217 } 1218 1219 return nullptr; 1220 } 1221 1222 // TODO: If the x86 backend knew how to convert a bool vector mask back to an 1223 // XMM register mask efficiently, we could transform all x86 masked intrinsics 1224 // to LLVM masked intrinsics and remove the x86 masked intrinsic defs. 1225 static Instruction *simplifyX86MaskedLoad(IntrinsicInst &II, InstCombiner &IC) { 1226 Value *Ptr = II.getOperand(0); 1227 Value *Mask = II.getOperand(1); 1228 Constant *ZeroVec = Constant::getNullValue(II.getType()); 1229 1230 // Special case a zero mask since that's not a ConstantDataVector. 1231 // This masked load instruction creates a zero vector. 1232 if (isa<ConstantAggregateZero>(Mask)) 1233 return IC.replaceInstUsesWith(II, ZeroVec); 1234 1235 auto *ConstMask = dyn_cast<ConstantDataVector>(Mask); 1236 if (!ConstMask) 1237 return nullptr; 1238 1239 // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic 1240 // to allow target-independent optimizations. 1241 1242 // First, cast the x86 intrinsic scalar pointer to a vector pointer to match 1243 // the LLVM intrinsic definition for the pointer argument. 1244 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace(); 1245 PointerType *VecPtrTy = PointerType::get(II.getType(), AddrSpace); 1246 Value *PtrCast = IC.Builder->CreateBitCast(Ptr, VecPtrTy, "castvec"); 1247 1248 // Second, convert the x86 XMM integer vector mask to a vector of bools based 1249 // on each element's most significant bit (the sign bit). 1250 Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask); 1251 1252 // The pass-through vector for an x86 masked load is a zero vector. 1253 CallInst *NewMaskedLoad = 1254 IC.Builder->CreateMaskedLoad(PtrCast, 1, BoolMask, ZeroVec); 1255 return IC.replaceInstUsesWith(II, NewMaskedLoad); 1256 } 1257 1258 // TODO: If the x86 backend knew how to convert a bool vector mask back to an 1259 // XMM register mask efficiently, we could transform all x86 masked intrinsics 1260 // to LLVM masked intrinsics and remove the x86 masked intrinsic defs. 1261 static bool simplifyX86MaskedStore(IntrinsicInst &II, InstCombiner &IC) { 1262 Value *Ptr = II.getOperand(0); 1263 Value *Mask = II.getOperand(1); 1264 Value *Vec = II.getOperand(2); 1265 1266 // Special case a zero mask since that's not a ConstantDataVector: 1267 // this masked store instruction does nothing. 1268 if (isa<ConstantAggregateZero>(Mask)) { 1269 IC.eraseInstFromFunction(II); 1270 return true; 1271 } 1272 1273 // The SSE2 version is too weird (eg, unaligned but non-temporal) to do 1274 // anything else at this level. 1275 if (II.getIntrinsicID() == Intrinsic::x86_sse2_maskmov_dqu) 1276 return false; 1277 1278 auto *ConstMask = dyn_cast<ConstantDataVector>(Mask); 1279 if (!ConstMask) 1280 return false; 1281 1282 // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic 1283 // to allow target-independent optimizations. 1284 1285 // First, cast the x86 intrinsic scalar pointer to a vector pointer to match 1286 // the LLVM intrinsic definition for the pointer argument. 1287 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace(); 1288 PointerType *VecPtrTy = PointerType::get(Vec->getType(), AddrSpace); 1289 Value *PtrCast = IC.Builder->CreateBitCast(Ptr, VecPtrTy, "castvec"); 1290 1291 // Second, convert the x86 XMM integer vector mask to a vector of bools based 1292 // on each element's most significant bit (the sign bit). 1293 Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask); 1294 1295 IC.Builder->CreateMaskedStore(Vec, PtrCast, 1, BoolMask); 1296 1297 // 'Replace uses' doesn't work for stores. Erase the original masked store. 1298 IC.eraseInstFromFunction(II); 1299 return true; 1300 } 1301 1302 // Returns true iff the 2 intrinsics have the same operands, limiting the 1303 // comparison to the first NumOperands. 1304 static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E, 1305 unsigned NumOperands) { 1306 assert(I.getNumArgOperands() >= NumOperands && "Not enough operands"); 1307 assert(E.getNumArgOperands() >= NumOperands && "Not enough operands"); 1308 for (unsigned i = 0; i < NumOperands; i++) 1309 if (I.getArgOperand(i) != E.getArgOperand(i)) 1310 return false; 1311 return true; 1312 } 1313 1314 // Remove trivially empty start/end intrinsic ranges, i.e. a start 1315 // immediately followed by an end (ignoring debuginfo or other 1316 // start/end intrinsics in between). As this handles only the most trivial 1317 // cases, tracking the nesting level is not needed: 1318 // 1319 // call @llvm.foo.start(i1 0) ; &I 1320 // call @llvm.foo.start(i1 0) 1321 // call @llvm.foo.end(i1 0) ; This one will not be skipped: it will be removed 1322 // call @llvm.foo.end(i1 0) 1323 static bool removeTriviallyEmptyRange(IntrinsicInst &I, unsigned StartID, 1324 unsigned EndID, InstCombiner &IC) { 1325 assert(I.getIntrinsicID() == StartID && 1326 "Start intrinsic does not have expected ID"); 1327 BasicBlock::iterator BI(I), BE(I.getParent()->end()); 1328 for (++BI; BI != BE; ++BI) { 1329 if (auto *E = dyn_cast<IntrinsicInst>(BI)) { 1330 if (isa<DbgInfoIntrinsic>(E) || E->getIntrinsicID() == StartID) 1331 continue; 1332 if (E->getIntrinsicID() == EndID && 1333 haveSameOperands(I, *E, E->getNumArgOperands())) { 1334 IC.eraseInstFromFunction(*E); 1335 IC.eraseInstFromFunction(I); 1336 return true; 1337 } 1338 } 1339 break; 1340 } 1341 1342 return false; 1343 } 1344 1345 Instruction *InstCombiner::visitVAStartInst(VAStartInst &I) { 1346 removeTriviallyEmptyRange(I, Intrinsic::vastart, Intrinsic::vaend, *this); 1347 return nullptr; 1348 } 1349 1350 Instruction *InstCombiner::visitVACopyInst(VACopyInst &I) { 1351 removeTriviallyEmptyRange(I, Intrinsic::vacopy, Intrinsic::vaend, *this); 1352 return nullptr; 1353 } 1354 1355 /// CallInst simplification. This mostly only handles folding of intrinsic 1356 /// instructions. For normal calls, it allows visitCallSite to do the heavy 1357 /// lifting. 1358 Instruction *InstCombiner::visitCallInst(CallInst &CI) { 1359 auto Args = CI.arg_operands(); 1360 if (Value *V = SimplifyCall(CI.getCalledValue(), Args.begin(), Args.end(), DL, 1361 &TLI, &DT, &AC)) 1362 return replaceInstUsesWith(CI, V); 1363 1364 if (isFreeCall(&CI, &TLI)) 1365 return visitFree(CI); 1366 1367 // If the caller function is nounwind, mark the call as nounwind, even if the 1368 // callee isn't. 1369 if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) { 1370 CI.setDoesNotThrow(); 1371 return &CI; 1372 } 1373 1374 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI); 1375 if (!II) return visitCallSite(&CI); 1376 1377 // Intrinsics cannot occur in an invoke, so handle them here instead of in 1378 // visitCallSite. 1379 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) { 1380 bool Changed = false; 1381 1382 // memmove/cpy/set of zero bytes is a noop. 1383 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) { 1384 if (NumBytes->isNullValue()) 1385 return eraseInstFromFunction(CI); 1386 1387 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes)) 1388 if (CI->getZExtValue() == 1) { 1389 // Replace the instruction with just byte operations. We would 1390 // transform other cases to loads/stores, but we don't know if 1391 // alignment is sufficient. 1392 } 1393 } 1394 1395 // No other transformations apply to volatile transfers. 1396 if (MI->isVolatile()) 1397 return nullptr; 1398 1399 // If we have a memmove and the source operation is a constant global, 1400 // then the source and dest pointers can't alias, so we can change this 1401 // into a call to memcpy. 1402 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) { 1403 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource())) 1404 if (GVSrc->isConstant()) { 1405 Module *M = CI.getModule(); 1406 Intrinsic::ID MemCpyID = Intrinsic::memcpy; 1407 Type *Tys[3] = { CI.getArgOperand(0)->getType(), 1408 CI.getArgOperand(1)->getType(), 1409 CI.getArgOperand(2)->getType() }; 1410 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys)); 1411 Changed = true; 1412 } 1413 } 1414 1415 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) { 1416 // memmove(x,x,size) -> noop. 1417 if (MTI->getSource() == MTI->getDest()) 1418 return eraseInstFromFunction(CI); 1419 } 1420 1421 // If we can determine a pointer alignment that is bigger than currently 1422 // set, update the alignment. 1423 if (isa<MemTransferInst>(MI)) { 1424 if (Instruction *I = SimplifyMemTransfer(MI)) 1425 return I; 1426 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) { 1427 if (Instruction *I = SimplifyMemSet(MSI)) 1428 return I; 1429 } 1430 1431 if (Changed) return II; 1432 } 1433 1434 auto SimplifyDemandedVectorEltsLow = [this](Value *Op, unsigned Width, 1435 unsigned DemandedWidth) { 1436 APInt UndefElts(Width, 0); 1437 APInt DemandedElts = APInt::getLowBitsSet(Width, DemandedWidth); 1438 return SimplifyDemandedVectorElts(Op, DemandedElts, UndefElts); 1439 }; 1440 1441 switch (II->getIntrinsicID()) { 1442 default: break; 1443 case Intrinsic::objectsize: { 1444 uint64_t Size; 1445 if (getObjectSize(II->getArgOperand(0), Size, DL, &TLI)) { 1446 APInt APSize(II->getType()->getIntegerBitWidth(), Size); 1447 // Equality check to be sure that `Size` can fit in a value of type 1448 // `II->getType()` 1449 if (APSize == Size) 1450 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), APSize)); 1451 } 1452 return nullptr; 1453 } 1454 case Intrinsic::bswap: { 1455 Value *IIOperand = II->getArgOperand(0); 1456 Value *X = nullptr; 1457 1458 // bswap(bswap(x)) -> x 1459 if (match(IIOperand, m_BSwap(m_Value(X)))) 1460 return replaceInstUsesWith(CI, X); 1461 1462 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c)) 1463 if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) { 1464 unsigned C = X->getType()->getPrimitiveSizeInBits() - 1465 IIOperand->getType()->getPrimitiveSizeInBits(); 1466 Value *CV = ConstantInt::get(X->getType(), C); 1467 Value *V = Builder->CreateLShr(X, CV); 1468 return new TruncInst(V, IIOperand->getType()); 1469 } 1470 break; 1471 } 1472 1473 case Intrinsic::bitreverse: { 1474 Value *IIOperand = II->getArgOperand(0); 1475 Value *X = nullptr; 1476 1477 // bitreverse(bitreverse(x)) -> x 1478 if (match(IIOperand, m_Intrinsic<Intrinsic::bitreverse>(m_Value(X)))) 1479 return replaceInstUsesWith(CI, X); 1480 break; 1481 } 1482 1483 case Intrinsic::masked_load: 1484 if (Value *SimplifiedMaskedOp = simplifyMaskedLoad(*II, *Builder)) 1485 return replaceInstUsesWith(CI, SimplifiedMaskedOp); 1486 break; 1487 case Intrinsic::masked_store: 1488 return simplifyMaskedStore(*II, *this); 1489 case Intrinsic::masked_gather: 1490 return simplifyMaskedGather(*II, *this); 1491 case Intrinsic::masked_scatter: 1492 return simplifyMaskedScatter(*II, *this); 1493 1494 case Intrinsic::powi: 1495 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) { 1496 // powi(x, 0) -> 1.0 1497 if (Power->isZero()) 1498 return replaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0)); 1499 // powi(x, 1) -> x 1500 if (Power->isOne()) 1501 return replaceInstUsesWith(CI, II->getArgOperand(0)); 1502 // powi(x, -1) -> 1/x 1503 if (Power->isAllOnesValue()) 1504 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0), 1505 II->getArgOperand(0)); 1506 } 1507 break; 1508 1509 case Intrinsic::cttz: 1510 case Intrinsic::ctlz: 1511 if (auto *I = foldCttzCtlz(*II, *this)) 1512 return I; 1513 break; 1514 1515 case Intrinsic::uadd_with_overflow: 1516 case Intrinsic::sadd_with_overflow: 1517 case Intrinsic::umul_with_overflow: 1518 case Intrinsic::smul_with_overflow: 1519 if (isa<Constant>(II->getArgOperand(0)) && 1520 !isa<Constant>(II->getArgOperand(1))) { 1521 // Canonicalize constants into the RHS. 1522 Value *LHS = II->getArgOperand(0); 1523 II->setArgOperand(0, II->getArgOperand(1)); 1524 II->setArgOperand(1, LHS); 1525 return II; 1526 } 1527 LLVM_FALLTHROUGH; 1528 1529 case Intrinsic::usub_with_overflow: 1530 case Intrinsic::ssub_with_overflow: { 1531 OverflowCheckFlavor OCF = 1532 IntrinsicIDToOverflowCheckFlavor(II->getIntrinsicID()); 1533 assert(OCF != OCF_INVALID && "unexpected!"); 1534 1535 Value *OperationResult = nullptr; 1536 Constant *OverflowResult = nullptr; 1537 if (OptimizeOverflowCheck(OCF, II->getArgOperand(0), II->getArgOperand(1), 1538 *II, OperationResult, OverflowResult)) 1539 return CreateOverflowTuple(II, OperationResult, OverflowResult); 1540 1541 break; 1542 } 1543 1544 case Intrinsic::minnum: 1545 case Intrinsic::maxnum: { 1546 Value *Arg0 = II->getArgOperand(0); 1547 Value *Arg1 = II->getArgOperand(1); 1548 // Canonicalize constants to the RHS. 1549 if (isa<ConstantFP>(Arg0) && !isa<ConstantFP>(Arg1)) { 1550 II->setArgOperand(0, Arg1); 1551 II->setArgOperand(1, Arg0); 1552 return II; 1553 } 1554 if (Value *V = simplifyMinnumMaxnum(*II)) 1555 return replaceInstUsesWith(*II, V); 1556 break; 1557 } 1558 case Intrinsic::ppc_altivec_lvx: 1559 case Intrinsic::ppc_altivec_lvxl: 1560 // Turn PPC lvx -> load if the pointer is known aligned. 1561 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC, 1562 &DT) >= 16) { 1563 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), 1564 PointerType::getUnqual(II->getType())); 1565 return new LoadInst(Ptr); 1566 } 1567 break; 1568 case Intrinsic::ppc_vsx_lxvw4x: 1569 case Intrinsic::ppc_vsx_lxvd2x: { 1570 // Turn PPC VSX loads into normal loads. 1571 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), 1572 PointerType::getUnqual(II->getType())); 1573 return new LoadInst(Ptr, Twine(""), false, 1); 1574 } 1575 case Intrinsic::ppc_altivec_stvx: 1576 case Intrinsic::ppc_altivec_stvxl: 1577 // Turn stvx -> store if the pointer is known aligned. 1578 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC, 1579 &DT) >= 16) { 1580 Type *OpPtrTy = 1581 PointerType::getUnqual(II->getArgOperand(0)->getType()); 1582 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); 1583 return new StoreInst(II->getArgOperand(0), Ptr); 1584 } 1585 break; 1586 case Intrinsic::ppc_vsx_stxvw4x: 1587 case Intrinsic::ppc_vsx_stxvd2x: { 1588 // Turn PPC VSX stores into normal stores. 1589 Type *OpPtrTy = PointerType::getUnqual(II->getArgOperand(0)->getType()); 1590 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); 1591 return new StoreInst(II->getArgOperand(0), Ptr, false, 1); 1592 } 1593 case Intrinsic::ppc_qpx_qvlfs: 1594 // Turn PPC QPX qvlfs -> load if the pointer is known aligned. 1595 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC, 1596 &DT) >= 16) { 1597 Type *VTy = VectorType::get(Builder->getFloatTy(), 1598 II->getType()->getVectorNumElements()); 1599 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), 1600 PointerType::getUnqual(VTy)); 1601 Value *Load = Builder->CreateLoad(Ptr); 1602 return new FPExtInst(Load, II->getType()); 1603 } 1604 break; 1605 case Intrinsic::ppc_qpx_qvlfd: 1606 // Turn PPC QPX qvlfd -> load if the pointer is known aligned. 1607 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 32, DL, II, &AC, 1608 &DT) >= 32) { 1609 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), 1610 PointerType::getUnqual(II->getType())); 1611 return new LoadInst(Ptr); 1612 } 1613 break; 1614 case Intrinsic::ppc_qpx_qvstfs: 1615 // Turn PPC QPX qvstfs -> store if the pointer is known aligned. 1616 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC, 1617 &DT) >= 16) { 1618 Type *VTy = VectorType::get(Builder->getFloatTy(), 1619 II->getArgOperand(0)->getType()->getVectorNumElements()); 1620 Value *TOp = Builder->CreateFPTrunc(II->getArgOperand(0), VTy); 1621 Type *OpPtrTy = PointerType::getUnqual(VTy); 1622 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); 1623 return new StoreInst(TOp, Ptr); 1624 } 1625 break; 1626 case Intrinsic::ppc_qpx_qvstfd: 1627 // Turn PPC QPX qvstfd -> store if the pointer is known aligned. 1628 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 32, DL, II, &AC, 1629 &DT) >= 32) { 1630 Type *OpPtrTy = 1631 PointerType::getUnqual(II->getArgOperand(0)->getType()); 1632 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); 1633 return new StoreInst(II->getArgOperand(0), Ptr); 1634 } 1635 break; 1636 1637 case Intrinsic::x86_vcvtph2ps_128: 1638 case Intrinsic::x86_vcvtph2ps_256: { 1639 auto Arg = II->getArgOperand(0); 1640 auto ArgType = cast<VectorType>(Arg->getType()); 1641 auto RetType = cast<VectorType>(II->getType()); 1642 unsigned ArgWidth = ArgType->getNumElements(); 1643 unsigned RetWidth = RetType->getNumElements(); 1644 assert(RetWidth <= ArgWidth && "Unexpected input/return vector widths"); 1645 assert(ArgType->isIntOrIntVectorTy() && 1646 ArgType->getScalarSizeInBits() == 16 && 1647 "CVTPH2PS input type should be 16-bit integer vector"); 1648 assert(RetType->getScalarType()->isFloatTy() && 1649 "CVTPH2PS output type should be 32-bit float vector"); 1650 1651 // Constant folding: Convert to generic half to single conversion. 1652 if (isa<ConstantAggregateZero>(Arg)) 1653 return replaceInstUsesWith(*II, ConstantAggregateZero::get(RetType)); 1654 1655 if (isa<ConstantDataVector>(Arg)) { 1656 auto VectorHalfAsShorts = Arg; 1657 if (RetWidth < ArgWidth) { 1658 SmallVector<uint32_t, 8> SubVecMask; 1659 for (unsigned i = 0; i != RetWidth; ++i) 1660 SubVecMask.push_back((int)i); 1661 VectorHalfAsShorts = Builder->CreateShuffleVector( 1662 Arg, UndefValue::get(ArgType), SubVecMask); 1663 } 1664 1665 auto VectorHalfType = 1666 VectorType::get(Type::getHalfTy(II->getContext()), RetWidth); 1667 auto VectorHalfs = 1668 Builder->CreateBitCast(VectorHalfAsShorts, VectorHalfType); 1669 auto VectorFloats = Builder->CreateFPExt(VectorHalfs, RetType); 1670 return replaceInstUsesWith(*II, VectorFloats); 1671 } 1672 1673 // We only use the lowest lanes of the argument. 1674 if (Value *V = SimplifyDemandedVectorEltsLow(Arg, ArgWidth, RetWidth)) { 1675 II->setArgOperand(0, V); 1676 return II; 1677 } 1678 break; 1679 } 1680 1681 case Intrinsic::x86_sse_cvtss2si: 1682 case Intrinsic::x86_sse_cvtss2si64: 1683 case Intrinsic::x86_sse_cvttss2si: 1684 case Intrinsic::x86_sse_cvttss2si64: 1685 case Intrinsic::x86_sse2_cvtsd2si: 1686 case Intrinsic::x86_sse2_cvtsd2si64: 1687 case Intrinsic::x86_sse2_cvttsd2si: 1688 case Intrinsic::x86_sse2_cvttsd2si64: 1689 case Intrinsic::x86_avx512_vcvtss2si32: 1690 case Intrinsic::x86_avx512_vcvtss2si64: 1691 case Intrinsic::x86_avx512_vcvtss2usi32: 1692 case Intrinsic::x86_avx512_vcvtss2usi64: 1693 case Intrinsic::x86_avx512_vcvtsd2si32: 1694 case Intrinsic::x86_avx512_vcvtsd2si64: 1695 case Intrinsic::x86_avx512_vcvtsd2usi32: 1696 case Intrinsic::x86_avx512_vcvtsd2usi64: 1697 case Intrinsic::x86_avx512_cvttss2si: 1698 case Intrinsic::x86_avx512_cvttss2si64: 1699 case Intrinsic::x86_avx512_cvttss2usi: 1700 case Intrinsic::x86_avx512_cvttss2usi64: 1701 case Intrinsic::x86_avx512_cvttsd2si: 1702 case Intrinsic::x86_avx512_cvttsd2si64: 1703 case Intrinsic::x86_avx512_cvttsd2usi: 1704 case Intrinsic::x86_avx512_cvttsd2usi64: { 1705 // These intrinsics only demand the 0th element of their input vectors. If 1706 // we can simplify the input based on that, do so now. 1707 Value *Arg = II->getArgOperand(0); 1708 unsigned VWidth = Arg->getType()->getVectorNumElements(); 1709 if (Value *V = SimplifyDemandedVectorEltsLow(Arg, VWidth, 1)) { 1710 II->setArgOperand(0, V); 1711 return II; 1712 } 1713 break; 1714 } 1715 1716 case Intrinsic::x86_mmx_pmovmskb: 1717 case Intrinsic::x86_sse_movmsk_ps: 1718 case Intrinsic::x86_sse2_movmsk_pd: 1719 case Intrinsic::x86_sse2_pmovmskb_128: 1720 case Intrinsic::x86_avx_movmsk_pd_256: 1721 case Intrinsic::x86_avx_movmsk_ps_256: 1722 case Intrinsic::x86_avx2_pmovmskb: { 1723 if (Value *V = simplifyX86movmsk(*II, *Builder)) 1724 return replaceInstUsesWith(*II, V); 1725 break; 1726 } 1727 1728 case Intrinsic::x86_sse_comieq_ss: 1729 case Intrinsic::x86_sse_comige_ss: 1730 case Intrinsic::x86_sse_comigt_ss: 1731 case Intrinsic::x86_sse_comile_ss: 1732 case Intrinsic::x86_sse_comilt_ss: 1733 case Intrinsic::x86_sse_comineq_ss: 1734 case Intrinsic::x86_sse_ucomieq_ss: 1735 case Intrinsic::x86_sse_ucomige_ss: 1736 case Intrinsic::x86_sse_ucomigt_ss: 1737 case Intrinsic::x86_sse_ucomile_ss: 1738 case Intrinsic::x86_sse_ucomilt_ss: 1739 case Intrinsic::x86_sse_ucomineq_ss: 1740 case Intrinsic::x86_sse2_comieq_sd: 1741 case Intrinsic::x86_sse2_comige_sd: 1742 case Intrinsic::x86_sse2_comigt_sd: 1743 case Intrinsic::x86_sse2_comile_sd: 1744 case Intrinsic::x86_sse2_comilt_sd: 1745 case Intrinsic::x86_sse2_comineq_sd: 1746 case Intrinsic::x86_sse2_ucomieq_sd: 1747 case Intrinsic::x86_sse2_ucomige_sd: 1748 case Intrinsic::x86_sse2_ucomigt_sd: 1749 case Intrinsic::x86_sse2_ucomile_sd: 1750 case Intrinsic::x86_sse2_ucomilt_sd: 1751 case Intrinsic::x86_sse2_ucomineq_sd: 1752 case Intrinsic::x86_avx512_mask_cmp_ss: 1753 case Intrinsic::x86_avx512_mask_cmp_sd: { 1754 // These intrinsics only demand the 0th element of their input vectors. If 1755 // we can simplify the input based on that, do so now. 1756 bool MadeChange = false; 1757 Value *Arg0 = II->getArgOperand(0); 1758 Value *Arg1 = II->getArgOperand(1); 1759 unsigned VWidth = Arg0->getType()->getVectorNumElements(); 1760 if (Value *V = SimplifyDemandedVectorEltsLow(Arg0, VWidth, 1)) { 1761 II->setArgOperand(0, V); 1762 MadeChange = true; 1763 } 1764 if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, 1)) { 1765 II->setArgOperand(1, V); 1766 MadeChange = true; 1767 } 1768 if (MadeChange) 1769 return II; 1770 break; 1771 } 1772 1773 // X86 scalar intrinsics simplified with SimplifyDemandedVectorElts. 1774 case Intrinsic::x86_avx512_mask_add_ss_round: 1775 case Intrinsic::x86_avx512_mask_div_ss_round: 1776 case Intrinsic::x86_avx512_mask_mul_ss_round: 1777 case Intrinsic::x86_avx512_mask_sub_ss_round: 1778 case Intrinsic::x86_avx512_mask_max_ss_round: 1779 case Intrinsic::x86_avx512_mask_min_ss_round: 1780 case Intrinsic::x86_avx512_mask_add_sd_round: 1781 case Intrinsic::x86_avx512_mask_div_sd_round: 1782 case Intrinsic::x86_avx512_mask_mul_sd_round: 1783 case Intrinsic::x86_avx512_mask_sub_sd_round: 1784 case Intrinsic::x86_avx512_mask_max_sd_round: 1785 case Intrinsic::x86_avx512_mask_min_sd_round: 1786 case Intrinsic::x86_avx512_mask_vfmadd_ss: 1787 case Intrinsic::x86_avx512_mask_vfmadd_sd: 1788 case Intrinsic::x86_avx512_maskz_vfmadd_ss: 1789 case Intrinsic::x86_avx512_maskz_vfmadd_sd: 1790 case Intrinsic::x86_avx512_mask3_vfmadd_ss: 1791 case Intrinsic::x86_avx512_mask3_vfmadd_sd: 1792 case Intrinsic::x86_avx512_mask3_vfmsub_ss: 1793 case Intrinsic::x86_avx512_mask3_vfmsub_sd: 1794 case Intrinsic::x86_avx512_mask3_vfnmsub_ss: 1795 case Intrinsic::x86_avx512_mask3_vfnmsub_sd: 1796 case Intrinsic::x86_fma_vfmadd_ss: 1797 case Intrinsic::x86_fma_vfmsub_ss: 1798 case Intrinsic::x86_fma_vfnmadd_ss: 1799 case Intrinsic::x86_fma_vfnmsub_ss: 1800 case Intrinsic::x86_fma_vfmadd_sd: 1801 case Intrinsic::x86_fma_vfmsub_sd: 1802 case Intrinsic::x86_fma_vfnmadd_sd: 1803 case Intrinsic::x86_fma_vfnmsub_sd: 1804 case Intrinsic::x86_sse_cmp_ss: 1805 case Intrinsic::x86_sse_min_ss: 1806 case Intrinsic::x86_sse_max_ss: 1807 case Intrinsic::x86_sse2_cmp_sd: 1808 case Intrinsic::x86_sse2_min_sd: 1809 case Intrinsic::x86_sse2_max_sd: 1810 case Intrinsic::x86_sse41_round_ss: 1811 case Intrinsic::x86_sse41_round_sd: 1812 case Intrinsic::x86_xop_vfrcz_ss: 1813 case Intrinsic::x86_xop_vfrcz_sd: { 1814 unsigned VWidth = II->getType()->getVectorNumElements(); 1815 APInt UndefElts(VWidth, 0); 1816 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth)); 1817 if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, UndefElts)) { 1818 if (V != II) 1819 return replaceInstUsesWith(*II, V); 1820 return II; 1821 } 1822 break; 1823 } 1824 1825 // Constant fold ashr( <A x Bi>, Ci ). 1826 // Constant fold lshr( <A x Bi>, Ci ). 1827 // Constant fold shl( <A x Bi>, Ci ). 1828 case Intrinsic::x86_sse2_psrai_d: 1829 case Intrinsic::x86_sse2_psrai_w: 1830 case Intrinsic::x86_avx2_psrai_d: 1831 case Intrinsic::x86_avx2_psrai_w: 1832 case Intrinsic::x86_avx512_psrai_q_128: 1833 case Intrinsic::x86_avx512_psrai_q_256: 1834 case Intrinsic::x86_avx512_psrai_d_512: 1835 case Intrinsic::x86_avx512_psrai_q_512: 1836 case Intrinsic::x86_avx512_psrai_w_512: 1837 case Intrinsic::x86_sse2_psrli_d: 1838 case Intrinsic::x86_sse2_psrli_q: 1839 case Intrinsic::x86_sse2_psrli_w: 1840 case Intrinsic::x86_avx2_psrli_d: 1841 case Intrinsic::x86_avx2_psrli_q: 1842 case Intrinsic::x86_avx2_psrli_w: 1843 case Intrinsic::x86_avx512_psrli_d_512: 1844 case Intrinsic::x86_avx512_psrli_q_512: 1845 case Intrinsic::x86_avx512_psrli_w_512: 1846 case Intrinsic::x86_sse2_pslli_d: 1847 case Intrinsic::x86_sse2_pslli_q: 1848 case Intrinsic::x86_sse2_pslli_w: 1849 case Intrinsic::x86_avx2_pslli_d: 1850 case Intrinsic::x86_avx2_pslli_q: 1851 case Intrinsic::x86_avx2_pslli_w: 1852 case Intrinsic::x86_avx512_pslli_d_512: 1853 case Intrinsic::x86_avx512_pslli_q_512: 1854 case Intrinsic::x86_avx512_pslli_w_512: 1855 if (Value *V = simplifyX86immShift(*II, *Builder)) 1856 return replaceInstUsesWith(*II, V); 1857 break; 1858 1859 case Intrinsic::x86_sse2_psra_d: 1860 case Intrinsic::x86_sse2_psra_w: 1861 case Intrinsic::x86_avx2_psra_d: 1862 case Intrinsic::x86_avx2_psra_w: 1863 case Intrinsic::x86_avx512_psra_q_128: 1864 case Intrinsic::x86_avx512_psra_q_256: 1865 case Intrinsic::x86_avx512_psra_d_512: 1866 case Intrinsic::x86_avx512_psra_q_512: 1867 case Intrinsic::x86_avx512_psra_w_512: 1868 case Intrinsic::x86_sse2_psrl_d: 1869 case Intrinsic::x86_sse2_psrl_q: 1870 case Intrinsic::x86_sse2_psrl_w: 1871 case Intrinsic::x86_avx2_psrl_d: 1872 case Intrinsic::x86_avx2_psrl_q: 1873 case Intrinsic::x86_avx2_psrl_w: 1874 case Intrinsic::x86_avx512_psrl_d_512: 1875 case Intrinsic::x86_avx512_psrl_q_512: 1876 case Intrinsic::x86_avx512_psrl_w_512: 1877 case Intrinsic::x86_sse2_psll_d: 1878 case Intrinsic::x86_sse2_psll_q: 1879 case Intrinsic::x86_sse2_psll_w: 1880 case Intrinsic::x86_avx2_psll_d: 1881 case Intrinsic::x86_avx2_psll_q: 1882 case Intrinsic::x86_avx2_psll_w: 1883 case Intrinsic::x86_avx512_psll_d_512: 1884 case Intrinsic::x86_avx512_psll_q_512: 1885 case Intrinsic::x86_avx512_psll_w_512: { 1886 if (Value *V = simplifyX86immShift(*II, *Builder)) 1887 return replaceInstUsesWith(*II, V); 1888 1889 // SSE2/AVX2 uses only the first 64-bits of the 128-bit vector 1890 // operand to compute the shift amount. 1891 Value *Arg1 = II->getArgOperand(1); 1892 assert(Arg1->getType()->getPrimitiveSizeInBits() == 128 && 1893 "Unexpected packed shift size"); 1894 unsigned VWidth = Arg1->getType()->getVectorNumElements(); 1895 1896 if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, VWidth / 2)) { 1897 II->setArgOperand(1, V); 1898 return II; 1899 } 1900 break; 1901 } 1902 1903 case Intrinsic::x86_avx2_psllv_d: 1904 case Intrinsic::x86_avx2_psllv_d_256: 1905 case Intrinsic::x86_avx2_psllv_q: 1906 case Intrinsic::x86_avx2_psllv_q_256: 1907 case Intrinsic::x86_avx512_psllv_d_512: 1908 case Intrinsic::x86_avx512_psllv_q_512: 1909 case Intrinsic::x86_avx512_psllv_w_128: 1910 case Intrinsic::x86_avx512_psllv_w_256: 1911 case Intrinsic::x86_avx512_psllv_w_512: 1912 case Intrinsic::x86_avx2_psrav_d: 1913 case Intrinsic::x86_avx2_psrav_d_256: 1914 case Intrinsic::x86_avx512_psrav_q_128: 1915 case Intrinsic::x86_avx512_psrav_q_256: 1916 case Intrinsic::x86_avx512_psrav_d_512: 1917 case Intrinsic::x86_avx512_psrav_q_512: 1918 case Intrinsic::x86_avx512_psrav_w_128: 1919 case Intrinsic::x86_avx512_psrav_w_256: 1920 case Intrinsic::x86_avx512_psrav_w_512: 1921 case Intrinsic::x86_avx2_psrlv_d: 1922 case Intrinsic::x86_avx2_psrlv_d_256: 1923 case Intrinsic::x86_avx2_psrlv_q: 1924 case Intrinsic::x86_avx2_psrlv_q_256: 1925 case Intrinsic::x86_avx512_psrlv_d_512: 1926 case Intrinsic::x86_avx512_psrlv_q_512: 1927 case Intrinsic::x86_avx512_psrlv_w_128: 1928 case Intrinsic::x86_avx512_psrlv_w_256: 1929 case Intrinsic::x86_avx512_psrlv_w_512: 1930 if (Value *V = simplifyX86varShift(*II, *Builder)) 1931 return replaceInstUsesWith(*II, V); 1932 break; 1933 1934 case Intrinsic::x86_sse41_insertps: 1935 if (Value *V = simplifyX86insertps(*II, *Builder)) 1936 return replaceInstUsesWith(*II, V); 1937 break; 1938 1939 case Intrinsic::x86_sse4a_extrq: { 1940 Value *Op0 = II->getArgOperand(0); 1941 Value *Op1 = II->getArgOperand(1); 1942 unsigned VWidth0 = Op0->getType()->getVectorNumElements(); 1943 unsigned VWidth1 = Op1->getType()->getVectorNumElements(); 1944 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && 1945 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 && 1946 VWidth1 == 16 && "Unexpected operand sizes"); 1947 1948 // See if we're dealing with constant values. 1949 Constant *C1 = dyn_cast<Constant>(Op1); 1950 ConstantInt *CILength = 1951 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0)) 1952 : nullptr; 1953 ConstantInt *CIIndex = 1954 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1)) 1955 : nullptr; 1956 1957 // Attempt to simplify to a constant, shuffle vector or EXTRQI call. 1958 if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, *Builder)) 1959 return replaceInstUsesWith(*II, V); 1960 1961 // EXTRQ only uses the lowest 64-bits of the first 128-bit vector 1962 // operands and the lowest 16-bits of the second. 1963 bool MadeChange = false; 1964 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) { 1965 II->setArgOperand(0, V); 1966 MadeChange = true; 1967 } 1968 if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 2)) { 1969 II->setArgOperand(1, V); 1970 MadeChange = true; 1971 } 1972 if (MadeChange) 1973 return II; 1974 break; 1975 } 1976 1977 case Intrinsic::x86_sse4a_extrqi: { 1978 // EXTRQI: Extract Length bits starting from Index. Zero pad the remaining 1979 // bits of the lower 64-bits. The upper 64-bits are undefined. 1980 Value *Op0 = II->getArgOperand(0); 1981 unsigned VWidth = Op0->getType()->getVectorNumElements(); 1982 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 && 1983 "Unexpected operand size"); 1984 1985 // See if we're dealing with constant values. 1986 ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(1)); 1987 ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(2)); 1988 1989 // Attempt to simplify to a constant or shuffle vector. 1990 if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, *Builder)) 1991 return replaceInstUsesWith(*II, V); 1992 1993 // EXTRQI only uses the lowest 64-bits of the first 128-bit vector 1994 // operand. 1995 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) { 1996 II->setArgOperand(0, V); 1997 return II; 1998 } 1999 break; 2000 } 2001 2002 case Intrinsic::x86_sse4a_insertq: { 2003 Value *Op0 = II->getArgOperand(0); 2004 Value *Op1 = II->getArgOperand(1); 2005 unsigned VWidth = Op0->getType()->getVectorNumElements(); 2006 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && 2007 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 && 2008 Op1->getType()->getVectorNumElements() == 2 && 2009 "Unexpected operand size"); 2010 2011 // See if we're dealing with constant values. 2012 Constant *C1 = dyn_cast<Constant>(Op1); 2013 ConstantInt *CI11 = 2014 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1)) 2015 : nullptr; 2016 2017 // Attempt to simplify to a constant, shuffle vector or INSERTQI call. 2018 if (CI11) { 2019 const APInt &V11 = CI11->getValue(); 2020 APInt Len = V11.zextOrTrunc(6); 2021 APInt Idx = V11.lshr(8).zextOrTrunc(6); 2022 if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, *Builder)) 2023 return replaceInstUsesWith(*II, V); 2024 } 2025 2026 // INSERTQ only uses the lowest 64-bits of the first 128-bit vector 2027 // operand. 2028 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) { 2029 II->setArgOperand(0, V); 2030 return II; 2031 } 2032 break; 2033 } 2034 2035 case Intrinsic::x86_sse4a_insertqi: { 2036 // INSERTQI: Extract lowest Length bits from lower half of second source and 2037 // insert over first source starting at Index bit. The upper 64-bits are 2038 // undefined. 2039 Value *Op0 = II->getArgOperand(0); 2040 Value *Op1 = II->getArgOperand(1); 2041 unsigned VWidth0 = Op0->getType()->getVectorNumElements(); 2042 unsigned VWidth1 = Op1->getType()->getVectorNumElements(); 2043 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && 2044 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 && 2045 VWidth1 == 2 && "Unexpected operand sizes"); 2046 2047 // See if we're dealing with constant values. 2048 ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(2)); 2049 ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(3)); 2050 2051 // Attempt to simplify to a constant or shuffle vector. 2052 if (CILength && CIIndex) { 2053 APInt Len = CILength->getValue().zextOrTrunc(6); 2054 APInt Idx = CIIndex->getValue().zextOrTrunc(6); 2055 if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, *Builder)) 2056 return replaceInstUsesWith(*II, V); 2057 } 2058 2059 // INSERTQI only uses the lowest 64-bits of the first two 128-bit vector 2060 // operands. 2061 bool MadeChange = false; 2062 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) { 2063 II->setArgOperand(0, V); 2064 MadeChange = true; 2065 } 2066 if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 1)) { 2067 II->setArgOperand(1, V); 2068 MadeChange = true; 2069 } 2070 if (MadeChange) 2071 return II; 2072 break; 2073 } 2074 2075 case Intrinsic::x86_sse41_pblendvb: 2076 case Intrinsic::x86_sse41_blendvps: 2077 case Intrinsic::x86_sse41_blendvpd: 2078 case Intrinsic::x86_avx_blendv_ps_256: 2079 case Intrinsic::x86_avx_blendv_pd_256: 2080 case Intrinsic::x86_avx2_pblendvb: { 2081 // Convert blendv* to vector selects if the mask is constant. 2082 // This optimization is convoluted because the intrinsic is defined as 2083 // getting a vector of floats or doubles for the ps and pd versions. 2084 // FIXME: That should be changed. 2085 2086 Value *Op0 = II->getArgOperand(0); 2087 Value *Op1 = II->getArgOperand(1); 2088 Value *Mask = II->getArgOperand(2); 2089 2090 // fold (blend A, A, Mask) -> A 2091 if (Op0 == Op1) 2092 return replaceInstUsesWith(CI, Op0); 2093 2094 // Zero Mask - select 1st argument. 2095 if (isa<ConstantAggregateZero>(Mask)) 2096 return replaceInstUsesWith(CI, Op0); 2097 2098 // Constant Mask - select 1st/2nd argument lane based on top bit of mask. 2099 if (auto *ConstantMask = dyn_cast<ConstantDataVector>(Mask)) { 2100 Constant *NewSelector = getNegativeIsTrueBoolVec(ConstantMask); 2101 return SelectInst::Create(NewSelector, Op1, Op0, "blendv"); 2102 } 2103 break; 2104 } 2105 2106 case Intrinsic::x86_ssse3_pshuf_b_128: 2107 case Intrinsic::x86_avx2_pshuf_b: 2108 case Intrinsic::x86_avx512_pshuf_b_512: 2109 if (Value *V = simplifyX86pshufb(*II, *Builder)) 2110 return replaceInstUsesWith(*II, V); 2111 break; 2112 2113 case Intrinsic::x86_avx_vpermilvar_ps: 2114 case Intrinsic::x86_avx_vpermilvar_ps_256: 2115 case Intrinsic::x86_avx512_vpermilvar_ps_512: 2116 case Intrinsic::x86_avx_vpermilvar_pd: 2117 case Intrinsic::x86_avx_vpermilvar_pd_256: 2118 case Intrinsic::x86_avx512_vpermilvar_pd_512: 2119 if (Value *V = simplifyX86vpermilvar(*II, *Builder)) 2120 return replaceInstUsesWith(*II, V); 2121 break; 2122 2123 case Intrinsic::x86_avx2_permd: 2124 case Intrinsic::x86_avx2_permps: 2125 if (Value *V = simplifyX86vpermv(*II, *Builder)) 2126 return replaceInstUsesWith(*II, V); 2127 break; 2128 2129 case Intrinsic::x86_avx_vperm2f128_pd_256: 2130 case Intrinsic::x86_avx_vperm2f128_ps_256: 2131 case Intrinsic::x86_avx_vperm2f128_si_256: 2132 case Intrinsic::x86_avx2_vperm2i128: 2133 if (Value *V = simplifyX86vperm2(*II, *Builder)) 2134 return replaceInstUsesWith(*II, V); 2135 break; 2136 2137 case Intrinsic::x86_avx_maskload_ps: 2138 case Intrinsic::x86_avx_maskload_pd: 2139 case Intrinsic::x86_avx_maskload_ps_256: 2140 case Intrinsic::x86_avx_maskload_pd_256: 2141 case Intrinsic::x86_avx2_maskload_d: 2142 case Intrinsic::x86_avx2_maskload_q: 2143 case Intrinsic::x86_avx2_maskload_d_256: 2144 case Intrinsic::x86_avx2_maskload_q_256: 2145 if (Instruction *I = simplifyX86MaskedLoad(*II, *this)) 2146 return I; 2147 break; 2148 2149 case Intrinsic::x86_sse2_maskmov_dqu: 2150 case Intrinsic::x86_avx_maskstore_ps: 2151 case Intrinsic::x86_avx_maskstore_pd: 2152 case Intrinsic::x86_avx_maskstore_ps_256: 2153 case Intrinsic::x86_avx_maskstore_pd_256: 2154 case Intrinsic::x86_avx2_maskstore_d: 2155 case Intrinsic::x86_avx2_maskstore_q: 2156 case Intrinsic::x86_avx2_maskstore_d_256: 2157 case Intrinsic::x86_avx2_maskstore_q_256: 2158 if (simplifyX86MaskedStore(*II, *this)) 2159 return nullptr; 2160 break; 2161 2162 case Intrinsic::x86_xop_vpcomb: 2163 case Intrinsic::x86_xop_vpcomd: 2164 case Intrinsic::x86_xop_vpcomq: 2165 case Intrinsic::x86_xop_vpcomw: 2166 if (Value *V = simplifyX86vpcom(*II, *Builder, true)) 2167 return replaceInstUsesWith(*II, V); 2168 break; 2169 2170 case Intrinsic::x86_xop_vpcomub: 2171 case Intrinsic::x86_xop_vpcomud: 2172 case Intrinsic::x86_xop_vpcomuq: 2173 case Intrinsic::x86_xop_vpcomuw: 2174 if (Value *V = simplifyX86vpcom(*II, *Builder, false)) 2175 return replaceInstUsesWith(*II, V); 2176 break; 2177 2178 case Intrinsic::ppc_altivec_vperm: 2179 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant. 2180 // Note that ppc_altivec_vperm has a big-endian bias, so when creating 2181 // a vectorshuffle for little endian, we must undo the transformation 2182 // performed on vec_perm in altivec.h. That is, we must complement 2183 // the permutation mask with respect to 31 and reverse the order of 2184 // V1 and V2. 2185 if (Constant *Mask = dyn_cast<Constant>(II->getArgOperand(2))) { 2186 assert(Mask->getType()->getVectorNumElements() == 16 && 2187 "Bad type for intrinsic!"); 2188 2189 // Check that all of the elements are integer constants or undefs. 2190 bool AllEltsOk = true; 2191 for (unsigned i = 0; i != 16; ++i) { 2192 Constant *Elt = Mask->getAggregateElement(i); 2193 if (!Elt || !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) { 2194 AllEltsOk = false; 2195 break; 2196 } 2197 } 2198 2199 if (AllEltsOk) { 2200 // Cast the input vectors to byte vectors. 2201 Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0), 2202 Mask->getType()); 2203 Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1), 2204 Mask->getType()); 2205 Value *Result = UndefValue::get(Op0->getType()); 2206 2207 // Only extract each element once. 2208 Value *ExtractedElts[32]; 2209 memset(ExtractedElts, 0, sizeof(ExtractedElts)); 2210 2211 for (unsigned i = 0; i != 16; ++i) { 2212 if (isa<UndefValue>(Mask->getAggregateElement(i))) 2213 continue; 2214 unsigned Idx = 2215 cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue(); 2216 Idx &= 31; // Match the hardware behavior. 2217 if (DL.isLittleEndian()) 2218 Idx = 31 - Idx; 2219 2220 if (!ExtractedElts[Idx]) { 2221 Value *Op0ToUse = (DL.isLittleEndian()) ? Op1 : Op0; 2222 Value *Op1ToUse = (DL.isLittleEndian()) ? Op0 : Op1; 2223 ExtractedElts[Idx] = 2224 Builder->CreateExtractElement(Idx < 16 ? Op0ToUse : Op1ToUse, 2225 Builder->getInt32(Idx&15)); 2226 } 2227 2228 // Insert this value into the result vector. 2229 Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx], 2230 Builder->getInt32(i)); 2231 } 2232 return CastInst::Create(Instruction::BitCast, Result, CI.getType()); 2233 } 2234 } 2235 break; 2236 2237 case Intrinsic::arm_neon_vld1: 2238 case Intrinsic::arm_neon_vld2: 2239 case Intrinsic::arm_neon_vld3: 2240 case Intrinsic::arm_neon_vld4: 2241 case Intrinsic::arm_neon_vld2lane: 2242 case Intrinsic::arm_neon_vld3lane: 2243 case Intrinsic::arm_neon_vld4lane: 2244 case Intrinsic::arm_neon_vst1: 2245 case Intrinsic::arm_neon_vst2: 2246 case Intrinsic::arm_neon_vst3: 2247 case Intrinsic::arm_neon_vst4: 2248 case Intrinsic::arm_neon_vst2lane: 2249 case Intrinsic::arm_neon_vst3lane: 2250 case Intrinsic::arm_neon_vst4lane: { 2251 unsigned MemAlign = 2252 getKnownAlignment(II->getArgOperand(0), DL, II, &AC, &DT); 2253 unsigned AlignArg = II->getNumArgOperands() - 1; 2254 ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg)); 2255 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) { 2256 II->setArgOperand(AlignArg, 2257 ConstantInt::get(Type::getInt32Ty(II->getContext()), 2258 MemAlign, false)); 2259 return II; 2260 } 2261 break; 2262 } 2263 2264 case Intrinsic::arm_neon_vmulls: 2265 case Intrinsic::arm_neon_vmullu: 2266 case Intrinsic::aarch64_neon_smull: 2267 case Intrinsic::aarch64_neon_umull: { 2268 Value *Arg0 = II->getArgOperand(0); 2269 Value *Arg1 = II->getArgOperand(1); 2270 2271 // Handle mul by zero first: 2272 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) { 2273 return replaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType())); 2274 } 2275 2276 // Check for constant LHS & RHS - in this case we just simplify. 2277 bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu || 2278 II->getIntrinsicID() == Intrinsic::aarch64_neon_umull); 2279 VectorType *NewVT = cast<VectorType>(II->getType()); 2280 if (Constant *CV0 = dyn_cast<Constant>(Arg0)) { 2281 if (Constant *CV1 = dyn_cast<Constant>(Arg1)) { 2282 CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext); 2283 CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext); 2284 2285 return replaceInstUsesWith(CI, ConstantExpr::getMul(CV0, CV1)); 2286 } 2287 2288 // Couldn't simplify - canonicalize constant to the RHS. 2289 std::swap(Arg0, Arg1); 2290 } 2291 2292 // Handle mul by one: 2293 if (Constant *CV1 = dyn_cast<Constant>(Arg1)) 2294 if (ConstantInt *Splat = 2295 dyn_cast_or_null<ConstantInt>(CV1->getSplatValue())) 2296 if (Splat->isOne()) 2297 return CastInst::CreateIntegerCast(Arg0, II->getType(), 2298 /*isSigned=*/!Zext); 2299 2300 break; 2301 } 2302 2303 case Intrinsic::amdgcn_rcp: { 2304 if (const ConstantFP *C = dyn_cast<ConstantFP>(II->getArgOperand(0))) { 2305 const APFloat &ArgVal = C->getValueAPF(); 2306 APFloat Val(ArgVal.getSemantics(), 1.0); 2307 APFloat::opStatus Status = Val.divide(ArgVal, 2308 APFloat::rmNearestTiesToEven); 2309 // Only do this if it was exact and therefore not dependent on the 2310 // rounding mode. 2311 if (Status == APFloat::opOK) 2312 return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(), Val)); 2313 } 2314 2315 break; 2316 } 2317 case Intrinsic::amdgcn_frexp_mant: 2318 case Intrinsic::amdgcn_frexp_exp: { 2319 Value *Src = II->getArgOperand(0); 2320 if (const ConstantFP *C = dyn_cast<ConstantFP>(Src)) { 2321 int Exp; 2322 APFloat Significand = frexp(C->getValueAPF(), Exp, 2323 APFloat::rmNearestTiesToEven); 2324 2325 if (II->getIntrinsicID() == Intrinsic::amdgcn_frexp_mant) { 2326 return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(), 2327 Significand)); 2328 } 2329 2330 // Match instruction special case behavior. 2331 if (Exp == APFloat::IEK_NaN || Exp == APFloat::IEK_Inf) 2332 Exp = 0; 2333 2334 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Exp)); 2335 } 2336 2337 if (isa<UndefValue>(Src)) 2338 return replaceInstUsesWith(CI, UndefValue::get(II->getType())); 2339 2340 break; 2341 } 2342 case Intrinsic::amdgcn_class: { 2343 enum { 2344 S_NAN = 1 << 0, // Signaling NaN 2345 Q_NAN = 1 << 1, // Quiet NaN 2346 N_INFINITY = 1 << 2, // Negative infinity 2347 N_NORMAL = 1 << 3, // Negative normal 2348 N_SUBNORMAL = 1 << 4, // Negative subnormal 2349 N_ZERO = 1 << 5, // Negative zero 2350 P_ZERO = 1 << 6, // Positive zero 2351 P_SUBNORMAL = 1 << 7, // Positive subnormal 2352 P_NORMAL = 1 << 8, // Positive normal 2353 P_INFINITY = 1 << 9 // Positive infinity 2354 }; 2355 2356 const uint32_t FullMask = S_NAN | Q_NAN | N_INFINITY | N_NORMAL | 2357 N_SUBNORMAL | N_ZERO | P_ZERO | P_SUBNORMAL | P_NORMAL | P_INFINITY; 2358 2359 Value *Src0 = II->getArgOperand(0); 2360 Value *Src1 = II->getArgOperand(1); 2361 const ConstantInt *CMask = dyn_cast<ConstantInt>(Src1); 2362 if (!CMask) { 2363 if (isa<UndefValue>(Src0)) 2364 return replaceInstUsesWith(*II, UndefValue::get(II->getType())); 2365 2366 if (isa<UndefValue>(Src1)) 2367 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false)); 2368 break; 2369 } 2370 2371 uint32_t Mask = CMask->getZExtValue(); 2372 2373 // If all tests are made, it doesn't matter what the value is. 2374 if ((Mask & FullMask) == FullMask) 2375 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), true)); 2376 2377 if ((Mask & FullMask) == 0) 2378 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false)); 2379 2380 if (Mask == (S_NAN | Q_NAN)) { 2381 // Equivalent of isnan. Replace with standard fcmp. 2382 Value *FCmp = Builder->CreateFCmpUNO(Src0, Src0); 2383 FCmp->takeName(II); 2384 return replaceInstUsesWith(*II, FCmp); 2385 } 2386 2387 const ConstantFP *CVal = dyn_cast<ConstantFP>(Src0); 2388 if (!CVal) { 2389 if (isa<UndefValue>(Src0)) 2390 return replaceInstUsesWith(*II, UndefValue::get(II->getType())); 2391 2392 // Clamp mask to used bits 2393 if ((Mask & FullMask) != Mask) { 2394 CallInst *NewCall = Builder->CreateCall(II->getCalledFunction(), 2395 { Src0, ConstantInt::get(Src1->getType(), Mask & FullMask) } 2396 ); 2397 2398 NewCall->takeName(II); 2399 return replaceInstUsesWith(*II, NewCall); 2400 } 2401 2402 break; 2403 } 2404 2405 const APFloat &Val = CVal->getValueAPF(); 2406 2407 bool Result = 2408 ((Mask & S_NAN) && Val.isNaN() && Val.isSignaling()) || 2409 ((Mask & Q_NAN) && Val.isNaN() && !Val.isSignaling()) || 2410 ((Mask & N_INFINITY) && Val.isInfinity() && Val.isNegative()) || 2411 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) || 2412 ((Mask & N_SUBNORMAL) && Val.isDenormal() && Val.isNegative()) || 2413 ((Mask & N_ZERO) && Val.isZero() && Val.isNegative()) || 2414 ((Mask & P_ZERO) && Val.isZero() && !Val.isNegative()) || 2415 ((Mask & P_SUBNORMAL) && Val.isDenormal() && !Val.isNegative()) || 2416 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) || 2417 ((Mask & P_INFINITY) && Val.isInfinity() && !Val.isNegative()); 2418 2419 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), Result)); 2420 } 2421 case Intrinsic::stackrestore: { 2422 // If the save is right next to the restore, remove the restore. This can 2423 // happen when variable allocas are DCE'd. 2424 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) { 2425 if (SS->getIntrinsicID() == Intrinsic::stacksave) { 2426 if (&*++SS->getIterator() == II) 2427 return eraseInstFromFunction(CI); 2428 } 2429 } 2430 2431 // Scan down this block to see if there is another stack restore in the 2432 // same block without an intervening call/alloca. 2433 BasicBlock::iterator BI(II); 2434 TerminatorInst *TI = II->getParent()->getTerminator(); 2435 bool CannotRemove = false; 2436 for (++BI; &*BI != TI; ++BI) { 2437 if (isa<AllocaInst>(BI)) { 2438 CannotRemove = true; 2439 break; 2440 } 2441 if (CallInst *BCI = dyn_cast<CallInst>(BI)) { 2442 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) { 2443 // If there is a stackrestore below this one, remove this one. 2444 if (II->getIntrinsicID() == Intrinsic::stackrestore) 2445 return eraseInstFromFunction(CI); 2446 2447 // Bail if we cross over an intrinsic with side effects, such as 2448 // llvm.stacksave, llvm.read_register, or llvm.setjmp. 2449 if (II->mayHaveSideEffects()) { 2450 CannotRemove = true; 2451 break; 2452 } 2453 } else { 2454 // If we found a non-intrinsic call, we can't remove the stack 2455 // restore. 2456 CannotRemove = true; 2457 break; 2458 } 2459 } 2460 } 2461 2462 // If the stack restore is in a return, resume, or unwind block and if there 2463 // are no allocas or calls between the restore and the return, nuke the 2464 // restore. 2465 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI))) 2466 return eraseInstFromFunction(CI); 2467 break; 2468 } 2469 case Intrinsic::lifetime_start: 2470 // Asan needs to poison memory to detect invalid access which is possible 2471 // even for empty lifetime range. 2472 if (II->getFunction()->hasFnAttribute(Attribute::SanitizeAddress)) 2473 break; 2474 2475 if (removeTriviallyEmptyRange(*II, Intrinsic::lifetime_start, 2476 Intrinsic::lifetime_end, *this)) 2477 return nullptr; 2478 break; 2479 case Intrinsic::assume: { 2480 Value *IIOperand = II->getArgOperand(0); 2481 // Remove an assume if it is immediately followed by an identical assume. 2482 if (match(II->getNextNode(), 2483 m_Intrinsic<Intrinsic::assume>(m_Specific(IIOperand)))) 2484 return eraseInstFromFunction(CI); 2485 2486 // Canonicalize assume(a && b) -> assume(a); assume(b); 2487 // Note: New assumption intrinsics created here are registered by 2488 // the InstCombineIRInserter object. 2489 Value *AssumeIntrinsic = II->getCalledValue(), *A, *B; 2490 if (match(IIOperand, m_And(m_Value(A), m_Value(B)))) { 2491 Builder->CreateCall(AssumeIntrinsic, A, II->getName()); 2492 Builder->CreateCall(AssumeIntrinsic, B, II->getName()); 2493 return eraseInstFromFunction(*II); 2494 } 2495 // assume(!(a || b)) -> assume(!a); assume(!b); 2496 if (match(IIOperand, m_Not(m_Or(m_Value(A), m_Value(B))))) { 2497 Builder->CreateCall(AssumeIntrinsic, Builder->CreateNot(A), 2498 II->getName()); 2499 Builder->CreateCall(AssumeIntrinsic, Builder->CreateNot(B), 2500 II->getName()); 2501 return eraseInstFromFunction(*II); 2502 } 2503 2504 // assume( (load addr) != null ) -> add 'nonnull' metadata to load 2505 // (if assume is valid at the load) 2506 if (ICmpInst* ICmp = dyn_cast<ICmpInst>(IIOperand)) { 2507 Value *LHS = ICmp->getOperand(0); 2508 Value *RHS = ICmp->getOperand(1); 2509 if (ICmpInst::ICMP_NE == ICmp->getPredicate() && 2510 isa<LoadInst>(LHS) && 2511 isa<Constant>(RHS) && 2512 RHS->getType()->isPointerTy() && 2513 cast<Constant>(RHS)->isNullValue()) { 2514 LoadInst* LI = cast<LoadInst>(LHS); 2515 if (isValidAssumeForContext(II, LI, &DT)) { 2516 MDNode *MD = MDNode::get(II->getContext(), None); 2517 LI->setMetadata(LLVMContext::MD_nonnull, MD); 2518 return eraseInstFromFunction(*II); 2519 } 2520 } 2521 // TODO: apply nonnull return attributes to calls and invokes 2522 // TODO: apply range metadata for range check patterns? 2523 } 2524 // If there is a dominating assume with the same condition as this one, 2525 // then this one is redundant, and should be removed. 2526 APInt KnownZero(1, 0), KnownOne(1, 0); 2527 computeKnownBits(IIOperand, KnownZero, KnownOne, 0, II); 2528 if (KnownOne.isAllOnesValue()) 2529 return eraseInstFromFunction(*II); 2530 2531 break; 2532 } 2533 case Intrinsic::experimental_gc_relocate: { 2534 // Translate facts known about a pointer before relocating into 2535 // facts about the relocate value, while being careful to 2536 // preserve relocation semantics. 2537 Value *DerivedPtr = cast<GCRelocateInst>(II)->getDerivedPtr(); 2538 2539 // Remove the relocation if unused, note that this check is required 2540 // to prevent the cases below from looping forever. 2541 if (II->use_empty()) 2542 return eraseInstFromFunction(*II); 2543 2544 // Undef is undef, even after relocation. 2545 // TODO: provide a hook for this in GCStrategy. This is clearly legal for 2546 // most practical collectors, but there was discussion in the review thread 2547 // about whether it was legal for all possible collectors. 2548 if (isa<UndefValue>(DerivedPtr)) 2549 // Use undef of gc_relocate's type to replace it. 2550 return replaceInstUsesWith(*II, UndefValue::get(II->getType())); 2551 2552 if (auto *PT = dyn_cast<PointerType>(II->getType())) { 2553 // The relocation of null will be null for most any collector. 2554 // TODO: provide a hook for this in GCStrategy. There might be some 2555 // weird collector this property does not hold for. 2556 if (isa<ConstantPointerNull>(DerivedPtr)) 2557 // Use null-pointer of gc_relocate's type to replace it. 2558 return replaceInstUsesWith(*II, ConstantPointerNull::get(PT)); 2559 2560 // isKnownNonNull -> nonnull attribute 2561 if (isKnownNonNullAt(DerivedPtr, II, &DT)) 2562 II->addAttribute(AttributeSet::ReturnIndex, Attribute::NonNull); 2563 } 2564 2565 // TODO: bitcast(relocate(p)) -> relocate(bitcast(p)) 2566 // Canonicalize on the type from the uses to the defs 2567 2568 // TODO: relocate((gep p, C, C2, ...)) -> gep(relocate(p), C, C2, ...) 2569 break; 2570 } 2571 } 2572 2573 return visitCallSite(II); 2574 } 2575 2576 // InvokeInst simplification 2577 // 2578 Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) { 2579 return visitCallSite(&II); 2580 } 2581 2582 /// If this cast does not affect the value passed through the varargs area, we 2583 /// can eliminate the use of the cast. 2584 static bool isSafeToEliminateVarargsCast(const CallSite CS, 2585 const DataLayout &DL, 2586 const CastInst *const CI, 2587 const int ix) { 2588 if (!CI->isLosslessCast()) 2589 return false; 2590 2591 // If this is a GC intrinsic, avoid munging types. We need types for 2592 // statepoint reconstruction in SelectionDAG. 2593 // TODO: This is probably something which should be expanded to all 2594 // intrinsics since the entire point of intrinsics is that 2595 // they are understandable by the optimizer. 2596 if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)) 2597 return false; 2598 2599 // The size of ByVal or InAlloca arguments is derived from the type, so we 2600 // can't change to a type with a different size. If the size were 2601 // passed explicitly we could avoid this check. 2602 if (!CS.isByValOrInAllocaArgument(ix)) 2603 return true; 2604 2605 Type* SrcTy = 2606 cast<PointerType>(CI->getOperand(0)->getType())->getElementType(); 2607 Type* DstTy = cast<PointerType>(CI->getType())->getElementType(); 2608 if (!SrcTy->isSized() || !DstTy->isSized()) 2609 return false; 2610 if (DL.getTypeAllocSize(SrcTy) != DL.getTypeAllocSize(DstTy)) 2611 return false; 2612 return true; 2613 } 2614 2615 Instruction *InstCombiner::tryOptimizeCall(CallInst *CI) { 2616 if (!CI->getCalledFunction()) return nullptr; 2617 2618 auto InstCombineRAUW = [this](Instruction *From, Value *With) { 2619 replaceInstUsesWith(*From, With); 2620 }; 2621 LibCallSimplifier Simplifier(DL, &TLI, InstCombineRAUW); 2622 if (Value *With = Simplifier.optimizeCall(CI)) { 2623 ++NumSimplified; 2624 return CI->use_empty() ? CI : replaceInstUsesWith(*CI, With); 2625 } 2626 2627 return nullptr; 2628 } 2629 2630 static IntrinsicInst *findInitTrampolineFromAlloca(Value *TrampMem) { 2631 // Strip off at most one level of pointer casts, looking for an alloca. This 2632 // is good enough in practice and simpler than handling any number of casts. 2633 Value *Underlying = TrampMem->stripPointerCasts(); 2634 if (Underlying != TrampMem && 2635 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem)) 2636 return nullptr; 2637 if (!isa<AllocaInst>(Underlying)) 2638 return nullptr; 2639 2640 IntrinsicInst *InitTrampoline = nullptr; 2641 for (User *U : TrampMem->users()) { 2642 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U); 2643 if (!II) 2644 return nullptr; 2645 if (II->getIntrinsicID() == Intrinsic::init_trampoline) { 2646 if (InitTrampoline) 2647 // More than one init_trampoline writes to this value. Give up. 2648 return nullptr; 2649 InitTrampoline = II; 2650 continue; 2651 } 2652 if (II->getIntrinsicID() == Intrinsic::adjust_trampoline) 2653 // Allow any number of calls to adjust.trampoline. 2654 continue; 2655 return nullptr; 2656 } 2657 2658 // No call to init.trampoline found. 2659 if (!InitTrampoline) 2660 return nullptr; 2661 2662 // Check that the alloca is being used in the expected way. 2663 if (InitTrampoline->getOperand(0) != TrampMem) 2664 return nullptr; 2665 2666 return InitTrampoline; 2667 } 2668 2669 static IntrinsicInst *findInitTrampolineFromBB(IntrinsicInst *AdjustTramp, 2670 Value *TrampMem) { 2671 // Visit all the previous instructions in the basic block, and try to find a 2672 // init.trampoline which has a direct path to the adjust.trampoline. 2673 for (BasicBlock::iterator I = AdjustTramp->getIterator(), 2674 E = AdjustTramp->getParent()->begin(); 2675 I != E;) { 2676 Instruction *Inst = &*--I; 2677 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) 2678 if (II->getIntrinsicID() == Intrinsic::init_trampoline && 2679 II->getOperand(0) == TrampMem) 2680 return II; 2681 if (Inst->mayWriteToMemory()) 2682 return nullptr; 2683 } 2684 return nullptr; 2685 } 2686 2687 // Given a call to llvm.adjust.trampoline, find and return the corresponding 2688 // call to llvm.init.trampoline if the call to the trampoline can be optimized 2689 // to a direct call to a function. Otherwise return NULL. 2690 // 2691 static IntrinsicInst *findInitTrampoline(Value *Callee) { 2692 Callee = Callee->stripPointerCasts(); 2693 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee); 2694 if (!AdjustTramp || 2695 AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline) 2696 return nullptr; 2697 2698 Value *TrampMem = AdjustTramp->getOperand(0); 2699 2700 if (IntrinsicInst *IT = findInitTrampolineFromAlloca(TrampMem)) 2701 return IT; 2702 if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem)) 2703 return IT; 2704 return nullptr; 2705 } 2706 2707 /// Improvements for call and invoke instructions. 2708 Instruction *InstCombiner::visitCallSite(CallSite CS) { 2709 if (isAllocLikeFn(CS.getInstruction(), &TLI)) 2710 return visitAllocSite(*CS.getInstruction()); 2711 2712 bool Changed = false; 2713 2714 // Mark any parameters that are known to be non-null with the nonnull 2715 // attribute. This is helpful for inlining calls to functions with null 2716 // checks on their arguments. 2717 SmallVector<unsigned, 4> Indices; 2718 unsigned ArgNo = 0; 2719 2720 for (Value *V : CS.args()) { 2721 if (V->getType()->isPointerTy() && 2722 !CS.paramHasAttr(ArgNo + 1, Attribute::NonNull) && 2723 isKnownNonNullAt(V, CS.getInstruction(), &DT)) 2724 Indices.push_back(ArgNo + 1); 2725 ArgNo++; 2726 } 2727 2728 assert(ArgNo == CS.arg_size() && "sanity check"); 2729 2730 if (!Indices.empty()) { 2731 AttributeSet AS = CS.getAttributes(); 2732 LLVMContext &Ctx = CS.getInstruction()->getContext(); 2733 AS = AS.addAttribute(Ctx, Indices, 2734 Attribute::get(Ctx, Attribute::NonNull)); 2735 CS.setAttributes(AS); 2736 Changed = true; 2737 } 2738 2739 // If the callee is a pointer to a function, attempt to move any casts to the 2740 // arguments of the call/invoke. 2741 Value *Callee = CS.getCalledValue(); 2742 if (!isa<Function>(Callee) && transformConstExprCastCall(CS)) 2743 return nullptr; 2744 2745 if (Function *CalleeF = dyn_cast<Function>(Callee)) { 2746 // Remove the convergent attr on calls when the callee is not convergent. 2747 if (CS.isConvergent() && !CalleeF->isConvergent() && 2748 !CalleeF->isIntrinsic()) { 2749 DEBUG(dbgs() << "Removing convergent attr from instr " 2750 << CS.getInstruction() << "\n"); 2751 CS.setNotConvergent(); 2752 return CS.getInstruction(); 2753 } 2754 2755 // If the call and callee calling conventions don't match, this call must 2756 // be unreachable, as the call is undefined. 2757 if (CalleeF->getCallingConv() != CS.getCallingConv() && 2758 // Only do this for calls to a function with a body. A prototype may 2759 // not actually end up matching the implementation's calling conv for a 2760 // variety of reasons (e.g. it may be written in assembly). 2761 !CalleeF->isDeclaration()) { 2762 Instruction *OldCall = CS.getInstruction(); 2763 new StoreInst(ConstantInt::getTrue(Callee->getContext()), 2764 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())), 2765 OldCall); 2766 // If OldCall does not return void then replaceAllUsesWith undef. 2767 // This allows ValueHandlers and custom metadata to adjust itself. 2768 if (!OldCall->getType()->isVoidTy()) 2769 replaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType())); 2770 if (isa<CallInst>(OldCall)) 2771 return eraseInstFromFunction(*OldCall); 2772 2773 // We cannot remove an invoke, because it would change the CFG, just 2774 // change the callee to a null pointer. 2775 cast<InvokeInst>(OldCall)->setCalledFunction( 2776 Constant::getNullValue(CalleeF->getType())); 2777 return nullptr; 2778 } 2779 } 2780 2781 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) { 2782 // If CS does not return void then replaceAllUsesWith undef. 2783 // This allows ValueHandlers and custom metadata to adjust itself. 2784 if (!CS.getInstruction()->getType()->isVoidTy()) 2785 replaceInstUsesWith(*CS.getInstruction(), 2786 UndefValue::get(CS.getInstruction()->getType())); 2787 2788 if (isa<InvokeInst>(CS.getInstruction())) { 2789 // Can't remove an invoke because we cannot change the CFG. 2790 return nullptr; 2791 } 2792 2793 // This instruction is not reachable, just remove it. We insert a store to 2794 // undef so that we know that this code is not reachable, despite the fact 2795 // that we can't modify the CFG here. 2796 new StoreInst(ConstantInt::getTrue(Callee->getContext()), 2797 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())), 2798 CS.getInstruction()); 2799 2800 return eraseInstFromFunction(*CS.getInstruction()); 2801 } 2802 2803 if (IntrinsicInst *II = findInitTrampoline(Callee)) 2804 return transformCallThroughTrampoline(CS, II); 2805 2806 PointerType *PTy = cast<PointerType>(Callee->getType()); 2807 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); 2808 if (FTy->isVarArg()) { 2809 int ix = FTy->getNumParams(); 2810 // See if we can optimize any arguments passed through the varargs area of 2811 // the call. 2812 for (CallSite::arg_iterator I = CS.arg_begin() + FTy->getNumParams(), 2813 E = CS.arg_end(); I != E; ++I, ++ix) { 2814 CastInst *CI = dyn_cast<CastInst>(*I); 2815 if (CI && isSafeToEliminateVarargsCast(CS, DL, CI, ix)) { 2816 *I = CI->getOperand(0); 2817 Changed = true; 2818 } 2819 } 2820 } 2821 2822 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) { 2823 // Inline asm calls cannot throw - mark them 'nounwind'. 2824 CS.setDoesNotThrow(); 2825 Changed = true; 2826 } 2827 2828 // Try to optimize the call if possible, we require DataLayout for most of 2829 // this. None of these calls are seen as possibly dead so go ahead and 2830 // delete the instruction now. 2831 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) { 2832 Instruction *I = tryOptimizeCall(CI); 2833 // If we changed something return the result, etc. Otherwise let 2834 // the fallthrough check. 2835 if (I) return eraseInstFromFunction(*I); 2836 } 2837 2838 return Changed ? CS.getInstruction() : nullptr; 2839 } 2840 2841 /// If the callee is a constexpr cast of a function, attempt to move the cast to 2842 /// the arguments of the call/invoke. 2843 bool InstCombiner::transformConstExprCastCall(CallSite CS) { 2844 auto *Callee = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); 2845 if (!Callee) 2846 return false; 2847 2848 // The prototype of a thunk is a lie. Don't directly call such a function. 2849 if (Callee->hasFnAttribute("thunk")) 2850 return false; 2851 2852 Instruction *Caller = CS.getInstruction(); 2853 const AttributeSet &CallerPAL = CS.getAttributes(); 2854 2855 // Okay, this is a cast from a function to a different type. Unless doing so 2856 // would cause a type conversion of one of our arguments, change this call to 2857 // be a direct call with arguments casted to the appropriate types. 2858 // 2859 FunctionType *FT = Callee->getFunctionType(); 2860 Type *OldRetTy = Caller->getType(); 2861 Type *NewRetTy = FT->getReturnType(); 2862 2863 // Check to see if we are changing the return type... 2864 if (OldRetTy != NewRetTy) { 2865 2866 if (NewRetTy->isStructTy()) 2867 return false; // TODO: Handle multiple return values. 2868 2869 if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) { 2870 if (Callee->isDeclaration()) 2871 return false; // Cannot transform this return value. 2872 2873 if (!Caller->use_empty() && 2874 // void -> non-void is handled specially 2875 !NewRetTy->isVoidTy()) 2876 return false; // Cannot transform this return value. 2877 } 2878 2879 if (!CallerPAL.isEmpty() && !Caller->use_empty()) { 2880 AttrBuilder RAttrs(CallerPAL, AttributeSet::ReturnIndex); 2881 if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy))) 2882 return false; // Attribute not compatible with transformed value. 2883 } 2884 2885 // If the callsite is an invoke instruction, and the return value is used by 2886 // a PHI node in a successor, we cannot change the return type of the call 2887 // because there is no place to put the cast instruction (without breaking 2888 // the critical edge). Bail out in this case. 2889 if (!Caller->use_empty()) 2890 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) 2891 for (User *U : II->users()) 2892 if (PHINode *PN = dyn_cast<PHINode>(U)) 2893 if (PN->getParent() == II->getNormalDest() || 2894 PN->getParent() == II->getUnwindDest()) 2895 return false; 2896 } 2897 2898 unsigned NumActualArgs = CS.arg_size(); 2899 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs); 2900 2901 // Prevent us turning: 2902 // declare void @takes_i32_inalloca(i32* inalloca) 2903 // call void bitcast (void (i32*)* @takes_i32_inalloca to void (i32)*)(i32 0) 2904 // 2905 // into: 2906 // call void @takes_i32_inalloca(i32* null) 2907 // 2908 // Similarly, avoid folding away bitcasts of byval calls. 2909 if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) || 2910 Callee->getAttributes().hasAttrSomewhere(Attribute::ByVal)) 2911 return false; 2912 2913 CallSite::arg_iterator AI = CS.arg_begin(); 2914 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) { 2915 Type *ParamTy = FT->getParamType(i); 2916 Type *ActTy = (*AI)->getType(); 2917 2918 if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL)) 2919 return false; // Cannot transform this parameter value. 2920 2921 if (AttrBuilder(CallerPAL.getParamAttributes(i + 1), i + 1). 2922 overlaps(AttributeFuncs::typeIncompatible(ParamTy))) 2923 return false; // Attribute not compatible with transformed value. 2924 2925 if (CS.isInAllocaArgument(i)) 2926 return false; // Cannot transform to and from inalloca. 2927 2928 // If the parameter is passed as a byval argument, then we have to have a 2929 // sized type and the sized type has to have the same size as the old type. 2930 if (ParamTy != ActTy && 2931 CallerPAL.getParamAttributes(i + 1).hasAttribute(i + 1, 2932 Attribute::ByVal)) { 2933 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy); 2934 if (!ParamPTy || !ParamPTy->getElementType()->isSized()) 2935 return false; 2936 2937 Type *CurElTy = ActTy->getPointerElementType(); 2938 if (DL.getTypeAllocSize(CurElTy) != 2939 DL.getTypeAllocSize(ParamPTy->getElementType())) 2940 return false; 2941 } 2942 } 2943 2944 if (Callee->isDeclaration()) { 2945 // Do not delete arguments unless we have a function body. 2946 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg()) 2947 return false; 2948 2949 // If the callee is just a declaration, don't change the varargsness of the 2950 // call. We don't want to introduce a varargs call where one doesn't 2951 // already exist. 2952 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType()); 2953 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg()) 2954 return false; 2955 2956 // If both the callee and the cast type are varargs, we still have to make 2957 // sure the number of fixed parameters are the same or we have the same 2958 // ABI issues as if we introduce a varargs call. 2959 if (FT->isVarArg() && 2960 cast<FunctionType>(APTy->getElementType())->isVarArg() && 2961 FT->getNumParams() != 2962 cast<FunctionType>(APTy->getElementType())->getNumParams()) 2963 return false; 2964 } 2965 2966 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() && 2967 !CallerPAL.isEmpty()) 2968 // In this case we have more arguments than the new function type, but we 2969 // won't be dropping them. Check that these extra arguments have attributes 2970 // that are compatible with being a vararg call argument. 2971 for (unsigned i = CallerPAL.getNumSlots(); i; --i) { 2972 unsigned Index = CallerPAL.getSlotIndex(i - 1); 2973 if (Index <= FT->getNumParams()) 2974 break; 2975 2976 // Check if it has an attribute that's incompatible with varargs. 2977 AttributeSet PAttrs = CallerPAL.getSlotAttributes(i - 1); 2978 if (PAttrs.hasAttribute(Index, Attribute::StructRet)) 2979 return false; 2980 } 2981 2982 2983 // Okay, we decided that this is a safe thing to do: go ahead and start 2984 // inserting cast instructions as necessary. 2985 std::vector<Value*> Args; 2986 Args.reserve(NumActualArgs); 2987 SmallVector<AttributeSet, 8> attrVec; 2988 attrVec.reserve(NumCommonArgs); 2989 2990 // Get any return attributes. 2991 AttrBuilder RAttrs(CallerPAL, AttributeSet::ReturnIndex); 2992 2993 // If the return value is not being used, the type may not be compatible 2994 // with the existing attributes. Wipe out any problematic attributes. 2995 RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy)); 2996 2997 // Add the new return attributes. 2998 if (RAttrs.hasAttributes()) 2999 attrVec.push_back(AttributeSet::get(Caller->getContext(), 3000 AttributeSet::ReturnIndex, RAttrs)); 3001 3002 AI = CS.arg_begin(); 3003 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) { 3004 Type *ParamTy = FT->getParamType(i); 3005 3006 if ((*AI)->getType() == ParamTy) { 3007 Args.push_back(*AI); 3008 } else { 3009 Args.push_back(Builder->CreateBitOrPointerCast(*AI, ParamTy)); 3010 } 3011 3012 // Add any parameter attributes. 3013 AttrBuilder PAttrs(CallerPAL.getParamAttributes(i + 1), i + 1); 3014 if (PAttrs.hasAttributes()) 3015 attrVec.push_back(AttributeSet::get(Caller->getContext(), i + 1, 3016 PAttrs)); 3017 } 3018 3019 // If the function takes more arguments than the call was taking, add them 3020 // now. 3021 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) 3022 Args.push_back(Constant::getNullValue(FT->getParamType(i))); 3023 3024 // If we are removing arguments to the function, emit an obnoxious warning. 3025 if (FT->getNumParams() < NumActualArgs) { 3026 // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722 3027 if (FT->isVarArg()) { 3028 // Add all of the arguments in their promoted form to the arg list. 3029 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) { 3030 Type *PTy = getPromotedType((*AI)->getType()); 3031 if (PTy != (*AI)->getType()) { 3032 // Must promote to pass through va_arg area! 3033 Instruction::CastOps opcode = 3034 CastInst::getCastOpcode(*AI, false, PTy, false); 3035 Args.push_back(Builder->CreateCast(opcode, *AI, PTy)); 3036 } else { 3037 Args.push_back(*AI); 3038 } 3039 3040 // Add any parameter attributes. 3041 AttrBuilder PAttrs(CallerPAL.getParamAttributes(i + 1), i + 1); 3042 if (PAttrs.hasAttributes()) 3043 attrVec.push_back(AttributeSet::get(FT->getContext(), i + 1, 3044 PAttrs)); 3045 } 3046 } 3047 } 3048 3049 AttributeSet FnAttrs = CallerPAL.getFnAttributes(); 3050 if (CallerPAL.hasAttributes(AttributeSet::FunctionIndex)) 3051 attrVec.push_back(AttributeSet::get(Callee->getContext(), FnAttrs)); 3052 3053 if (NewRetTy->isVoidTy()) 3054 Caller->setName(""); // Void type should not have a name. 3055 3056 const AttributeSet &NewCallerPAL = AttributeSet::get(Callee->getContext(), 3057 attrVec); 3058 3059 SmallVector<OperandBundleDef, 1> OpBundles; 3060 CS.getOperandBundlesAsDefs(OpBundles); 3061 3062 Instruction *NC; 3063 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { 3064 NC = Builder->CreateInvoke(Callee, II->getNormalDest(), II->getUnwindDest(), 3065 Args, OpBundles); 3066 NC->takeName(II); 3067 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv()); 3068 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL); 3069 } else { 3070 CallInst *CI = cast<CallInst>(Caller); 3071 NC = Builder->CreateCall(Callee, Args, OpBundles); 3072 NC->takeName(CI); 3073 cast<CallInst>(NC)->setTailCallKind(CI->getTailCallKind()); 3074 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv()); 3075 cast<CallInst>(NC)->setAttributes(NewCallerPAL); 3076 } 3077 3078 // Insert a cast of the return type as necessary. 3079 Value *NV = NC; 3080 if (OldRetTy != NV->getType() && !Caller->use_empty()) { 3081 if (!NV->getType()->isVoidTy()) { 3082 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy); 3083 NC->setDebugLoc(Caller->getDebugLoc()); 3084 3085 // If this is an invoke instruction, we should insert it after the first 3086 // non-phi, instruction in the normal successor block. 3087 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { 3088 BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt(); 3089 InsertNewInstBefore(NC, *I); 3090 } else { 3091 // Otherwise, it's a call, just insert cast right after the call. 3092 InsertNewInstBefore(NC, *Caller); 3093 } 3094 Worklist.AddUsersToWorkList(*Caller); 3095 } else { 3096 NV = UndefValue::get(Caller->getType()); 3097 } 3098 } 3099 3100 if (!Caller->use_empty()) 3101 replaceInstUsesWith(*Caller, NV); 3102 else if (Caller->hasValueHandle()) { 3103 if (OldRetTy == NV->getType()) 3104 ValueHandleBase::ValueIsRAUWd(Caller, NV); 3105 else 3106 // We cannot call ValueIsRAUWd with a different type, and the 3107 // actual tracked value will disappear. 3108 ValueHandleBase::ValueIsDeleted(Caller); 3109 } 3110 3111 eraseInstFromFunction(*Caller); 3112 return true; 3113 } 3114 3115 /// Turn a call to a function created by init_trampoline / adjust_trampoline 3116 /// intrinsic pair into a direct call to the underlying function. 3117 Instruction * 3118 InstCombiner::transformCallThroughTrampoline(CallSite CS, 3119 IntrinsicInst *Tramp) { 3120 Value *Callee = CS.getCalledValue(); 3121 PointerType *PTy = cast<PointerType>(Callee->getType()); 3122 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); 3123 const AttributeSet &Attrs = CS.getAttributes(); 3124 3125 // If the call already has the 'nest' attribute somewhere then give up - 3126 // otherwise 'nest' would occur twice after splicing in the chain. 3127 if (Attrs.hasAttrSomewhere(Attribute::Nest)) 3128 return nullptr; 3129 3130 assert(Tramp && 3131 "transformCallThroughTrampoline called with incorrect CallSite."); 3132 3133 Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts()); 3134 FunctionType *NestFTy = cast<FunctionType>(NestF->getValueType()); 3135 3136 const AttributeSet &NestAttrs = NestF->getAttributes(); 3137 if (!NestAttrs.isEmpty()) { 3138 unsigned NestIdx = 1; 3139 Type *NestTy = nullptr; 3140 AttributeSet NestAttr; 3141 3142 // Look for a parameter marked with the 'nest' attribute. 3143 for (FunctionType::param_iterator I = NestFTy->param_begin(), 3144 E = NestFTy->param_end(); I != E; ++NestIdx, ++I) 3145 if (NestAttrs.hasAttribute(NestIdx, Attribute::Nest)) { 3146 // Record the parameter type and any other attributes. 3147 NestTy = *I; 3148 NestAttr = NestAttrs.getParamAttributes(NestIdx); 3149 break; 3150 } 3151 3152 if (NestTy) { 3153 Instruction *Caller = CS.getInstruction(); 3154 std::vector<Value*> NewArgs; 3155 NewArgs.reserve(CS.arg_size() + 1); 3156 3157 SmallVector<AttributeSet, 8> NewAttrs; 3158 NewAttrs.reserve(Attrs.getNumSlots() + 1); 3159 3160 // Insert the nest argument into the call argument list, which may 3161 // mean appending it. Likewise for attributes. 3162 3163 // Add any result attributes. 3164 if (Attrs.hasAttributes(AttributeSet::ReturnIndex)) 3165 NewAttrs.push_back(AttributeSet::get(Caller->getContext(), 3166 Attrs.getRetAttributes())); 3167 3168 { 3169 unsigned Idx = 1; 3170 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); 3171 do { 3172 if (Idx == NestIdx) { 3173 // Add the chain argument and attributes. 3174 Value *NestVal = Tramp->getArgOperand(2); 3175 if (NestVal->getType() != NestTy) 3176 NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest"); 3177 NewArgs.push_back(NestVal); 3178 NewAttrs.push_back(AttributeSet::get(Caller->getContext(), 3179 NestAttr)); 3180 } 3181 3182 if (I == E) 3183 break; 3184 3185 // Add the original argument and attributes. 3186 NewArgs.push_back(*I); 3187 AttributeSet Attr = Attrs.getParamAttributes(Idx); 3188 if (Attr.hasAttributes(Idx)) { 3189 AttrBuilder B(Attr, Idx); 3190 NewAttrs.push_back(AttributeSet::get(Caller->getContext(), 3191 Idx + (Idx >= NestIdx), B)); 3192 } 3193 3194 ++Idx; 3195 ++I; 3196 } while (true); 3197 } 3198 3199 // Add any function attributes. 3200 if (Attrs.hasAttributes(AttributeSet::FunctionIndex)) 3201 NewAttrs.push_back(AttributeSet::get(FTy->getContext(), 3202 Attrs.getFnAttributes())); 3203 3204 // The trampoline may have been bitcast to a bogus type (FTy). 3205 // Handle this by synthesizing a new function type, equal to FTy 3206 // with the chain parameter inserted. 3207 3208 std::vector<Type*> NewTypes; 3209 NewTypes.reserve(FTy->getNumParams()+1); 3210 3211 // Insert the chain's type into the list of parameter types, which may 3212 // mean appending it. 3213 { 3214 unsigned Idx = 1; 3215 FunctionType::param_iterator I = FTy->param_begin(), 3216 E = FTy->param_end(); 3217 3218 do { 3219 if (Idx == NestIdx) 3220 // Add the chain's type. 3221 NewTypes.push_back(NestTy); 3222 3223 if (I == E) 3224 break; 3225 3226 // Add the original type. 3227 NewTypes.push_back(*I); 3228 3229 ++Idx; 3230 ++I; 3231 } while (true); 3232 } 3233 3234 // Replace the trampoline call with a direct call. Let the generic 3235 // code sort out any function type mismatches. 3236 FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes, 3237 FTy->isVarArg()); 3238 Constant *NewCallee = 3239 NestF->getType() == PointerType::getUnqual(NewFTy) ? 3240 NestF : ConstantExpr::getBitCast(NestF, 3241 PointerType::getUnqual(NewFTy)); 3242 const AttributeSet &NewPAL = 3243 AttributeSet::get(FTy->getContext(), NewAttrs); 3244 3245 SmallVector<OperandBundleDef, 1> OpBundles; 3246 CS.getOperandBundlesAsDefs(OpBundles); 3247 3248 Instruction *NewCaller; 3249 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { 3250 NewCaller = InvokeInst::Create(NewCallee, 3251 II->getNormalDest(), II->getUnwindDest(), 3252 NewArgs, OpBundles); 3253 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv()); 3254 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL); 3255 } else { 3256 NewCaller = CallInst::Create(NewCallee, NewArgs, OpBundles); 3257 cast<CallInst>(NewCaller)->setTailCallKind( 3258 cast<CallInst>(Caller)->getTailCallKind()); 3259 cast<CallInst>(NewCaller)->setCallingConv( 3260 cast<CallInst>(Caller)->getCallingConv()); 3261 cast<CallInst>(NewCaller)->setAttributes(NewPAL); 3262 } 3263 3264 return NewCaller; 3265 } 3266 } 3267 3268 // Replace the trampoline call with a direct call. Since there is no 'nest' 3269 // parameter, there is no need to adjust the argument list. Let the generic 3270 // code sort out any function type mismatches. 3271 Constant *NewCallee = 3272 NestF->getType() == PTy ? NestF : 3273 ConstantExpr::getBitCast(NestF, PTy); 3274 CS.setCalledFunction(NewCallee); 3275 return CS.getInstruction(); 3276 } 3277