1 //===- InstCombineSimplifyDemanded.cpp ------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file contains logic for simplifying instructions based on information 10 // about how they are used. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "InstCombineInternal.h" 15 #include "llvm/Analysis/ValueTracking.h" 16 #include "llvm/IR/IntrinsicInst.h" 17 #include "llvm/IR/IntrinsicsAMDGPU.h" 18 #include "llvm/IR/IntrinsicsX86.h" 19 #include "llvm/IR/PatternMatch.h" 20 #include "llvm/Support/KnownBits.h" 21 22 using namespace llvm; 23 using namespace llvm::PatternMatch; 24 25 #define DEBUG_TYPE "instcombine" 26 27 namespace { 28 29 struct AMDGPUImageDMaskIntrinsic { 30 unsigned Intr; 31 }; 32 33 #define GET_AMDGPUImageDMaskIntrinsicTable_IMPL 34 #include "InstCombineTables.inc" 35 36 } // end anonymous namespace 37 38 /// Check to see if the specified operand of the specified instruction is a 39 /// constant integer. If so, check to see if there are any bits set in the 40 /// constant that are not demanded. If so, shrink the constant and return true. 41 static bool ShrinkDemandedConstant(Instruction *I, unsigned OpNo, 42 const APInt &Demanded) { 43 assert(I && "No instruction?"); 44 assert(OpNo < I->getNumOperands() && "Operand index too large"); 45 46 // The operand must be a constant integer or splat integer. 47 Value *Op = I->getOperand(OpNo); 48 const APInt *C; 49 if (!match(Op, m_APInt(C))) 50 return false; 51 52 // If there are no bits set that aren't demanded, nothing to do. 53 if (C->isSubsetOf(Demanded)) 54 return false; 55 56 // This instruction is producing bits that are not demanded. Shrink the RHS. 57 I->setOperand(OpNo, ConstantInt::get(Op->getType(), *C & Demanded)); 58 59 return true; 60 } 61 62 63 64 /// Inst is an integer instruction that SimplifyDemandedBits knows about. See if 65 /// the instruction has any properties that allow us to simplify its operands. 66 bool InstCombiner::SimplifyDemandedInstructionBits(Instruction &Inst) { 67 unsigned BitWidth = Inst.getType()->getScalarSizeInBits(); 68 KnownBits Known(BitWidth); 69 APInt DemandedMask(APInt::getAllOnesValue(BitWidth)); 70 71 Value *V = SimplifyDemandedUseBits(&Inst, DemandedMask, Known, 72 0, &Inst); 73 if (!V) return false; 74 if (V == &Inst) return true; 75 replaceInstUsesWith(Inst, V); 76 return true; 77 } 78 79 /// This form of SimplifyDemandedBits simplifies the specified instruction 80 /// operand if possible, updating it in place. It returns true if it made any 81 /// change and false otherwise. 82 bool InstCombiner::SimplifyDemandedBits(Instruction *I, unsigned OpNo, 83 const APInt &DemandedMask, 84 KnownBits &Known, 85 unsigned Depth) { 86 Use &U = I->getOperandUse(OpNo); 87 Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask, Known, 88 Depth, I); 89 if (!NewVal) return false; 90 if (Instruction* OpInst = dyn_cast<Instruction>(U)) 91 salvageDebugInfoOrMarkUndef(*OpInst); 92 93 replaceUse(U, NewVal); 94 return true; 95 } 96 97 98 /// This function attempts to replace V with a simpler value based on the 99 /// demanded bits. When this function is called, it is known that only the bits 100 /// set in DemandedMask of the result of V are ever used downstream. 101 /// Consequently, depending on the mask and V, it may be possible to replace V 102 /// with a constant or one of its operands. In such cases, this function does 103 /// the replacement and returns true. In all other cases, it returns false after 104 /// analyzing the expression and setting KnownOne and known to be one in the 105 /// expression. Known.Zero contains all the bits that are known to be zero in 106 /// the expression. These are provided to potentially allow the caller (which 107 /// might recursively be SimplifyDemandedBits itself) to simplify the 108 /// expression. 109 /// Known.One and Known.Zero always follow the invariant that: 110 /// Known.One & Known.Zero == 0. 111 /// That is, a bit can't be both 1 and 0. Note that the bits in Known.One and 112 /// Known.Zero may only be accurate for those bits set in DemandedMask. Note 113 /// also that the bitwidth of V, DemandedMask, Known.Zero and Known.One must all 114 /// be the same. 115 /// 116 /// This returns null if it did not change anything and it permits no 117 /// simplification. This returns V itself if it did some simplification of V's 118 /// operands based on the information about what bits are demanded. This returns 119 /// some other non-null value if it found out that V is equal to another value 120 /// in the context where the specified bits are demanded, but not for all users. 121 Value *InstCombiner::SimplifyDemandedUseBits(Value *V, APInt DemandedMask, 122 KnownBits &Known, unsigned Depth, 123 Instruction *CxtI) { 124 assert(V != nullptr && "Null pointer of Value???"); 125 assert(Depth <= 6 && "Limit Search Depth"); 126 uint32_t BitWidth = DemandedMask.getBitWidth(); 127 Type *VTy = V->getType(); 128 assert( 129 (!VTy->isIntOrIntVectorTy() || VTy->getScalarSizeInBits() == BitWidth) && 130 Known.getBitWidth() == BitWidth && 131 "Value *V, DemandedMask and Known must have same BitWidth"); 132 133 if (isa<Constant>(V)) { 134 computeKnownBits(V, Known, Depth, CxtI); 135 return nullptr; 136 } 137 138 Known.resetAll(); 139 if (DemandedMask.isNullValue()) // Not demanding any bits from V. 140 return UndefValue::get(VTy); 141 142 if (Depth == 6) // Limit search depth. 143 return nullptr; 144 145 Instruction *I = dyn_cast<Instruction>(V); 146 if (!I) { 147 computeKnownBits(V, Known, Depth, CxtI); 148 return nullptr; // Only analyze instructions. 149 } 150 151 // If there are multiple uses of this value and we aren't at the root, then 152 // we can't do any simplifications of the operands, because DemandedMask 153 // only reflects the bits demanded by *one* of the users. 154 if (Depth != 0 && !I->hasOneUse()) 155 return SimplifyMultipleUseDemandedBits(I, DemandedMask, Known, Depth, CxtI); 156 157 KnownBits LHSKnown(BitWidth), RHSKnown(BitWidth); 158 159 // If this is the root being simplified, allow it to have multiple uses, 160 // just set the DemandedMask to all bits so that we can try to simplify the 161 // operands. This allows visitTruncInst (for example) to simplify the 162 // operand of a trunc without duplicating all the logic below. 163 if (Depth == 0 && !V->hasOneUse()) 164 DemandedMask.setAllBits(); 165 166 switch (I->getOpcode()) { 167 default: 168 computeKnownBits(I, Known, Depth, CxtI); 169 break; 170 case Instruction::And: { 171 // If either the LHS or the RHS are Zero, the result is zero. 172 if (SimplifyDemandedBits(I, 1, DemandedMask, RHSKnown, Depth + 1) || 173 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.Zero, LHSKnown, 174 Depth + 1)) 175 return I; 176 assert(!RHSKnown.hasConflict() && "Bits known to be one AND zero?"); 177 assert(!LHSKnown.hasConflict() && "Bits known to be one AND zero?"); 178 179 Known = LHSKnown & RHSKnown; 180 181 // If the client is only demanding bits that we know, return the known 182 // constant. 183 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 184 return Constant::getIntegerValue(VTy, Known.One); 185 186 // If all of the demanded bits are known 1 on one side, return the other. 187 // These bits cannot contribute to the result of the 'and'. 188 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) 189 return I->getOperand(0); 190 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) 191 return I->getOperand(1); 192 193 // If the RHS is a constant, see if we can simplify it. 194 if (ShrinkDemandedConstant(I, 1, DemandedMask & ~LHSKnown.Zero)) 195 return I; 196 197 break; 198 } 199 case Instruction::Or: { 200 // If either the LHS or the RHS are One, the result is One. 201 if (SimplifyDemandedBits(I, 1, DemandedMask, RHSKnown, Depth + 1) || 202 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.One, LHSKnown, 203 Depth + 1)) 204 return I; 205 assert(!RHSKnown.hasConflict() && "Bits known to be one AND zero?"); 206 assert(!LHSKnown.hasConflict() && "Bits known to be one AND zero?"); 207 208 Known = LHSKnown | RHSKnown; 209 210 // If the client is only demanding bits that we know, return the known 211 // constant. 212 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 213 return Constant::getIntegerValue(VTy, Known.One); 214 215 // If all of the demanded bits are known zero on one side, return the other. 216 // These bits cannot contribute to the result of the 'or'. 217 if (DemandedMask.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) 218 return I->getOperand(0); 219 if (DemandedMask.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) 220 return I->getOperand(1); 221 222 // If the RHS is a constant, see if we can simplify it. 223 if (ShrinkDemandedConstant(I, 1, DemandedMask)) 224 return I; 225 226 break; 227 } 228 case Instruction::Xor: { 229 if (SimplifyDemandedBits(I, 1, DemandedMask, RHSKnown, Depth + 1) || 230 SimplifyDemandedBits(I, 0, DemandedMask, LHSKnown, Depth + 1)) 231 return I; 232 assert(!RHSKnown.hasConflict() && "Bits known to be one AND zero?"); 233 assert(!LHSKnown.hasConflict() && "Bits known to be one AND zero?"); 234 235 Known = LHSKnown ^ RHSKnown; 236 237 // If the client is only demanding bits that we know, return the known 238 // constant. 239 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 240 return Constant::getIntegerValue(VTy, Known.One); 241 242 // If all of the demanded bits are known zero on one side, return the other. 243 // These bits cannot contribute to the result of the 'xor'. 244 if (DemandedMask.isSubsetOf(RHSKnown.Zero)) 245 return I->getOperand(0); 246 if (DemandedMask.isSubsetOf(LHSKnown.Zero)) 247 return I->getOperand(1); 248 249 // If all of the demanded bits are known to be zero on one side or the 250 // other, turn this into an *inclusive* or. 251 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0 252 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.Zero)) { 253 Instruction *Or = 254 BinaryOperator::CreateOr(I->getOperand(0), I->getOperand(1), 255 I->getName()); 256 return InsertNewInstWith(Or, *I); 257 } 258 259 // If all of the demanded bits on one side are known, and all of the set 260 // bits on that side are also known to be set on the other side, turn this 261 // into an AND, as we know the bits will be cleared. 262 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2 263 if (DemandedMask.isSubsetOf(RHSKnown.Zero|RHSKnown.One) && 264 RHSKnown.One.isSubsetOf(LHSKnown.One)) { 265 Constant *AndC = Constant::getIntegerValue(VTy, 266 ~RHSKnown.One & DemandedMask); 267 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC); 268 return InsertNewInstWith(And, *I); 269 } 270 271 // If the RHS is a constant, see if we can simplify it. 272 // FIXME: for XOR, we prefer to force bits to 1 if they will make a -1. 273 if (ShrinkDemandedConstant(I, 1, DemandedMask)) 274 return I; 275 276 // If our LHS is an 'and' and if it has one use, and if any of the bits we 277 // are flipping are known to be set, then the xor is just resetting those 278 // bits to zero. We can just knock out bits from the 'and' and the 'xor', 279 // simplifying both of them. 280 if (Instruction *LHSInst = dyn_cast<Instruction>(I->getOperand(0))) 281 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() && 282 isa<ConstantInt>(I->getOperand(1)) && 283 isa<ConstantInt>(LHSInst->getOperand(1)) && 284 (LHSKnown.One & RHSKnown.One & DemandedMask) != 0) { 285 ConstantInt *AndRHS = cast<ConstantInt>(LHSInst->getOperand(1)); 286 ConstantInt *XorRHS = cast<ConstantInt>(I->getOperand(1)); 287 APInt NewMask = ~(LHSKnown.One & RHSKnown.One & DemandedMask); 288 289 Constant *AndC = 290 ConstantInt::get(I->getType(), NewMask & AndRHS->getValue()); 291 Instruction *NewAnd = BinaryOperator::CreateAnd(I->getOperand(0), AndC); 292 InsertNewInstWith(NewAnd, *I); 293 294 Constant *XorC = 295 ConstantInt::get(I->getType(), NewMask & XorRHS->getValue()); 296 Instruction *NewXor = BinaryOperator::CreateXor(NewAnd, XorC); 297 return InsertNewInstWith(NewXor, *I); 298 } 299 300 break; 301 } 302 case Instruction::Select: { 303 Value *LHS, *RHS; 304 SelectPatternFlavor SPF = matchSelectPattern(I, LHS, RHS).Flavor; 305 if (SPF == SPF_UMAX) { 306 // UMax(A, C) == A if ... 307 // The lowest non-zero bit of DemandMask is higher than the highest 308 // non-zero bit of C. 309 const APInt *C; 310 unsigned CTZ = DemandedMask.countTrailingZeros(); 311 if (match(RHS, m_APInt(C)) && CTZ >= C->getActiveBits()) 312 return LHS; 313 } else if (SPF == SPF_UMIN) { 314 // UMin(A, C) == A if ... 315 // The lowest non-zero bit of DemandMask is higher than the highest 316 // non-one bit of C. 317 // This comes from using DeMorgans on the above umax example. 318 const APInt *C; 319 unsigned CTZ = DemandedMask.countTrailingZeros(); 320 if (match(RHS, m_APInt(C)) && 321 CTZ >= C->getBitWidth() - C->countLeadingOnes()) 322 return LHS; 323 } 324 325 // If this is a select as part of any other min/max pattern, don't simplify 326 // any further in case we break the structure. 327 if (SPF != SPF_UNKNOWN) 328 return nullptr; 329 330 if (SimplifyDemandedBits(I, 2, DemandedMask, RHSKnown, Depth + 1) || 331 SimplifyDemandedBits(I, 1, DemandedMask, LHSKnown, Depth + 1)) 332 return I; 333 assert(!RHSKnown.hasConflict() && "Bits known to be one AND zero?"); 334 assert(!LHSKnown.hasConflict() && "Bits known to be one AND zero?"); 335 336 // If the operands are constants, see if we can simplify them. 337 // This is similar to ShrinkDemandedConstant, but for a select we want to 338 // try to keep the selected constants the same as icmp value constants, if 339 // we can. This helps not break apart (or helps put back together) 340 // canonical patterns like min and max. 341 auto CanonicalizeSelectConstant = [](Instruction *I, unsigned OpNo, 342 APInt DemandedMask) { 343 const APInt *SelC; 344 if (!match(I->getOperand(OpNo), m_APInt(SelC))) 345 return false; 346 347 // Get the constant out of the ICmp, if there is one. 348 const APInt *CmpC; 349 ICmpInst::Predicate Pred; 350 if (!match(I->getOperand(0), m_c_ICmp(Pred, m_APInt(CmpC), m_Value())) || 351 CmpC->getBitWidth() != SelC->getBitWidth()) 352 return ShrinkDemandedConstant(I, OpNo, DemandedMask); 353 354 // If the constant is already the same as the ICmp, leave it as-is. 355 if (*CmpC == *SelC) 356 return false; 357 // If the constants are not already the same, but can be with the demand 358 // mask, use the constant value from the ICmp. 359 if ((*CmpC & DemandedMask) == (*SelC & DemandedMask)) { 360 I->setOperand(OpNo, ConstantInt::get(I->getType(), *CmpC)); 361 return true; 362 } 363 return ShrinkDemandedConstant(I, OpNo, DemandedMask); 364 }; 365 if (CanonicalizeSelectConstant(I, 1, DemandedMask) || 366 CanonicalizeSelectConstant(I, 2, DemandedMask)) 367 return I; 368 369 // Only known if known in both the LHS and RHS. 370 Known.One = RHSKnown.One & LHSKnown.One; 371 Known.Zero = RHSKnown.Zero & LHSKnown.Zero; 372 break; 373 } 374 case Instruction::ZExt: 375 case Instruction::Trunc: { 376 unsigned SrcBitWidth = I->getOperand(0)->getType()->getScalarSizeInBits(); 377 378 APInt InputDemandedMask = DemandedMask.zextOrTrunc(SrcBitWidth); 379 KnownBits InputKnown(SrcBitWidth); 380 if (SimplifyDemandedBits(I, 0, InputDemandedMask, InputKnown, Depth + 1)) 381 return I; 382 assert(InputKnown.getBitWidth() == SrcBitWidth && "Src width changed?"); 383 Known = InputKnown.zextOrTrunc(BitWidth); 384 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 385 break; 386 } 387 case Instruction::BitCast: 388 if (!I->getOperand(0)->getType()->isIntOrIntVectorTy()) 389 return nullptr; // vector->int or fp->int? 390 391 if (VectorType *DstVTy = dyn_cast<VectorType>(I->getType())) { 392 if (VectorType *SrcVTy = 393 dyn_cast<VectorType>(I->getOperand(0)->getType())) { 394 if (DstVTy->getNumElements() != SrcVTy->getNumElements()) 395 // Don't touch a bitcast between vectors of different element counts. 396 return nullptr; 397 } else 398 // Don't touch a scalar-to-vector bitcast. 399 return nullptr; 400 } else if (I->getOperand(0)->getType()->isVectorTy()) 401 // Don't touch a vector-to-scalar bitcast. 402 return nullptr; 403 404 if (SimplifyDemandedBits(I, 0, DemandedMask, Known, Depth + 1)) 405 return I; 406 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 407 break; 408 case Instruction::SExt: { 409 // Compute the bits in the result that are not present in the input. 410 unsigned SrcBitWidth = I->getOperand(0)->getType()->getScalarSizeInBits(); 411 412 APInt InputDemandedBits = DemandedMask.trunc(SrcBitWidth); 413 414 // If any of the sign extended bits are demanded, we know that the sign 415 // bit is demanded. 416 if (DemandedMask.getActiveBits() > SrcBitWidth) 417 InputDemandedBits.setBit(SrcBitWidth-1); 418 419 KnownBits InputKnown(SrcBitWidth); 420 if (SimplifyDemandedBits(I, 0, InputDemandedBits, InputKnown, Depth + 1)) 421 return I; 422 423 // If the input sign bit is known zero, or if the NewBits are not demanded 424 // convert this into a zero extension. 425 if (InputKnown.isNonNegative() || 426 DemandedMask.getActiveBits() <= SrcBitWidth) { 427 // Convert to ZExt cast. 428 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName()); 429 return InsertNewInstWith(NewCast, *I); 430 } 431 432 // If the sign bit of the input is known set or clear, then we know the 433 // top bits of the result. 434 Known = InputKnown.sext(BitWidth); 435 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 436 break; 437 } 438 case Instruction::Add: 439 if ((DemandedMask & 1) == 0) { 440 // If we do not need the low bit, try to convert bool math to logic: 441 // add iN (zext i1 X), (sext i1 Y) --> sext (~X & Y) to iN 442 Value *X, *Y; 443 if (match(I, m_c_Add(m_OneUse(m_ZExt(m_Value(X))), 444 m_OneUse(m_SExt(m_Value(Y))))) && 445 X->getType()->isIntOrIntVectorTy(1) && X->getType() == Y->getType()) { 446 // Truth table for inputs and output signbits: 447 // X:0 | X:1 448 // ---------- 449 // Y:0 | 0 | 0 | 450 // Y:1 | -1 | 0 | 451 // ---------- 452 IRBuilderBase::InsertPointGuard Guard(Builder); 453 Builder.SetInsertPoint(I); 454 Value *AndNot = Builder.CreateAnd(Builder.CreateNot(X), Y); 455 return Builder.CreateSExt(AndNot, VTy); 456 } 457 458 // add iN (sext i1 X), (sext i1 Y) --> sext (X | Y) to iN 459 // TODO: Relax the one-use checks because we are removing an instruction? 460 if (match(I, m_Add(m_OneUse(m_SExt(m_Value(X))), 461 m_OneUse(m_SExt(m_Value(Y))))) && 462 X->getType()->isIntOrIntVectorTy(1) && X->getType() == Y->getType()) { 463 // Truth table for inputs and output signbits: 464 // X:0 | X:1 465 // ----------- 466 // Y:0 | -1 | -1 | 467 // Y:1 | -1 | 0 | 468 // ----------- 469 IRBuilderBase::InsertPointGuard Guard(Builder); 470 Builder.SetInsertPoint(I); 471 Value *Or = Builder.CreateOr(X, Y); 472 return Builder.CreateSExt(Or, VTy); 473 } 474 } 475 LLVM_FALLTHROUGH; 476 case Instruction::Sub: { 477 /// If the high-bits of an ADD/SUB are not demanded, then we do not care 478 /// about the high bits of the operands. 479 unsigned NLZ = DemandedMask.countLeadingZeros(); 480 // Right fill the mask of bits for this ADD/SUB to demand the most 481 // significant bit and all those below it. 482 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ)); 483 if (ShrinkDemandedConstant(I, 0, DemandedFromOps) || 484 SimplifyDemandedBits(I, 0, DemandedFromOps, LHSKnown, Depth + 1) || 485 ShrinkDemandedConstant(I, 1, DemandedFromOps) || 486 SimplifyDemandedBits(I, 1, DemandedFromOps, RHSKnown, Depth + 1)) { 487 if (NLZ > 0) { 488 // Disable the nsw and nuw flags here: We can no longer guarantee that 489 // we won't wrap after simplification. Removing the nsw/nuw flags is 490 // legal here because the top bit is not demanded. 491 BinaryOperator &BinOP = *cast<BinaryOperator>(I); 492 BinOP.setHasNoSignedWrap(false); 493 BinOP.setHasNoUnsignedWrap(false); 494 } 495 return I; 496 } 497 498 // If we are known to be adding/subtracting zeros to every bit below 499 // the highest demanded bit, we just return the other side. 500 if (DemandedFromOps.isSubsetOf(RHSKnown.Zero)) 501 return I->getOperand(0); 502 // We can't do this with the LHS for subtraction, unless we are only 503 // demanding the LSB. 504 if ((I->getOpcode() == Instruction::Add || 505 DemandedFromOps.isOneValue()) && 506 DemandedFromOps.isSubsetOf(LHSKnown.Zero)) 507 return I->getOperand(1); 508 509 // Otherwise just compute the known bits of the result. 510 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap(); 511 Known = KnownBits::computeForAddSub(I->getOpcode() == Instruction::Add, 512 NSW, LHSKnown, RHSKnown); 513 break; 514 } 515 case Instruction::Shl: { 516 const APInt *SA; 517 if (match(I->getOperand(1), m_APInt(SA))) { 518 const APInt *ShrAmt; 519 if (match(I->getOperand(0), m_Shr(m_Value(), m_APInt(ShrAmt)))) 520 if (Instruction *Shr = dyn_cast<Instruction>(I->getOperand(0))) 521 if (Value *R = simplifyShrShlDemandedBits(Shr, *ShrAmt, I, *SA, 522 DemandedMask, Known)) 523 return R; 524 525 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth-1); 526 APInt DemandedMaskIn(DemandedMask.lshr(ShiftAmt)); 527 528 // If the shift is NUW/NSW, then it does demand the high bits. 529 ShlOperator *IOp = cast<ShlOperator>(I); 530 if (IOp->hasNoSignedWrap()) 531 DemandedMaskIn.setHighBits(ShiftAmt+1); 532 else if (IOp->hasNoUnsignedWrap()) 533 DemandedMaskIn.setHighBits(ShiftAmt); 534 535 if (SimplifyDemandedBits(I, 0, DemandedMaskIn, Known, Depth + 1)) 536 return I; 537 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 538 539 bool SignBitZero = Known.Zero.isSignBitSet(); 540 bool SignBitOne = Known.One.isSignBitSet(); 541 Known.Zero <<= ShiftAmt; 542 Known.One <<= ShiftAmt; 543 // low bits known zero. 544 if (ShiftAmt) 545 Known.Zero.setLowBits(ShiftAmt); 546 547 // If this shift has "nsw" keyword, then the result is either a poison 548 // value or has the same sign bit as the first operand. 549 if (IOp->hasNoSignedWrap()) { 550 if (SignBitZero) 551 Known.Zero.setSignBit(); 552 else if (SignBitOne) 553 Known.One.setSignBit(); 554 if (Known.hasConflict()) 555 return UndefValue::get(I->getType()); 556 } 557 } else { 558 computeKnownBits(I, Known, Depth, CxtI); 559 } 560 break; 561 } 562 case Instruction::LShr: { 563 const APInt *SA; 564 if (match(I->getOperand(1), m_APInt(SA))) { 565 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth-1); 566 567 // Unsigned shift right. 568 APInt DemandedMaskIn(DemandedMask.shl(ShiftAmt)); 569 570 // If the shift is exact, then it does demand the low bits (and knows that 571 // they are zero). 572 if (cast<LShrOperator>(I)->isExact()) 573 DemandedMaskIn.setLowBits(ShiftAmt); 574 575 if (SimplifyDemandedBits(I, 0, DemandedMaskIn, Known, Depth + 1)) 576 return I; 577 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 578 Known.Zero.lshrInPlace(ShiftAmt); 579 Known.One.lshrInPlace(ShiftAmt); 580 if (ShiftAmt) 581 Known.Zero.setHighBits(ShiftAmt); // high bits known zero. 582 } else { 583 computeKnownBits(I, Known, Depth, CxtI); 584 } 585 break; 586 } 587 case Instruction::AShr: { 588 // If this is an arithmetic shift right and only the low-bit is set, we can 589 // always convert this into a logical shr, even if the shift amount is 590 // variable. The low bit of the shift cannot be an input sign bit unless 591 // the shift amount is >= the size of the datatype, which is undefined. 592 if (DemandedMask.isOneValue()) { 593 // Perform the logical shift right. 594 Instruction *NewVal = BinaryOperator::CreateLShr( 595 I->getOperand(0), I->getOperand(1), I->getName()); 596 return InsertNewInstWith(NewVal, *I); 597 } 598 599 // If the sign bit is the only bit demanded by this ashr, then there is no 600 // need to do it, the shift doesn't change the high bit. 601 if (DemandedMask.isSignMask()) 602 return I->getOperand(0); 603 604 const APInt *SA; 605 if (match(I->getOperand(1), m_APInt(SA))) { 606 uint32_t ShiftAmt = SA->getLimitedValue(BitWidth-1); 607 608 // Signed shift right. 609 APInt DemandedMaskIn(DemandedMask.shl(ShiftAmt)); 610 // If any of the high bits are demanded, we should set the sign bit as 611 // demanded. 612 if (DemandedMask.countLeadingZeros() <= ShiftAmt) 613 DemandedMaskIn.setSignBit(); 614 615 // If the shift is exact, then it does demand the low bits (and knows that 616 // they are zero). 617 if (cast<AShrOperator>(I)->isExact()) 618 DemandedMaskIn.setLowBits(ShiftAmt); 619 620 if (SimplifyDemandedBits(I, 0, DemandedMaskIn, Known, Depth + 1)) 621 return I; 622 623 unsigned SignBits = ComputeNumSignBits(I->getOperand(0), Depth + 1, CxtI); 624 625 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 626 // Compute the new bits that are at the top now plus sign bits. 627 APInt HighBits(APInt::getHighBitsSet( 628 BitWidth, std::min(SignBits + ShiftAmt - 1, BitWidth))); 629 Known.Zero.lshrInPlace(ShiftAmt); 630 Known.One.lshrInPlace(ShiftAmt); 631 632 // If the input sign bit is known to be zero, or if none of the top bits 633 // are demanded, turn this into an unsigned shift right. 634 assert(BitWidth > ShiftAmt && "Shift amount not saturated?"); 635 if (Known.Zero[BitWidth-ShiftAmt-1] || 636 !DemandedMask.intersects(HighBits)) { 637 BinaryOperator *LShr = BinaryOperator::CreateLShr(I->getOperand(0), 638 I->getOperand(1)); 639 LShr->setIsExact(cast<BinaryOperator>(I)->isExact()); 640 return InsertNewInstWith(LShr, *I); 641 } else if (Known.One[BitWidth-ShiftAmt-1]) { // New bits are known one. 642 Known.One |= HighBits; 643 } 644 } else { 645 computeKnownBits(I, Known, Depth, CxtI); 646 } 647 break; 648 } 649 case Instruction::UDiv: { 650 // UDiv doesn't demand low bits that are zero in the divisor. 651 const APInt *SA; 652 if (match(I->getOperand(1), m_APInt(SA))) { 653 // If the shift is exact, then it does demand the low bits. 654 if (cast<UDivOperator>(I)->isExact()) 655 break; 656 657 // FIXME: Take the demanded mask of the result into account. 658 unsigned RHSTrailingZeros = SA->countTrailingZeros(); 659 APInt DemandedMaskIn = 660 APInt::getHighBitsSet(BitWidth, BitWidth - RHSTrailingZeros); 661 if (SimplifyDemandedBits(I, 0, DemandedMaskIn, LHSKnown, Depth + 1)) 662 return I; 663 664 // Propagate zero bits from the input. 665 Known.Zero.setHighBits(std::min( 666 BitWidth, LHSKnown.Zero.countLeadingOnes() + RHSTrailingZeros)); 667 } else { 668 computeKnownBits(I, Known, Depth, CxtI); 669 } 670 break; 671 } 672 case Instruction::SRem: 673 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) { 674 // X % -1 demands all the bits because we don't want to introduce 675 // INT_MIN % -1 (== undef) by accident. 676 if (Rem->isMinusOne()) 677 break; 678 APInt RA = Rem->getValue().abs(); 679 if (RA.isPowerOf2()) { 680 if (DemandedMask.ult(RA)) // srem won't affect demanded bits 681 return I->getOperand(0); 682 683 APInt LowBits = RA - 1; 684 APInt Mask2 = LowBits | APInt::getSignMask(BitWidth); 685 if (SimplifyDemandedBits(I, 0, Mask2, LHSKnown, Depth + 1)) 686 return I; 687 688 // The low bits of LHS are unchanged by the srem. 689 Known.Zero = LHSKnown.Zero & LowBits; 690 Known.One = LHSKnown.One & LowBits; 691 692 // If LHS is non-negative or has all low bits zero, then the upper bits 693 // are all zero. 694 if (LHSKnown.isNonNegative() || LowBits.isSubsetOf(LHSKnown.Zero)) 695 Known.Zero |= ~LowBits; 696 697 // If LHS is negative and not all low bits are zero, then the upper bits 698 // are all one. 699 if (LHSKnown.isNegative() && LowBits.intersects(LHSKnown.One)) 700 Known.One |= ~LowBits; 701 702 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 703 break; 704 } 705 } 706 707 // The sign bit is the LHS's sign bit, except when the result of the 708 // remainder is zero. 709 if (DemandedMask.isSignBitSet()) { 710 computeKnownBits(I->getOperand(0), LHSKnown, Depth + 1, CxtI); 711 // If it's known zero, our sign bit is also zero. 712 if (LHSKnown.isNonNegative()) 713 Known.makeNonNegative(); 714 } 715 break; 716 case Instruction::URem: { 717 KnownBits Known2(BitWidth); 718 APInt AllOnes = APInt::getAllOnesValue(BitWidth); 719 if (SimplifyDemandedBits(I, 0, AllOnes, Known2, Depth + 1) || 720 SimplifyDemandedBits(I, 1, AllOnes, Known2, Depth + 1)) 721 return I; 722 723 unsigned Leaders = Known2.countMinLeadingZeros(); 724 Known.Zero = APInt::getHighBitsSet(BitWidth, Leaders) & DemandedMask; 725 break; 726 } 727 case Instruction::Call: { 728 bool KnownBitsComputed = false; 729 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { 730 switch (II->getIntrinsicID()) { 731 default: break; 732 case Intrinsic::bswap: { 733 // If the only bits demanded come from one byte of the bswap result, 734 // just shift the input byte into position to eliminate the bswap. 735 unsigned NLZ = DemandedMask.countLeadingZeros(); 736 unsigned NTZ = DemandedMask.countTrailingZeros(); 737 738 // Round NTZ down to the next byte. If we have 11 trailing zeros, then 739 // we need all the bits down to bit 8. Likewise, round NLZ. If we 740 // have 14 leading zeros, round to 8. 741 NLZ &= ~7; 742 NTZ &= ~7; 743 // If we need exactly one byte, we can do this transformation. 744 if (BitWidth-NLZ-NTZ == 8) { 745 unsigned ResultBit = NTZ; 746 unsigned InputBit = BitWidth-NTZ-8; 747 748 // Replace this with either a left or right shift to get the byte into 749 // the right place. 750 Instruction *NewVal; 751 if (InputBit > ResultBit) 752 NewVal = BinaryOperator::CreateLShr(II->getArgOperand(0), 753 ConstantInt::get(I->getType(), InputBit-ResultBit)); 754 else 755 NewVal = BinaryOperator::CreateShl(II->getArgOperand(0), 756 ConstantInt::get(I->getType(), ResultBit-InputBit)); 757 NewVal->takeName(I); 758 return InsertNewInstWith(NewVal, *I); 759 } 760 break; 761 } 762 case Intrinsic::fshr: 763 case Intrinsic::fshl: { 764 const APInt *SA; 765 if (!match(I->getOperand(2), m_APInt(SA))) 766 break; 767 768 // Normalize to funnel shift left. APInt shifts of BitWidth are well- 769 // defined, so no need to special-case zero shifts here. 770 uint64_t ShiftAmt = SA->urem(BitWidth); 771 if (II->getIntrinsicID() == Intrinsic::fshr) 772 ShiftAmt = BitWidth - ShiftAmt; 773 774 APInt DemandedMaskLHS(DemandedMask.lshr(ShiftAmt)); 775 APInt DemandedMaskRHS(DemandedMask.shl(BitWidth - ShiftAmt)); 776 if (SimplifyDemandedBits(I, 0, DemandedMaskLHS, LHSKnown, Depth + 1) || 777 SimplifyDemandedBits(I, 1, DemandedMaskRHS, RHSKnown, Depth + 1)) 778 return I; 779 780 Known.Zero = LHSKnown.Zero.shl(ShiftAmt) | 781 RHSKnown.Zero.lshr(BitWidth - ShiftAmt); 782 Known.One = LHSKnown.One.shl(ShiftAmt) | 783 RHSKnown.One.lshr(BitWidth - ShiftAmt); 784 KnownBitsComputed = true; 785 break; 786 } 787 case Intrinsic::x86_mmx_pmovmskb: 788 case Intrinsic::x86_sse_movmsk_ps: 789 case Intrinsic::x86_sse2_movmsk_pd: 790 case Intrinsic::x86_sse2_pmovmskb_128: 791 case Intrinsic::x86_avx_movmsk_ps_256: 792 case Intrinsic::x86_avx_movmsk_pd_256: 793 case Intrinsic::x86_avx2_pmovmskb: { 794 // MOVMSK copies the vector elements' sign bits to the low bits 795 // and zeros the high bits. 796 unsigned ArgWidth; 797 if (II->getIntrinsicID() == Intrinsic::x86_mmx_pmovmskb) { 798 ArgWidth = 8; // Arg is x86_mmx, but treated as <8 x i8>. 799 } else { 800 auto Arg = II->getArgOperand(0); 801 auto ArgType = cast<VectorType>(Arg->getType()); 802 ArgWidth = ArgType->getNumElements(); 803 } 804 805 // If we don't need any of low bits then return zero, 806 // we know that DemandedMask is non-zero already. 807 APInt DemandedElts = DemandedMask.zextOrTrunc(ArgWidth); 808 if (DemandedElts.isNullValue()) 809 return ConstantInt::getNullValue(VTy); 810 811 // We know that the upper bits are set to zero. 812 Known.Zero.setBitsFrom(ArgWidth); 813 KnownBitsComputed = true; 814 break; 815 } 816 case Intrinsic::x86_sse42_crc32_64_64: 817 Known.Zero.setBitsFrom(32); 818 KnownBitsComputed = true; 819 break; 820 } 821 } 822 823 if (!KnownBitsComputed) 824 computeKnownBits(V, Known, Depth, CxtI); 825 break; 826 } 827 } 828 829 // If the client is only demanding bits that we know, return the known 830 // constant. 831 if (DemandedMask.isSubsetOf(Known.Zero|Known.One)) 832 return Constant::getIntegerValue(VTy, Known.One); 833 return nullptr; 834 } 835 836 /// Helper routine of SimplifyDemandedUseBits. It computes Known 837 /// bits. It also tries to handle simplifications that can be done based on 838 /// DemandedMask, but without modifying the Instruction. 839 Value *InstCombiner::SimplifyMultipleUseDemandedBits(Instruction *I, 840 const APInt &DemandedMask, 841 KnownBits &Known, 842 unsigned Depth, 843 Instruction *CxtI) { 844 unsigned BitWidth = DemandedMask.getBitWidth(); 845 Type *ITy = I->getType(); 846 847 KnownBits LHSKnown(BitWidth); 848 KnownBits RHSKnown(BitWidth); 849 850 // Despite the fact that we can't simplify this instruction in all User's 851 // context, we can at least compute the known bits, and we can 852 // do simplifications that apply to *just* the one user if we know that 853 // this instruction has a simpler value in that context. 854 switch (I->getOpcode()) { 855 case Instruction::And: { 856 // If either the LHS or the RHS are Zero, the result is zero. 857 computeKnownBits(I->getOperand(1), RHSKnown, Depth + 1, CxtI); 858 computeKnownBits(I->getOperand(0), LHSKnown, Depth + 1, 859 CxtI); 860 861 Known = LHSKnown & RHSKnown; 862 863 // If the client is only demanding bits that we know, return the known 864 // constant. 865 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 866 return Constant::getIntegerValue(ITy, Known.One); 867 868 // If all of the demanded bits are known 1 on one side, return the other. 869 // These bits cannot contribute to the result of the 'and' in this 870 // context. 871 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) 872 return I->getOperand(0); 873 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) 874 return I->getOperand(1); 875 876 break; 877 } 878 case Instruction::Or: { 879 // We can simplify (X|Y) -> X or Y in the user's context if we know that 880 // only bits from X or Y are demanded. 881 882 // If either the LHS or the RHS are One, the result is One. 883 computeKnownBits(I->getOperand(1), RHSKnown, Depth + 1, CxtI); 884 computeKnownBits(I->getOperand(0), LHSKnown, Depth + 1, 885 CxtI); 886 887 Known = LHSKnown | RHSKnown; 888 889 // If the client is only demanding bits that we know, return the known 890 // constant. 891 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 892 return Constant::getIntegerValue(ITy, Known.One); 893 894 // If all of the demanded bits are known zero on one side, return the 895 // other. These bits cannot contribute to the result of the 'or' in this 896 // context. 897 if (DemandedMask.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) 898 return I->getOperand(0); 899 if (DemandedMask.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) 900 return I->getOperand(1); 901 902 break; 903 } 904 case Instruction::Xor: { 905 // We can simplify (X^Y) -> X or Y in the user's context if we know that 906 // only bits from X or Y are demanded. 907 908 computeKnownBits(I->getOperand(1), RHSKnown, Depth + 1, CxtI); 909 computeKnownBits(I->getOperand(0), LHSKnown, Depth + 1, 910 CxtI); 911 912 Known = LHSKnown ^ RHSKnown; 913 914 // If the client is only demanding bits that we know, return the known 915 // constant. 916 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) 917 return Constant::getIntegerValue(ITy, Known.One); 918 919 // If all of the demanded bits are known zero on one side, return the 920 // other. 921 if (DemandedMask.isSubsetOf(RHSKnown.Zero)) 922 return I->getOperand(0); 923 if (DemandedMask.isSubsetOf(LHSKnown.Zero)) 924 return I->getOperand(1); 925 926 break; 927 } 928 default: 929 // Compute the Known bits to simplify things downstream. 930 computeKnownBits(I, Known, Depth, CxtI); 931 932 // If this user is only demanding bits that we know, return the known 933 // constant. 934 if (DemandedMask.isSubsetOf(Known.Zero|Known.One)) 935 return Constant::getIntegerValue(ITy, Known.One); 936 937 break; 938 } 939 940 return nullptr; 941 } 942 943 944 /// Helper routine of SimplifyDemandedUseBits. It tries to simplify 945 /// "E1 = (X lsr C1) << C2", where the C1 and C2 are constant, into 946 /// "E2 = X << (C2 - C1)" or "E2 = X >> (C1 - C2)", depending on the sign 947 /// of "C2-C1". 948 /// 949 /// Suppose E1 and E2 are generally different in bits S={bm, bm+1, 950 /// ..., bn}, without considering the specific value X is holding. 951 /// This transformation is legal iff one of following conditions is hold: 952 /// 1) All the bit in S are 0, in this case E1 == E2. 953 /// 2) We don't care those bits in S, per the input DemandedMask. 954 /// 3) Combination of 1) and 2). Some bits in S are 0, and we don't care the 955 /// rest bits. 956 /// 957 /// Currently we only test condition 2). 958 /// 959 /// As with SimplifyDemandedUseBits, it returns NULL if the simplification was 960 /// not successful. 961 Value * 962 InstCombiner::simplifyShrShlDemandedBits(Instruction *Shr, const APInt &ShrOp1, 963 Instruction *Shl, const APInt &ShlOp1, 964 const APInt &DemandedMask, 965 KnownBits &Known) { 966 if (!ShlOp1 || !ShrOp1) 967 return nullptr; // No-op. 968 969 Value *VarX = Shr->getOperand(0); 970 Type *Ty = VarX->getType(); 971 unsigned BitWidth = Ty->getScalarSizeInBits(); 972 if (ShlOp1.uge(BitWidth) || ShrOp1.uge(BitWidth)) 973 return nullptr; // Undef. 974 975 unsigned ShlAmt = ShlOp1.getZExtValue(); 976 unsigned ShrAmt = ShrOp1.getZExtValue(); 977 978 Known.One.clearAllBits(); 979 Known.Zero.setLowBits(ShlAmt - 1); 980 Known.Zero &= DemandedMask; 981 982 APInt BitMask1(APInt::getAllOnesValue(BitWidth)); 983 APInt BitMask2(APInt::getAllOnesValue(BitWidth)); 984 985 bool isLshr = (Shr->getOpcode() == Instruction::LShr); 986 BitMask1 = isLshr ? (BitMask1.lshr(ShrAmt) << ShlAmt) : 987 (BitMask1.ashr(ShrAmt) << ShlAmt); 988 989 if (ShrAmt <= ShlAmt) { 990 BitMask2 <<= (ShlAmt - ShrAmt); 991 } else { 992 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt): 993 BitMask2.ashr(ShrAmt - ShlAmt); 994 } 995 996 // Check if condition-2 (see the comment to this function) is satified. 997 if ((BitMask1 & DemandedMask) == (BitMask2 & DemandedMask)) { 998 if (ShrAmt == ShlAmt) 999 return VarX; 1000 1001 if (!Shr->hasOneUse()) 1002 return nullptr; 1003 1004 BinaryOperator *New; 1005 if (ShrAmt < ShlAmt) { 1006 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt); 1007 New = BinaryOperator::CreateShl(VarX, Amt); 1008 BinaryOperator *Orig = cast<BinaryOperator>(Shl); 1009 New->setHasNoSignedWrap(Orig->hasNoSignedWrap()); 1010 New->setHasNoUnsignedWrap(Orig->hasNoUnsignedWrap()); 1011 } else { 1012 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt); 1013 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) : 1014 BinaryOperator::CreateAShr(VarX, Amt); 1015 if (cast<BinaryOperator>(Shr)->isExact()) 1016 New->setIsExact(true); 1017 } 1018 1019 return InsertNewInstWith(New, *Shl); 1020 } 1021 1022 return nullptr; 1023 } 1024 1025 /// Implement SimplifyDemandedVectorElts for amdgcn buffer and image intrinsics. 1026 /// 1027 /// Note: This only supports non-TFE/LWE image intrinsic calls; those have 1028 /// struct returns. 1029 Value *InstCombiner::simplifyAMDGCNMemoryIntrinsicDemanded(IntrinsicInst *II, 1030 APInt DemandedElts, 1031 int DMaskIdx) { 1032 1033 // FIXME: Allow v3i16/v3f16 in buffer intrinsics when the types are fully supported. 1034 if (DMaskIdx < 0 && 1035 II->getType()->getScalarSizeInBits() != 32 && 1036 DemandedElts.getActiveBits() == 3) 1037 return nullptr; 1038 1039 auto *IIVTy = cast<VectorType>(II->getType()); 1040 unsigned VWidth = IIVTy->getNumElements(); 1041 if (VWidth == 1) 1042 return nullptr; 1043 1044 IRBuilderBase::InsertPointGuard Guard(Builder); 1045 Builder.SetInsertPoint(II); 1046 1047 // Assume the arguments are unchanged and later override them, if needed. 1048 SmallVector<Value *, 16> Args(II->arg_begin(), II->arg_end()); 1049 1050 if (DMaskIdx < 0) { 1051 // Buffer case. 1052 1053 const unsigned ActiveBits = DemandedElts.getActiveBits(); 1054 const unsigned UnusedComponentsAtFront = DemandedElts.countTrailingZeros(); 1055 1056 // Start assuming the prefix of elements is demanded, but possibly clear 1057 // some other bits if there are trailing zeros (unused components at front) 1058 // and update offset. 1059 DemandedElts = (1 << ActiveBits) - 1; 1060 1061 if (UnusedComponentsAtFront > 0) { 1062 static const unsigned InvalidOffsetIdx = 0xf; 1063 1064 unsigned OffsetIdx; 1065 switch (II->getIntrinsicID()) { 1066 case Intrinsic::amdgcn_raw_buffer_load: 1067 OffsetIdx = 1; 1068 break; 1069 case Intrinsic::amdgcn_s_buffer_load: 1070 // If resulting type is vec3, there is no point in trimming the 1071 // load with updated offset, as the vec3 would most likely be widened to 1072 // vec4 anyway during lowering. 1073 if (ActiveBits == 4 && UnusedComponentsAtFront == 1) 1074 OffsetIdx = InvalidOffsetIdx; 1075 else 1076 OffsetIdx = 1; 1077 break; 1078 case Intrinsic::amdgcn_struct_buffer_load: 1079 OffsetIdx = 2; 1080 break; 1081 default: 1082 // TODO: handle tbuffer* intrinsics. 1083 OffsetIdx = InvalidOffsetIdx; 1084 break; 1085 } 1086 1087 if (OffsetIdx != InvalidOffsetIdx) { 1088 // Clear demanded bits and update the offset. 1089 DemandedElts &= ~((1 << UnusedComponentsAtFront) - 1); 1090 auto *Offset = II->getArgOperand(OffsetIdx); 1091 unsigned SingleComponentSizeInBits = 1092 getDataLayout().getTypeSizeInBits(II->getType()->getScalarType()); 1093 unsigned OffsetAdd = 1094 UnusedComponentsAtFront * SingleComponentSizeInBits / 8; 1095 auto *OffsetAddVal = ConstantInt::get(Offset->getType(), OffsetAdd); 1096 Args[OffsetIdx] = Builder.CreateAdd(Offset, OffsetAddVal); 1097 } 1098 } 1099 } else { 1100 // Image case. 1101 1102 ConstantInt *DMask = cast<ConstantInt>(II->getArgOperand(DMaskIdx)); 1103 unsigned DMaskVal = DMask->getZExtValue() & 0xf; 1104 1105 // Mask off values that are undefined because the dmask doesn't cover them 1106 DemandedElts &= (1 << countPopulation(DMaskVal)) - 1; 1107 1108 unsigned NewDMaskVal = 0; 1109 unsigned OrigLoadIdx = 0; 1110 for (unsigned SrcIdx = 0; SrcIdx < 4; ++SrcIdx) { 1111 const unsigned Bit = 1 << SrcIdx; 1112 if (!!(DMaskVal & Bit)) { 1113 if (!!DemandedElts[OrigLoadIdx]) 1114 NewDMaskVal |= Bit; 1115 OrigLoadIdx++; 1116 } 1117 } 1118 1119 if (DMaskVal != NewDMaskVal) 1120 Args[DMaskIdx] = ConstantInt::get(DMask->getType(), NewDMaskVal); 1121 } 1122 1123 unsigned NewNumElts = DemandedElts.countPopulation(); 1124 if (!NewNumElts) 1125 return UndefValue::get(II->getType()); 1126 1127 if (NewNumElts >= VWidth && DemandedElts.isMask()) { 1128 if (DMaskIdx >= 0) 1129 II->setArgOperand(DMaskIdx, Args[DMaskIdx]); 1130 return nullptr; 1131 } 1132 1133 // Determine the overload types of the original intrinsic. 1134 auto IID = II->getIntrinsicID(); 1135 SmallVector<Intrinsic::IITDescriptor, 16> Table; 1136 getIntrinsicInfoTableEntries(IID, Table); 1137 ArrayRef<Intrinsic::IITDescriptor> TableRef = Table; 1138 1139 // Validate function argument and return types, extracting overloaded types 1140 // along the way. 1141 FunctionType *FTy = II->getCalledFunction()->getFunctionType(); 1142 SmallVector<Type *, 6> OverloadTys; 1143 Intrinsic::matchIntrinsicSignature(FTy, TableRef, OverloadTys); 1144 1145 Module *M = II->getParent()->getParent()->getParent(); 1146 Type *EltTy = IIVTy->getElementType(); 1147 Type *NewTy = (NewNumElts == 1) ? EltTy : VectorType::get(EltTy, NewNumElts); 1148 1149 OverloadTys[0] = NewTy; 1150 Function *NewIntrin = Intrinsic::getDeclaration(M, IID, OverloadTys); 1151 1152 CallInst *NewCall = Builder.CreateCall(NewIntrin, Args); 1153 NewCall->takeName(II); 1154 NewCall->copyMetadata(*II); 1155 1156 if (NewNumElts == 1) { 1157 return Builder.CreateInsertElement(UndefValue::get(II->getType()), NewCall, 1158 DemandedElts.countTrailingZeros()); 1159 } 1160 1161 SmallVector<int, 8> EltMask; 1162 unsigned NewLoadIdx = 0; 1163 for (unsigned OrigLoadIdx = 0; OrigLoadIdx < VWidth; ++OrigLoadIdx) { 1164 if (!!DemandedElts[OrigLoadIdx]) 1165 EltMask.push_back(NewLoadIdx++); 1166 else 1167 EltMask.push_back(NewNumElts); 1168 } 1169 1170 Value *Shuffle = 1171 Builder.CreateShuffleVector(NewCall, UndefValue::get(NewTy), EltMask); 1172 1173 return Shuffle; 1174 } 1175 1176 /// The specified value produces a vector with any number of elements. 1177 /// This method analyzes which elements of the operand are undef and returns 1178 /// that information in UndefElts. 1179 /// 1180 /// DemandedElts contains the set of elements that are actually used by the 1181 /// caller, and by default (AllowMultipleUsers equals false) the value is 1182 /// simplified only if it has a single caller. If AllowMultipleUsers is set 1183 /// to true, DemandedElts refers to the union of sets of elements that are 1184 /// used by all callers. 1185 /// 1186 /// If the information about demanded elements can be used to simplify the 1187 /// operation, the operation is simplified, then the resultant value is 1188 /// returned. This returns null if no change was made. 1189 Value *InstCombiner::SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, 1190 APInt &UndefElts, 1191 unsigned Depth, 1192 bool AllowMultipleUsers) { 1193 // Cannot analyze scalable type. The number of vector elements is not a 1194 // compile-time constant. 1195 if (isa<ScalableVectorType>(V->getType())) 1196 return nullptr; 1197 1198 unsigned VWidth = cast<FixedVectorType>(V->getType())->getNumElements(); 1199 APInt EltMask(APInt::getAllOnesValue(VWidth)); 1200 assert((DemandedElts & ~EltMask) == 0 && "Invalid DemandedElts!"); 1201 1202 if (isa<UndefValue>(V)) { 1203 // If the entire vector is undefined, just return this info. 1204 UndefElts = EltMask; 1205 return nullptr; 1206 } 1207 1208 if (DemandedElts.isNullValue()) { // If nothing is demanded, provide undef. 1209 UndefElts = EltMask; 1210 return UndefValue::get(V->getType()); 1211 } 1212 1213 UndefElts = 0; 1214 1215 if (auto *C = dyn_cast<Constant>(V)) { 1216 // Check if this is identity. If so, return 0 since we are not simplifying 1217 // anything. 1218 if (DemandedElts.isAllOnesValue()) 1219 return nullptr; 1220 1221 Type *EltTy = cast<VectorType>(V->getType())->getElementType(); 1222 Constant *Undef = UndefValue::get(EltTy); 1223 SmallVector<Constant*, 16> Elts; 1224 for (unsigned i = 0; i != VWidth; ++i) { 1225 if (!DemandedElts[i]) { // If not demanded, set to undef. 1226 Elts.push_back(Undef); 1227 UndefElts.setBit(i); 1228 continue; 1229 } 1230 1231 Constant *Elt = C->getAggregateElement(i); 1232 if (!Elt) return nullptr; 1233 1234 if (isa<UndefValue>(Elt)) { // Already undef. 1235 Elts.push_back(Undef); 1236 UndefElts.setBit(i); 1237 } else { // Otherwise, defined. 1238 Elts.push_back(Elt); 1239 } 1240 } 1241 1242 // If we changed the constant, return it. 1243 Constant *NewCV = ConstantVector::get(Elts); 1244 return NewCV != C ? NewCV : nullptr; 1245 } 1246 1247 // Limit search depth. 1248 if (Depth == 10) 1249 return nullptr; 1250 1251 if (!AllowMultipleUsers) { 1252 // If multiple users are using the root value, proceed with 1253 // simplification conservatively assuming that all elements 1254 // are needed. 1255 if (!V->hasOneUse()) { 1256 // Quit if we find multiple users of a non-root value though. 1257 // They'll be handled when it's their turn to be visited by 1258 // the main instcombine process. 1259 if (Depth != 0) 1260 // TODO: Just compute the UndefElts information recursively. 1261 return nullptr; 1262 1263 // Conservatively assume that all elements are needed. 1264 DemandedElts = EltMask; 1265 } 1266 } 1267 1268 Instruction *I = dyn_cast<Instruction>(V); 1269 if (!I) return nullptr; // Only analyze instructions. 1270 1271 bool MadeChange = false; 1272 auto simplifyAndSetOp = [&](Instruction *Inst, unsigned OpNum, 1273 APInt Demanded, APInt &Undef) { 1274 auto *II = dyn_cast<IntrinsicInst>(Inst); 1275 Value *Op = II ? II->getArgOperand(OpNum) : Inst->getOperand(OpNum); 1276 if (Value *V = SimplifyDemandedVectorElts(Op, Demanded, Undef, Depth + 1)) { 1277 replaceOperand(*Inst, OpNum, V); 1278 MadeChange = true; 1279 } 1280 }; 1281 1282 APInt UndefElts2(VWidth, 0); 1283 APInt UndefElts3(VWidth, 0); 1284 switch (I->getOpcode()) { 1285 default: break; 1286 1287 case Instruction::GetElementPtr: { 1288 // The LangRef requires that struct geps have all constant indices. As 1289 // such, we can't convert any operand to partial undef. 1290 auto mayIndexStructType = [](GetElementPtrInst &GEP) { 1291 for (auto I = gep_type_begin(GEP), E = gep_type_end(GEP); 1292 I != E; I++) 1293 if (I.isStruct()) 1294 return true;; 1295 return false; 1296 }; 1297 if (mayIndexStructType(cast<GetElementPtrInst>(*I))) 1298 break; 1299 1300 // Conservatively track the demanded elements back through any vector 1301 // operands we may have. We know there must be at least one, or we 1302 // wouldn't have a vector result to get here. Note that we intentionally 1303 // merge the undef bits here since gepping with either an undef base or 1304 // index results in undef. 1305 for (unsigned i = 0; i < I->getNumOperands(); i++) { 1306 if (isa<UndefValue>(I->getOperand(i))) { 1307 // If the entire vector is undefined, just return this info. 1308 UndefElts = EltMask; 1309 return nullptr; 1310 } 1311 if (I->getOperand(i)->getType()->isVectorTy()) { 1312 APInt UndefEltsOp(VWidth, 0); 1313 simplifyAndSetOp(I, i, DemandedElts, UndefEltsOp); 1314 UndefElts |= UndefEltsOp; 1315 } 1316 } 1317 1318 break; 1319 } 1320 case Instruction::InsertElement: { 1321 // If this is a variable index, we don't know which element it overwrites. 1322 // demand exactly the same input as we produce. 1323 ConstantInt *Idx = dyn_cast<ConstantInt>(I->getOperand(2)); 1324 if (!Idx) { 1325 // Note that we can't propagate undef elt info, because we don't know 1326 // which elt is getting updated. 1327 simplifyAndSetOp(I, 0, DemandedElts, UndefElts2); 1328 break; 1329 } 1330 1331 // The element inserted overwrites whatever was there, so the input demanded 1332 // set is simpler than the output set. 1333 unsigned IdxNo = Idx->getZExtValue(); 1334 APInt PreInsertDemandedElts = DemandedElts; 1335 if (IdxNo < VWidth) 1336 PreInsertDemandedElts.clearBit(IdxNo); 1337 1338 simplifyAndSetOp(I, 0, PreInsertDemandedElts, UndefElts); 1339 1340 // If this is inserting an element that isn't demanded, remove this 1341 // insertelement. 1342 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) { 1343 Worklist.push(I); 1344 return I->getOperand(0); 1345 } 1346 1347 // The inserted element is defined. 1348 UndefElts.clearBit(IdxNo); 1349 break; 1350 } 1351 case Instruction::ShuffleVector: { 1352 auto *Shuffle = cast<ShuffleVectorInst>(I); 1353 assert(Shuffle->getOperand(0)->getType() == 1354 Shuffle->getOperand(1)->getType() && 1355 "Expected shuffle operands to have same type"); 1356 unsigned OpWidth = 1357 cast<VectorType>(Shuffle->getOperand(0)->getType())->getNumElements(); 1358 // Handle trivial case of a splat. Only check the first element of LHS 1359 // operand. 1360 if (all_of(Shuffle->getShuffleMask(), [](int Elt) { return Elt == 0; }) && 1361 DemandedElts.isAllOnesValue()) { 1362 if (!isa<UndefValue>(I->getOperand(1))) { 1363 I->setOperand(1, UndefValue::get(I->getOperand(1)->getType())); 1364 MadeChange = true; 1365 } 1366 APInt LeftDemanded(OpWidth, 1); 1367 APInt LHSUndefElts(OpWidth, 0); 1368 simplifyAndSetOp(I, 0, LeftDemanded, LHSUndefElts); 1369 if (LHSUndefElts[0]) 1370 UndefElts = EltMask; 1371 else 1372 UndefElts.clearAllBits(); 1373 break; 1374 } 1375 1376 APInt LeftDemanded(OpWidth, 0), RightDemanded(OpWidth, 0); 1377 for (unsigned i = 0; i < VWidth; i++) { 1378 if (DemandedElts[i]) { 1379 unsigned MaskVal = Shuffle->getMaskValue(i); 1380 if (MaskVal != -1u) { 1381 assert(MaskVal < OpWidth * 2 && 1382 "shufflevector mask index out of range!"); 1383 if (MaskVal < OpWidth) 1384 LeftDemanded.setBit(MaskVal); 1385 else 1386 RightDemanded.setBit(MaskVal - OpWidth); 1387 } 1388 } 1389 } 1390 1391 APInt LHSUndefElts(OpWidth, 0); 1392 simplifyAndSetOp(I, 0, LeftDemanded, LHSUndefElts); 1393 1394 APInt RHSUndefElts(OpWidth, 0); 1395 simplifyAndSetOp(I, 1, RightDemanded, RHSUndefElts); 1396 1397 // If this shuffle does not change the vector length and the elements 1398 // demanded by this shuffle are an identity mask, then this shuffle is 1399 // unnecessary. 1400 // 1401 // We are assuming canonical form for the mask, so the source vector is 1402 // operand 0 and operand 1 is not used. 1403 // 1404 // Note that if an element is demanded and this shuffle mask is undefined 1405 // for that element, then the shuffle is not considered an identity 1406 // operation. The shuffle prevents poison from the operand vector from 1407 // leaking to the result by replacing poison with an undefined value. 1408 if (VWidth == OpWidth) { 1409 bool IsIdentityShuffle = true; 1410 for (unsigned i = 0; i < VWidth; i++) { 1411 unsigned MaskVal = Shuffle->getMaskValue(i); 1412 if (DemandedElts[i] && i != MaskVal) { 1413 IsIdentityShuffle = false; 1414 break; 1415 } 1416 } 1417 if (IsIdentityShuffle) 1418 return Shuffle->getOperand(0); 1419 } 1420 1421 bool NewUndefElts = false; 1422 unsigned LHSIdx = -1u, LHSValIdx = -1u; 1423 unsigned RHSIdx = -1u, RHSValIdx = -1u; 1424 bool LHSUniform = true; 1425 bool RHSUniform = true; 1426 for (unsigned i = 0; i < VWidth; i++) { 1427 unsigned MaskVal = Shuffle->getMaskValue(i); 1428 if (MaskVal == -1u) { 1429 UndefElts.setBit(i); 1430 } else if (!DemandedElts[i]) { 1431 NewUndefElts = true; 1432 UndefElts.setBit(i); 1433 } else if (MaskVal < OpWidth) { 1434 if (LHSUndefElts[MaskVal]) { 1435 NewUndefElts = true; 1436 UndefElts.setBit(i); 1437 } else { 1438 LHSIdx = LHSIdx == -1u ? i : OpWidth; 1439 LHSValIdx = LHSValIdx == -1u ? MaskVal : OpWidth; 1440 LHSUniform = LHSUniform && (MaskVal == i); 1441 } 1442 } else { 1443 if (RHSUndefElts[MaskVal - OpWidth]) { 1444 NewUndefElts = true; 1445 UndefElts.setBit(i); 1446 } else { 1447 RHSIdx = RHSIdx == -1u ? i : OpWidth; 1448 RHSValIdx = RHSValIdx == -1u ? MaskVal - OpWidth : OpWidth; 1449 RHSUniform = RHSUniform && (MaskVal - OpWidth == i); 1450 } 1451 } 1452 } 1453 1454 // Try to transform shuffle with constant vector and single element from 1455 // this constant vector to single insertelement instruction. 1456 // shufflevector V, C, <v1, v2, .., ci, .., vm> -> 1457 // insertelement V, C[ci], ci-n 1458 if (OpWidth == Shuffle->getType()->getNumElements()) { 1459 Value *Op = nullptr; 1460 Constant *Value = nullptr; 1461 unsigned Idx = -1u; 1462 1463 // Find constant vector with the single element in shuffle (LHS or RHS). 1464 if (LHSIdx < OpWidth && RHSUniform) { 1465 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(0))) { 1466 Op = Shuffle->getOperand(1); 1467 Value = CV->getOperand(LHSValIdx); 1468 Idx = LHSIdx; 1469 } 1470 } 1471 if (RHSIdx < OpWidth && LHSUniform) { 1472 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(1))) { 1473 Op = Shuffle->getOperand(0); 1474 Value = CV->getOperand(RHSValIdx); 1475 Idx = RHSIdx; 1476 } 1477 } 1478 // Found constant vector with single element - convert to insertelement. 1479 if (Op && Value) { 1480 Instruction *New = InsertElementInst::Create( 1481 Op, Value, ConstantInt::get(Type::getInt32Ty(I->getContext()), Idx), 1482 Shuffle->getName()); 1483 InsertNewInstWith(New, *Shuffle); 1484 return New; 1485 } 1486 } 1487 if (NewUndefElts) { 1488 // Add additional discovered undefs. 1489 SmallVector<int, 16> Elts; 1490 for (unsigned i = 0; i < VWidth; ++i) { 1491 if (UndefElts[i]) 1492 Elts.push_back(UndefMaskElem); 1493 else 1494 Elts.push_back(Shuffle->getMaskValue(i)); 1495 } 1496 Shuffle->setShuffleMask(Elts); 1497 MadeChange = true; 1498 } 1499 break; 1500 } 1501 case Instruction::Select: { 1502 // If this is a vector select, try to transform the select condition based 1503 // on the current demanded elements. 1504 SelectInst *Sel = cast<SelectInst>(I); 1505 if (Sel->getCondition()->getType()->isVectorTy()) { 1506 // TODO: We are not doing anything with UndefElts based on this call. 1507 // It is overwritten below based on the other select operands. If an 1508 // element of the select condition is known undef, then we are free to 1509 // choose the output value from either arm of the select. If we know that 1510 // one of those values is undef, then the output can be undef. 1511 simplifyAndSetOp(I, 0, DemandedElts, UndefElts); 1512 } 1513 1514 // Next, see if we can transform the arms of the select. 1515 APInt DemandedLHS(DemandedElts), DemandedRHS(DemandedElts); 1516 if (auto *CV = dyn_cast<ConstantVector>(Sel->getCondition())) { 1517 for (unsigned i = 0; i < VWidth; i++) { 1518 // isNullValue() always returns false when called on a ConstantExpr. 1519 // Skip constant expressions to avoid propagating incorrect information. 1520 Constant *CElt = CV->getAggregateElement(i); 1521 if (isa<ConstantExpr>(CElt)) 1522 continue; 1523 // TODO: If a select condition element is undef, we can demand from 1524 // either side. If one side is known undef, choosing that side would 1525 // propagate undef. 1526 if (CElt->isNullValue()) 1527 DemandedLHS.clearBit(i); 1528 else 1529 DemandedRHS.clearBit(i); 1530 } 1531 } 1532 1533 simplifyAndSetOp(I, 1, DemandedLHS, UndefElts2); 1534 simplifyAndSetOp(I, 2, DemandedRHS, UndefElts3); 1535 1536 // Output elements are undefined if the element from each arm is undefined. 1537 // TODO: This can be improved. See comment in select condition handling. 1538 UndefElts = UndefElts2 & UndefElts3; 1539 break; 1540 } 1541 case Instruction::BitCast: { 1542 // Vector->vector casts only. 1543 VectorType *VTy = dyn_cast<VectorType>(I->getOperand(0)->getType()); 1544 if (!VTy) break; 1545 unsigned InVWidth = VTy->getNumElements(); 1546 APInt InputDemandedElts(InVWidth, 0); 1547 UndefElts2 = APInt(InVWidth, 0); 1548 unsigned Ratio; 1549 1550 if (VWidth == InVWidth) { 1551 // If we are converting from <4 x i32> -> <4 x f32>, we demand the same 1552 // elements as are demanded of us. 1553 Ratio = 1; 1554 InputDemandedElts = DemandedElts; 1555 } else if ((VWidth % InVWidth) == 0) { 1556 // If the number of elements in the output is a multiple of the number of 1557 // elements in the input then an input element is live if any of the 1558 // corresponding output elements are live. 1559 Ratio = VWidth / InVWidth; 1560 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) 1561 if (DemandedElts[OutIdx]) 1562 InputDemandedElts.setBit(OutIdx / Ratio); 1563 } else if ((InVWidth % VWidth) == 0) { 1564 // If the number of elements in the input is a multiple of the number of 1565 // elements in the output then an input element is live if the 1566 // corresponding output element is live. 1567 Ratio = InVWidth / VWidth; 1568 for (unsigned InIdx = 0; InIdx != InVWidth; ++InIdx) 1569 if (DemandedElts[InIdx / Ratio]) 1570 InputDemandedElts.setBit(InIdx); 1571 } else { 1572 // Unsupported so far. 1573 break; 1574 } 1575 1576 simplifyAndSetOp(I, 0, InputDemandedElts, UndefElts2); 1577 1578 if (VWidth == InVWidth) { 1579 UndefElts = UndefElts2; 1580 } else if ((VWidth % InVWidth) == 0) { 1581 // If the number of elements in the output is a multiple of the number of 1582 // elements in the input then an output element is undef if the 1583 // corresponding input element is undef. 1584 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) 1585 if (UndefElts2[OutIdx / Ratio]) 1586 UndefElts.setBit(OutIdx); 1587 } else if ((InVWidth % VWidth) == 0) { 1588 // If the number of elements in the input is a multiple of the number of 1589 // elements in the output then an output element is undef if all of the 1590 // corresponding input elements are undef. 1591 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) { 1592 APInt SubUndef = UndefElts2.lshr(OutIdx * Ratio).zextOrTrunc(Ratio); 1593 if (SubUndef.countPopulation() == Ratio) 1594 UndefElts.setBit(OutIdx); 1595 } 1596 } else { 1597 llvm_unreachable("Unimp"); 1598 } 1599 break; 1600 } 1601 case Instruction::FPTrunc: 1602 case Instruction::FPExt: 1603 simplifyAndSetOp(I, 0, DemandedElts, UndefElts); 1604 break; 1605 1606 case Instruction::Call: { 1607 IntrinsicInst *II = dyn_cast<IntrinsicInst>(I); 1608 if (!II) break; 1609 switch (II->getIntrinsicID()) { 1610 case Intrinsic::masked_gather: // fallthrough 1611 case Intrinsic::masked_load: { 1612 // Subtlety: If we load from a pointer, the pointer must be valid 1613 // regardless of whether the element is demanded. Doing otherwise risks 1614 // segfaults which didn't exist in the original program. 1615 APInt DemandedPtrs(APInt::getAllOnesValue(VWidth)), 1616 DemandedPassThrough(DemandedElts); 1617 if (auto *CV = dyn_cast<ConstantVector>(II->getOperand(2))) 1618 for (unsigned i = 0; i < VWidth; i++) { 1619 Constant *CElt = CV->getAggregateElement(i); 1620 if (CElt->isNullValue()) 1621 DemandedPtrs.clearBit(i); 1622 else if (CElt->isAllOnesValue()) 1623 DemandedPassThrough.clearBit(i); 1624 } 1625 if (II->getIntrinsicID() == Intrinsic::masked_gather) 1626 simplifyAndSetOp(II, 0, DemandedPtrs, UndefElts2); 1627 simplifyAndSetOp(II, 3, DemandedPassThrough, UndefElts3); 1628 1629 // Output elements are undefined if the element from both sources are. 1630 // TODO: can strengthen via mask as well. 1631 UndefElts = UndefElts2 & UndefElts3; 1632 break; 1633 } 1634 case Intrinsic::x86_xop_vfrcz_ss: 1635 case Intrinsic::x86_xop_vfrcz_sd: 1636 // The instructions for these intrinsics are speced to zero upper bits not 1637 // pass them through like other scalar intrinsics. So we shouldn't just 1638 // use Arg0 if DemandedElts[0] is clear like we do for other intrinsics. 1639 // Instead we should return a zero vector. 1640 if (!DemandedElts[0]) { 1641 Worklist.push(II); 1642 return ConstantAggregateZero::get(II->getType()); 1643 } 1644 1645 // Only the lower element is used. 1646 DemandedElts = 1; 1647 simplifyAndSetOp(II, 0, DemandedElts, UndefElts); 1648 1649 // Only the lower element is undefined. The high elements are zero. 1650 UndefElts = UndefElts[0]; 1651 break; 1652 1653 // Unary scalar-as-vector operations that work column-wise. 1654 case Intrinsic::x86_sse_rcp_ss: 1655 case Intrinsic::x86_sse_rsqrt_ss: 1656 simplifyAndSetOp(II, 0, DemandedElts, UndefElts); 1657 1658 // If lowest element of a scalar op isn't used then use Arg0. 1659 if (!DemandedElts[0]) { 1660 Worklist.push(II); 1661 return II->getArgOperand(0); 1662 } 1663 // TODO: If only low elt lower SQRT to FSQRT (with rounding/exceptions 1664 // checks). 1665 break; 1666 1667 // Binary scalar-as-vector operations that work column-wise. The high 1668 // elements come from operand 0. The low element is a function of both 1669 // operands. 1670 case Intrinsic::x86_sse_min_ss: 1671 case Intrinsic::x86_sse_max_ss: 1672 case Intrinsic::x86_sse_cmp_ss: 1673 case Intrinsic::x86_sse2_min_sd: 1674 case Intrinsic::x86_sse2_max_sd: 1675 case Intrinsic::x86_sse2_cmp_sd: { 1676 simplifyAndSetOp(II, 0, DemandedElts, UndefElts); 1677 1678 // If lowest element of a scalar op isn't used then use Arg0. 1679 if (!DemandedElts[0]) { 1680 Worklist.push(II); 1681 return II->getArgOperand(0); 1682 } 1683 1684 // Only lower element is used for operand 1. 1685 DemandedElts = 1; 1686 simplifyAndSetOp(II, 1, DemandedElts, UndefElts2); 1687 1688 // Lower element is undefined if both lower elements are undefined. 1689 // Consider things like undef&0. The result is known zero, not undef. 1690 if (!UndefElts2[0]) 1691 UndefElts.clearBit(0); 1692 1693 break; 1694 } 1695 1696 // Binary scalar-as-vector operations that work column-wise. The high 1697 // elements come from operand 0 and the low element comes from operand 1. 1698 case Intrinsic::x86_sse41_round_ss: 1699 case Intrinsic::x86_sse41_round_sd: { 1700 // Don't use the low element of operand 0. 1701 APInt DemandedElts2 = DemandedElts; 1702 DemandedElts2.clearBit(0); 1703 simplifyAndSetOp(II, 0, DemandedElts2, UndefElts); 1704 1705 // If lowest element of a scalar op isn't used then use Arg0. 1706 if (!DemandedElts[0]) { 1707 Worklist.push(II); 1708 return II->getArgOperand(0); 1709 } 1710 1711 // Only lower element is used for operand 1. 1712 DemandedElts = 1; 1713 simplifyAndSetOp(II, 1, DemandedElts, UndefElts2); 1714 1715 // Take the high undef elements from operand 0 and take the lower element 1716 // from operand 1. 1717 UndefElts.clearBit(0); 1718 UndefElts |= UndefElts2[0]; 1719 break; 1720 } 1721 1722 // Three input scalar-as-vector operations that work column-wise. The high 1723 // elements come from operand 0 and the low element is a function of all 1724 // three inputs. 1725 case Intrinsic::x86_avx512_mask_add_ss_round: 1726 case Intrinsic::x86_avx512_mask_div_ss_round: 1727 case Intrinsic::x86_avx512_mask_mul_ss_round: 1728 case Intrinsic::x86_avx512_mask_sub_ss_round: 1729 case Intrinsic::x86_avx512_mask_max_ss_round: 1730 case Intrinsic::x86_avx512_mask_min_ss_round: 1731 case Intrinsic::x86_avx512_mask_add_sd_round: 1732 case Intrinsic::x86_avx512_mask_div_sd_round: 1733 case Intrinsic::x86_avx512_mask_mul_sd_round: 1734 case Intrinsic::x86_avx512_mask_sub_sd_round: 1735 case Intrinsic::x86_avx512_mask_max_sd_round: 1736 case Intrinsic::x86_avx512_mask_min_sd_round: 1737 simplifyAndSetOp(II, 0, DemandedElts, UndefElts); 1738 1739 // If lowest element of a scalar op isn't used then use Arg0. 1740 if (!DemandedElts[0]) { 1741 Worklist.push(II); 1742 return II->getArgOperand(0); 1743 } 1744 1745 // Only lower element is used for operand 1 and 2. 1746 DemandedElts = 1; 1747 simplifyAndSetOp(II, 1, DemandedElts, UndefElts2); 1748 simplifyAndSetOp(II, 2, DemandedElts, UndefElts3); 1749 1750 // Lower element is undefined if all three lower elements are undefined. 1751 // Consider things like undef&0. The result is known zero, not undef. 1752 if (!UndefElts2[0] || !UndefElts3[0]) 1753 UndefElts.clearBit(0); 1754 1755 break; 1756 1757 case Intrinsic::x86_sse2_packssdw_128: 1758 case Intrinsic::x86_sse2_packsswb_128: 1759 case Intrinsic::x86_sse2_packuswb_128: 1760 case Intrinsic::x86_sse41_packusdw: 1761 case Intrinsic::x86_avx2_packssdw: 1762 case Intrinsic::x86_avx2_packsswb: 1763 case Intrinsic::x86_avx2_packusdw: 1764 case Intrinsic::x86_avx2_packuswb: 1765 case Intrinsic::x86_avx512_packssdw_512: 1766 case Intrinsic::x86_avx512_packsswb_512: 1767 case Intrinsic::x86_avx512_packusdw_512: 1768 case Intrinsic::x86_avx512_packuswb_512: { 1769 auto *Ty0 = II->getArgOperand(0)->getType(); 1770 unsigned InnerVWidth = cast<VectorType>(Ty0)->getNumElements(); 1771 assert(VWidth == (InnerVWidth * 2) && "Unexpected input size"); 1772 1773 unsigned NumLanes = Ty0->getPrimitiveSizeInBits() / 128; 1774 unsigned VWidthPerLane = VWidth / NumLanes; 1775 unsigned InnerVWidthPerLane = InnerVWidth / NumLanes; 1776 1777 // Per lane, pack the elements of the first input and then the second. 1778 // e.g. 1779 // v8i16 PACK(v4i32 X, v4i32 Y) - (X[0..3],Y[0..3]) 1780 // v32i8 PACK(v16i16 X, v16i16 Y) - (X[0..7],Y[0..7]),(X[8..15],Y[8..15]) 1781 for (int OpNum = 0; OpNum != 2; ++OpNum) { 1782 APInt OpDemandedElts(InnerVWidth, 0); 1783 for (unsigned Lane = 0; Lane != NumLanes; ++Lane) { 1784 unsigned LaneIdx = Lane * VWidthPerLane; 1785 for (unsigned Elt = 0; Elt != InnerVWidthPerLane; ++Elt) { 1786 unsigned Idx = LaneIdx + Elt + InnerVWidthPerLane * OpNum; 1787 if (DemandedElts[Idx]) 1788 OpDemandedElts.setBit((Lane * InnerVWidthPerLane) + Elt); 1789 } 1790 } 1791 1792 // Demand elements from the operand. 1793 APInt OpUndefElts(InnerVWidth, 0); 1794 simplifyAndSetOp(II, OpNum, OpDemandedElts, OpUndefElts); 1795 1796 // Pack the operand's UNDEF elements, one lane at a time. 1797 OpUndefElts = OpUndefElts.zext(VWidth); 1798 for (unsigned Lane = 0; Lane != NumLanes; ++Lane) { 1799 APInt LaneElts = OpUndefElts.lshr(InnerVWidthPerLane * Lane); 1800 LaneElts = LaneElts.getLoBits(InnerVWidthPerLane); 1801 LaneElts <<= InnerVWidthPerLane * (2 * Lane + OpNum); 1802 UndefElts |= LaneElts; 1803 } 1804 } 1805 break; 1806 } 1807 1808 // PSHUFB 1809 case Intrinsic::x86_ssse3_pshuf_b_128: 1810 case Intrinsic::x86_avx2_pshuf_b: 1811 case Intrinsic::x86_avx512_pshuf_b_512: 1812 // PERMILVAR 1813 case Intrinsic::x86_avx_vpermilvar_ps: 1814 case Intrinsic::x86_avx_vpermilvar_ps_256: 1815 case Intrinsic::x86_avx512_vpermilvar_ps_512: 1816 case Intrinsic::x86_avx_vpermilvar_pd: 1817 case Intrinsic::x86_avx_vpermilvar_pd_256: 1818 case Intrinsic::x86_avx512_vpermilvar_pd_512: 1819 // PERMV 1820 case Intrinsic::x86_avx2_permd: 1821 case Intrinsic::x86_avx2_permps: { 1822 simplifyAndSetOp(II, 1, DemandedElts, UndefElts); 1823 break; 1824 } 1825 1826 // SSE4A instructions leave the upper 64-bits of the 128-bit result 1827 // in an undefined state. 1828 case Intrinsic::x86_sse4a_extrq: 1829 case Intrinsic::x86_sse4a_extrqi: 1830 case Intrinsic::x86_sse4a_insertq: 1831 case Intrinsic::x86_sse4a_insertqi: 1832 UndefElts.setHighBits(VWidth / 2); 1833 break; 1834 case Intrinsic::amdgcn_buffer_load: 1835 case Intrinsic::amdgcn_buffer_load_format: 1836 case Intrinsic::amdgcn_raw_buffer_load: 1837 case Intrinsic::amdgcn_raw_buffer_load_format: 1838 case Intrinsic::amdgcn_raw_tbuffer_load: 1839 case Intrinsic::amdgcn_s_buffer_load: 1840 case Intrinsic::amdgcn_struct_buffer_load: 1841 case Intrinsic::amdgcn_struct_buffer_load_format: 1842 case Intrinsic::amdgcn_struct_tbuffer_load: 1843 case Intrinsic::amdgcn_tbuffer_load: 1844 return simplifyAMDGCNMemoryIntrinsicDemanded(II, DemandedElts); 1845 default: { 1846 if (getAMDGPUImageDMaskIntrinsic(II->getIntrinsicID())) 1847 return simplifyAMDGCNMemoryIntrinsicDemanded(II, DemandedElts, 0); 1848 1849 break; 1850 } 1851 } // switch on IntrinsicID 1852 break; 1853 } // case Call 1854 } // switch on Opcode 1855 1856 // TODO: We bail completely on integer div/rem and shifts because they have 1857 // UB/poison potential, but that should be refined. 1858 BinaryOperator *BO; 1859 if (match(I, m_BinOp(BO)) && !BO->isIntDivRem() && !BO->isShift()) { 1860 simplifyAndSetOp(I, 0, DemandedElts, UndefElts); 1861 simplifyAndSetOp(I, 1, DemandedElts, UndefElts2); 1862 1863 // Any change to an instruction with potential poison must clear those flags 1864 // because we can not guarantee those constraints now. Other analysis may 1865 // determine that it is safe to re-apply the flags. 1866 if (MadeChange) 1867 BO->dropPoisonGeneratingFlags(); 1868 1869 // Output elements are undefined if both are undefined. Consider things 1870 // like undef & 0. The result is known zero, not undef. 1871 UndefElts &= UndefElts2; 1872 } 1873 1874 // If we've proven all of the lanes undef, return an undef value. 1875 // TODO: Intersect w/demanded lanes 1876 if (UndefElts.isAllOnesValue()) 1877 return UndefValue::get(I->getType());; 1878 1879 return MadeChange ? I : nullptr; 1880 } 1881