1 //===- InstCombineMulDivRem.cpp -------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the visit functions for mul, fmul, sdiv, udiv, fdiv, 10 // srem, urem, frem. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "InstCombineInternal.h" 15 #include "llvm/ADT/APFloat.h" 16 #include "llvm/ADT/APInt.h" 17 #include "llvm/ADT/SmallVector.h" 18 #include "llvm/Analysis/InstructionSimplify.h" 19 #include "llvm/IR/BasicBlock.h" 20 #include "llvm/IR/Constant.h" 21 #include "llvm/IR/Constants.h" 22 #include "llvm/IR/InstrTypes.h" 23 #include "llvm/IR/Instruction.h" 24 #include "llvm/IR/Instructions.h" 25 #include "llvm/IR/IntrinsicInst.h" 26 #include "llvm/IR/Intrinsics.h" 27 #include "llvm/IR/Operator.h" 28 #include "llvm/IR/PatternMatch.h" 29 #include "llvm/IR/Type.h" 30 #include "llvm/IR/Value.h" 31 #include "llvm/Support/Casting.h" 32 #include "llvm/Support/ErrorHandling.h" 33 #include "llvm/Support/KnownBits.h" 34 #include "llvm/Transforms/InstCombine/InstCombineWorklist.h" 35 #include "llvm/Transforms/InstCombine/InstCombiner.h" 36 #include "llvm/Transforms/Utils/BuildLibCalls.h" 37 #include <cassert> 38 #include <cstddef> 39 #include <cstdint> 40 #include <utility> 41 42 using namespace llvm; 43 using namespace PatternMatch; 44 45 #define DEBUG_TYPE "instcombine" 46 47 /// The specific integer value is used in a context where it is known to be 48 /// non-zero. If this allows us to simplify the computation, do so and return 49 /// the new operand, otherwise return null. 50 static Value *simplifyValueKnownNonZero(Value *V, InstCombinerImpl &IC, 51 Instruction &CxtI) { 52 // If V has multiple uses, then we would have to do more analysis to determine 53 // if this is safe. For example, the use could be in dynamically unreached 54 // code. 55 if (!V->hasOneUse()) return nullptr; 56 57 bool MadeChange = false; 58 59 // ((1 << A) >>u B) --> (1 << (A-B)) 60 // Because V cannot be zero, we know that B is less than A. 61 Value *A = nullptr, *B = nullptr, *One = nullptr; 62 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(One), m_Value(A))), m_Value(B))) && 63 match(One, m_One())) { 64 A = IC.Builder.CreateSub(A, B); 65 return IC.Builder.CreateShl(One, A); 66 } 67 68 // (PowerOfTwo >>u B) --> isExact since shifting out the result would make it 69 // inexact. Similarly for <<. 70 BinaryOperator *I = dyn_cast<BinaryOperator>(V); 71 if (I && I->isLogicalShift() && 72 IC.isKnownToBeAPowerOfTwo(I->getOperand(0), false, 0, &CxtI)) { 73 // We know that this is an exact/nuw shift and that the input is a 74 // non-zero context as well. 75 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC, CxtI)) { 76 IC.replaceOperand(*I, 0, V2); 77 MadeChange = true; 78 } 79 80 if (I->getOpcode() == Instruction::LShr && !I->isExact()) { 81 I->setIsExact(); 82 MadeChange = true; 83 } 84 85 if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) { 86 I->setHasNoUnsignedWrap(); 87 MadeChange = true; 88 } 89 } 90 91 // TODO: Lots more we could do here: 92 // If V is a phi node, we can call this on each of its operands. 93 // "select cond, X, 0" can simplify to "X". 94 95 return MadeChange ? V : nullptr; 96 } 97 98 // TODO: This is a specific form of a much more general pattern. 99 // We could detect a select with any binop identity constant, or we 100 // could use SimplifyBinOp to see if either arm of the select reduces. 101 // But that needs to be done carefully and/or while removing potential 102 // reverse canonicalizations as in InstCombiner::foldSelectIntoOp(). 103 static Value *foldMulSelectToNegate(BinaryOperator &I, 104 InstCombiner::BuilderTy &Builder) { 105 Value *Cond, *OtherOp; 106 107 // mul (select Cond, 1, -1), OtherOp --> select Cond, OtherOp, -OtherOp 108 // mul OtherOp, (select Cond, 1, -1) --> select Cond, OtherOp, -OtherOp 109 if (match(&I, m_c_Mul(m_OneUse(m_Select(m_Value(Cond), m_One(), m_AllOnes())), 110 m_Value(OtherOp)))) 111 return Builder.CreateSelect(Cond, OtherOp, Builder.CreateNeg(OtherOp)); 112 113 // mul (select Cond, -1, 1), OtherOp --> select Cond, -OtherOp, OtherOp 114 // mul OtherOp, (select Cond, -1, 1) --> select Cond, -OtherOp, OtherOp 115 if (match(&I, m_c_Mul(m_OneUse(m_Select(m_Value(Cond), m_AllOnes(), m_One())), 116 m_Value(OtherOp)))) 117 return Builder.CreateSelect(Cond, Builder.CreateNeg(OtherOp), OtherOp); 118 119 // fmul (select Cond, 1.0, -1.0), OtherOp --> select Cond, OtherOp, -OtherOp 120 // fmul OtherOp, (select Cond, 1.0, -1.0) --> select Cond, OtherOp, -OtherOp 121 if (match(&I, m_c_FMul(m_OneUse(m_Select(m_Value(Cond), m_SpecificFP(1.0), 122 m_SpecificFP(-1.0))), 123 m_Value(OtherOp)))) { 124 IRBuilder<>::FastMathFlagGuard FMFGuard(Builder); 125 Builder.setFastMathFlags(I.getFastMathFlags()); 126 return Builder.CreateSelect(Cond, OtherOp, Builder.CreateFNeg(OtherOp)); 127 } 128 129 // fmul (select Cond, -1.0, 1.0), OtherOp --> select Cond, -OtherOp, OtherOp 130 // fmul OtherOp, (select Cond, -1.0, 1.0) --> select Cond, -OtherOp, OtherOp 131 if (match(&I, m_c_FMul(m_OneUse(m_Select(m_Value(Cond), m_SpecificFP(-1.0), 132 m_SpecificFP(1.0))), 133 m_Value(OtherOp)))) { 134 IRBuilder<>::FastMathFlagGuard FMFGuard(Builder); 135 Builder.setFastMathFlags(I.getFastMathFlags()); 136 return Builder.CreateSelect(Cond, Builder.CreateFNeg(OtherOp), OtherOp); 137 } 138 139 return nullptr; 140 } 141 142 Instruction *InstCombinerImpl::visitMul(BinaryOperator &I) { 143 if (Value *V = SimplifyMulInst(I.getOperand(0), I.getOperand(1), 144 SQ.getWithInstruction(&I))) 145 return replaceInstUsesWith(I, V); 146 147 if (SimplifyAssociativeOrCommutative(I)) 148 return &I; 149 150 if (Instruction *X = foldVectorBinop(I)) 151 return X; 152 153 if (Value *V = SimplifyUsingDistributiveLaws(I)) 154 return replaceInstUsesWith(I, V); 155 156 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 157 unsigned BitWidth = I.getType()->getScalarSizeInBits(); 158 159 // X * -1 == 0 - X 160 if (match(Op1, m_AllOnes())) { 161 BinaryOperator *BO = BinaryOperator::CreateNeg(Op0, I.getName()); 162 if (I.hasNoSignedWrap()) 163 BO->setHasNoSignedWrap(); 164 return BO; 165 } 166 167 // Also allow combining multiply instructions on vectors. 168 { 169 Value *NewOp; 170 Constant *C1, *C2; 171 const APInt *IVal; 172 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)), 173 m_Constant(C1))) && 174 match(C1, m_APInt(IVal))) { 175 // ((X << C2)*C1) == (X * (C1 << C2)) 176 Constant *Shl = ConstantExpr::getShl(C1, C2); 177 BinaryOperator *Mul = cast<BinaryOperator>(I.getOperand(0)); 178 BinaryOperator *BO = BinaryOperator::CreateMul(NewOp, Shl); 179 if (I.hasNoUnsignedWrap() && Mul->hasNoUnsignedWrap()) 180 BO->setHasNoUnsignedWrap(); 181 if (I.hasNoSignedWrap() && Mul->hasNoSignedWrap() && 182 Shl->isNotMinSignedValue()) 183 BO->setHasNoSignedWrap(); 184 return BO; 185 } 186 187 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) { 188 // Replace X*(2^C) with X << C, where C is either a scalar or a vector. 189 if (Constant *NewCst = ConstantExpr::getExactLogBase2(C1)) { 190 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst); 191 192 if (I.hasNoUnsignedWrap()) 193 Shl->setHasNoUnsignedWrap(); 194 if (I.hasNoSignedWrap()) { 195 const APInt *V; 196 if (match(NewCst, m_APInt(V)) && *V != V->getBitWidth() - 1) 197 Shl->setHasNoSignedWrap(); 198 } 199 200 return Shl; 201 } 202 } 203 } 204 205 if (Op0->hasOneUse() && match(Op1, m_NegatedPower2())) { 206 // Interpret X * (-1<<C) as (-X) * (1<<C) and try to sink the negation. 207 // The "* (1<<C)" thus becomes a potential shifting opportunity. 208 if (Value *NegOp0 = Negator::Negate(/*IsNegation*/ true, Op0, *this)) 209 return BinaryOperator::CreateMul( 210 NegOp0, ConstantExpr::getNeg(cast<Constant>(Op1)), I.getName()); 211 } 212 213 if (Instruction *FoldedMul = foldBinOpIntoSelectOrPhi(I)) 214 return FoldedMul; 215 216 if (Value *FoldedMul = foldMulSelectToNegate(I, Builder)) 217 return replaceInstUsesWith(I, FoldedMul); 218 219 // Simplify mul instructions with a constant RHS. 220 if (isa<Constant>(Op1)) { 221 // Canonicalize (X+C1)*CI -> X*CI+C1*CI. 222 Value *X; 223 Constant *C1; 224 if (match(Op0, m_OneUse(m_Add(m_Value(X), m_Constant(C1))))) { 225 Value *Mul = Builder.CreateMul(C1, Op1); 226 // Only go forward with the transform if C1*CI simplifies to a tidier 227 // constant. 228 if (!match(Mul, m_Mul(m_Value(), m_Value()))) 229 return BinaryOperator::CreateAdd(Builder.CreateMul(X, Op1), Mul); 230 } 231 } 232 233 // abs(X) * abs(X) -> X * X 234 // nabs(X) * nabs(X) -> X * X 235 if (Op0 == Op1) { 236 Value *X, *Y; 237 SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor; 238 if (SPF == SPF_ABS || SPF == SPF_NABS) 239 return BinaryOperator::CreateMul(X, X); 240 241 if (match(Op0, m_Intrinsic<Intrinsic::abs>(m_Value(X)))) 242 return BinaryOperator::CreateMul(X, X); 243 } 244 245 // -X * C --> X * -C 246 Value *X, *Y; 247 Constant *Op1C; 248 if (match(Op0, m_Neg(m_Value(X))) && match(Op1, m_Constant(Op1C))) 249 return BinaryOperator::CreateMul(X, ConstantExpr::getNeg(Op1C)); 250 251 // -X * -Y --> X * Y 252 if (match(Op0, m_Neg(m_Value(X))) && match(Op1, m_Neg(m_Value(Y)))) { 253 auto *NewMul = BinaryOperator::CreateMul(X, Y); 254 if (I.hasNoSignedWrap() && 255 cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap() && 256 cast<OverflowingBinaryOperator>(Op1)->hasNoSignedWrap()) 257 NewMul->setHasNoSignedWrap(); 258 return NewMul; 259 } 260 261 // -X * Y --> -(X * Y) 262 // X * -Y --> -(X * Y) 263 if (match(&I, m_c_Mul(m_OneUse(m_Neg(m_Value(X))), m_Value(Y)))) 264 return BinaryOperator::CreateNeg(Builder.CreateMul(X, Y)); 265 266 // (X / Y) * Y = X - (X % Y) 267 // (X / Y) * -Y = (X % Y) - X 268 { 269 Value *Y = Op1; 270 BinaryOperator *Div = dyn_cast<BinaryOperator>(Op0); 271 if (!Div || (Div->getOpcode() != Instruction::UDiv && 272 Div->getOpcode() != Instruction::SDiv)) { 273 Y = Op0; 274 Div = dyn_cast<BinaryOperator>(Op1); 275 } 276 Value *Neg = dyn_castNegVal(Y); 277 if (Div && Div->hasOneUse() && 278 (Div->getOperand(1) == Y || Div->getOperand(1) == Neg) && 279 (Div->getOpcode() == Instruction::UDiv || 280 Div->getOpcode() == Instruction::SDiv)) { 281 Value *X = Div->getOperand(0), *DivOp1 = Div->getOperand(1); 282 283 // If the division is exact, X % Y is zero, so we end up with X or -X. 284 if (Div->isExact()) { 285 if (DivOp1 == Y) 286 return replaceInstUsesWith(I, X); 287 return BinaryOperator::CreateNeg(X); 288 } 289 290 auto RemOpc = Div->getOpcode() == Instruction::UDiv ? Instruction::URem 291 : Instruction::SRem; 292 Value *Rem = Builder.CreateBinOp(RemOpc, X, DivOp1); 293 if (DivOp1 == Y) 294 return BinaryOperator::CreateSub(X, Rem); 295 return BinaryOperator::CreateSub(Rem, X); 296 } 297 } 298 299 /// i1 mul -> i1 and. 300 if (I.getType()->isIntOrIntVectorTy(1)) 301 return BinaryOperator::CreateAnd(Op0, Op1); 302 303 // X*(1 << Y) --> X << Y 304 // (1 << Y)*X --> X << Y 305 { 306 Value *Y; 307 BinaryOperator *BO = nullptr; 308 bool ShlNSW = false; 309 if (match(Op0, m_Shl(m_One(), m_Value(Y)))) { 310 BO = BinaryOperator::CreateShl(Op1, Y); 311 ShlNSW = cast<ShlOperator>(Op0)->hasNoSignedWrap(); 312 } else if (match(Op1, m_Shl(m_One(), m_Value(Y)))) { 313 BO = BinaryOperator::CreateShl(Op0, Y); 314 ShlNSW = cast<ShlOperator>(Op1)->hasNoSignedWrap(); 315 } 316 if (BO) { 317 if (I.hasNoUnsignedWrap()) 318 BO->setHasNoUnsignedWrap(); 319 if (I.hasNoSignedWrap() && ShlNSW) 320 BO->setHasNoSignedWrap(); 321 return BO; 322 } 323 } 324 325 // (zext bool X) * (zext bool Y) --> zext (and X, Y) 326 // (sext bool X) * (sext bool Y) --> zext (and X, Y) 327 // Note: -1 * -1 == 1 * 1 == 1 (if the extends match, the result is the same) 328 if (((match(Op0, m_ZExt(m_Value(X))) && match(Op1, m_ZExt(m_Value(Y)))) || 329 (match(Op0, m_SExt(m_Value(X))) && match(Op1, m_SExt(m_Value(Y))))) && 330 X->getType()->isIntOrIntVectorTy(1) && X->getType() == Y->getType() && 331 (Op0->hasOneUse() || Op1->hasOneUse())) { 332 Value *And = Builder.CreateAnd(X, Y, "mulbool"); 333 return CastInst::Create(Instruction::ZExt, And, I.getType()); 334 } 335 // (sext bool X) * (zext bool Y) --> sext (and X, Y) 336 // (zext bool X) * (sext bool Y) --> sext (and X, Y) 337 // Note: -1 * 1 == 1 * -1 == -1 338 if (((match(Op0, m_SExt(m_Value(X))) && match(Op1, m_ZExt(m_Value(Y)))) || 339 (match(Op0, m_ZExt(m_Value(X))) && match(Op1, m_SExt(m_Value(Y))))) && 340 X->getType()->isIntOrIntVectorTy(1) && X->getType() == Y->getType() && 341 (Op0->hasOneUse() || Op1->hasOneUse())) { 342 Value *And = Builder.CreateAnd(X, Y, "mulbool"); 343 return CastInst::Create(Instruction::SExt, And, I.getType()); 344 } 345 346 // (bool X) * Y --> X ? Y : 0 347 // Y * (bool X) --> X ? Y : 0 348 if (match(Op0, m_ZExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)) 349 return SelectInst::Create(X, Op1, ConstantInt::get(I.getType(), 0)); 350 if (match(Op1, m_ZExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)) 351 return SelectInst::Create(X, Op0, ConstantInt::get(I.getType(), 0)); 352 353 // (lshr X, 31) * Y --> (ashr X, 31) & Y 354 // Y * (lshr X, 31) --> (ashr X, 31) & Y 355 // TODO: We are not checking one-use because the elimination of the multiply 356 // is better for analysis? 357 // TODO: Should we canonicalize to '(X < 0) ? Y : 0' instead? That would be 358 // more similar to what we're doing above. 359 const APInt *C; 360 if (match(Op0, m_LShr(m_Value(X), m_APInt(C))) && *C == C->getBitWidth() - 1) 361 return BinaryOperator::CreateAnd(Builder.CreateAShr(X, *C), Op1); 362 if (match(Op1, m_LShr(m_Value(X), m_APInt(C))) && *C == C->getBitWidth() - 1) 363 return BinaryOperator::CreateAnd(Builder.CreateAShr(X, *C), Op0); 364 365 // ((ashr X, 31) | 1) * X --> abs(X) 366 // X * ((ashr X, 31) | 1) --> abs(X) 367 if (match(&I, m_c_BinOp(m_Or(m_AShr(m_Value(X), 368 m_SpecificIntAllowUndef(BitWidth - 1)), 369 m_One()), 370 m_Deferred(X)))) { 371 Value *Abs = Builder.CreateBinaryIntrinsic( 372 Intrinsic::abs, X, 373 ConstantInt::getBool(I.getContext(), I.hasNoSignedWrap())); 374 Abs->takeName(&I); 375 return replaceInstUsesWith(I, Abs); 376 } 377 378 if (Instruction *Ext = narrowMathIfNoOverflow(I)) 379 return Ext; 380 381 bool Changed = false; 382 if (!I.hasNoSignedWrap() && willNotOverflowSignedMul(Op0, Op1, I)) { 383 Changed = true; 384 I.setHasNoSignedWrap(true); 385 } 386 387 if (!I.hasNoUnsignedWrap() && willNotOverflowUnsignedMul(Op0, Op1, I)) { 388 Changed = true; 389 I.setHasNoUnsignedWrap(true); 390 } 391 392 return Changed ? &I : nullptr; 393 } 394 395 Instruction *InstCombinerImpl::foldFPSignBitOps(BinaryOperator &I) { 396 BinaryOperator::BinaryOps Opcode = I.getOpcode(); 397 assert((Opcode == Instruction::FMul || Opcode == Instruction::FDiv) && 398 "Expected fmul or fdiv"); 399 400 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 401 Value *X, *Y; 402 403 // -X * -Y --> X * Y 404 // -X / -Y --> X / Y 405 if (match(Op0, m_FNeg(m_Value(X))) && match(Op1, m_FNeg(m_Value(Y)))) 406 return BinaryOperator::CreateWithCopiedFlags(Opcode, X, Y, &I); 407 408 // fabs(X) * fabs(X) -> X * X 409 // fabs(X) / fabs(X) -> X / X 410 if (Op0 == Op1 && match(Op0, m_FAbs(m_Value(X)))) 411 return BinaryOperator::CreateWithCopiedFlags(Opcode, X, X, &I); 412 413 // fabs(X) * fabs(Y) --> fabs(X * Y) 414 // fabs(X) / fabs(Y) --> fabs(X / Y) 415 if (match(Op0, m_FAbs(m_Value(X))) && match(Op1, m_FAbs(m_Value(Y))) && 416 (Op0->hasOneUse() || Op1->hasOneUse())) { 417 IRBuilder<>::FastMathFlagGuard FMFGuard(Builder); 418 Builder.setFastMathFlags(I.getFastMathFlags()); 419 Value *XY = Builder.CreateBinOp(Opcode, X, Y); 420 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, XY); 421 Fabs->takeName(&I); 422 return replaceInstUsesWith(I, Fabs); 423 } 424 425 return nullptr; 426 } 427 428 Instruction *InstCombinerImpl::visitFMul(BinaryOperator &I) { 429 if (Value *V = SimplifyFMulInst(I.getOperand(0), I.getOperand(1), 430 I.getFastMathFlags(), 431 SQ.getWithInstruction(&I))) 432 return replaceInstUsesWith(I, V); 433 434 if (SimplifyAssociativeOrCommutative(I)) 435 return &I; 436 437 if (Instruction *X = foldVectorBinop(I)) 438 return X; 439 440 if (Instruction *FoldedMul = foldBinOpIntoSelectOrPhi(I)) 441 return FoldedMul; 442 443 if (Value *FoldedMul = foldMulSelectToNegate(I, Builder)) 444 return replaceInstUsesWith(I, FoldedMul); 445 446 if (Instruction *R = foldFPSignBitOps(I)) 447 return R; 448 449 // X * -1.0 --> -X 450 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 451 if (match(Op1, m_SpecificFP(-1.0))) 452 return UnaryOperator::CreateFNegFMF(Op0, &I); 453 454 // -X * C --> X * -C 455 Value *X, *Y; 456 Constant *C; 457 if (match(Op0, m_FNeg(m_Value(X))) && match(Op1, m_Constant(C))) 458 return BinaryOperator::CreateFMulFMF(X, ConstantExpr::getFNeg(C), &I); 459 460 // (select A, B, C) * (select A, D, E) --> select A, (B*D), (C*E) 461 if (Value *V = SimplifySelectsFeedingBinaryOp(I, Op0, Op1)) 462 return replaceInstUsesWith(I, V); 463 464 if (I.hasAllowReassoc()) { 465 // Reassociate constant RHS with another constant to form constant 466 // expression. 467 if (match(Op1, m_Constant(C)) && C->isFiniteNonZeroFP()) { 468 Constant *C1; 469 if (match(Op0, m_OneUse(m_FDiv(m_Constant(C1), m_Value(X))))) { 470 // (C1 / X) * C --> (C * C1) / X 471 Constant *CC1 = ConstantExpr::getFMul(C, C1); 472 if (CC1->isNormalFP()) 473 return BinaryOperator::CreateFDivFMF(CC1, X, &I); 474 } 475 if (match(Op0, m_FDiv(m_Value(X), m_Constant(C1)))) { 476 // (X / C1) * C --> X * (C / C1) 477 Constant *CDivC1 = ConstantExpr::getFDiv(C, C1); 478 if (CDivC1->isNormalFP()) 479 return BinaryOperator::CreateFMulFMF(X, CDivC1, &I); 480 481 // If the constant was a denormal, try reassociating differently. 482 // (X / C1) * C --> X / (C1 / C) 483 Constant *C1DivC = ConstantExpr::getFDiv(C1, C); 484 if (Op0->hasOneUse() && C1DivC->isNormalFP()) 485 return BinaryOperator::CreateFDivFMF(X, C1DivC, &I); 486 } 487 488 // We do not need to match 'fadd C, X' and 'fsub X, C' because they are 489 // canonicalized to 'fadd X, C'. Distributing the multiply may allow 490 // further folds and (X * C) + C2 is 'fma'. 491 if (match(Op0, m_OneUse(m_FAdd(m_Value(X), m_Constant(C1))))) { 492 // (X + C1) * C --> (X * C) + (C * C1) 493 Constant *CC1 = ConstantExpr::getFMul(C, C1); 494 Value *XC = Builder.CreateFMulFMF(X, C, &I); 495 return BinaryOperator::CreateFAddFMF(XC, CC1, &I); 496 } 497 if (match(Op0, m_OneUse(m_FSub(m_Constant(C1), m_Value(X))))) { 498 // (C1 - X) * C --> (C * C1) - (X * C) 499 Constant *CC1 = ConstantExpr::getFMul(C, C1); 500 Value *XC = Builder.CreateFMulFMF(X, C, &I); 501 return BinaryOperator::CreateFSubFMF(CC1, XC, &I); 502 } 503 } 504 505 Value *Z; 506 if (match(&I, m_c_FMul(m_OneUse(m_FDiv(m_Value(X), m_Value(Y))), 507 m_Value(Z)))) { 508 // Sink division: (X / Y) * Z --> (X * Z) / Y 509 Value *NewFMul = Builder.CreateFMulFMF(X, Z, &I); 510 return BinaryOperator::CreateFDivFMF(NewFMul, Y, &I); 511 } 512 513 // sqrt(X) * sqrt(Y) -> sqrt(X * Y) 514 // nnan disallows the possibility of returning a number if both operands are 515 // negative (in that case, we should return NaN). 516 if (I.hasNoNaNs() && 517 match(Op0, m_OneUse(m_Intrinsic<Intrinsic::sqrt>(m_Value(X)))) && 518 match(Op1, m_OneUse(m_Intrinsic<Intrinsic::sqrt>(m_Value(Y))))) { 519 Value *XY = Builder.CreateFMulFMF(X, Y, &I); 520 Value *Sqrt = Builder.CreateUnaryIntrinsic(Intrinsic::sqrt, XY, &I); 521 return replaceInstUsesWith(I, Sqrt); 522 } 523 524 // The following transforms are done irrespective of the number of uses 525 // for the expression "1.0/sqrt(X)". 526 // 1) 1.0/sqrt(X) * X -> X/sqrt(X) 527 // 2) X * 1.0/sqrt(X) -> X/sqrt(X) 528 // We always expect the backend to reduce X/sqrt(X) to sqrt(X), if it 529 // has the necessary (reassoc) fast-math-flags. 530 if (I.hasNoSignedZeros() && 531 match(Op0, (m_FDiv(m_SpecificFP(1.0), m_Value(Y)))) && 532 match(Y, m_Intrinsic<Intrinsic::sqrt>(m_Value(X))) && Op1 == X) 533 return BinaryOperator::CreateFDivFMF(X, Y, &I); 534 if (I.hasNoSignedZeros() && 535 match(Op1, (m_FDiv(m_SpecificFP(1.0), m_Value(Y)))) && 536 match(Y, m_Intrinsic<Intrinsic::sqrt>(m_Value(X))) && Op0 == X) 537 return BinaryOperator::CreateFDivFMF(X, Y, &I); 538 539 // Like the similar transform in instsimplify, this requires 'nsz' because 540 // sqrt(-0.0) = -0.0, and -0.0 * -0.0 does not simplify to -0.0. 541 if (I.hasNoNaNs() && I.hasNoSignedZeros() && Op0 == Op1 && 542 Op0->hasNUses(2)) { 543 // Peek through fdiv to find squaring of square root: 544 // (X / sqrt(Y)) * (X / sqrt(Y)) --> (X * X) / Y 545 if (match(Op0, m_FDiv(m_Value(X), 546 m_Intrinsic<Intrinsic::sqrt>(m_Value(Y))))) { 547 Value *XX = Builder.CreateFMulFMF(X, X, &I); 548 return BinaryOperator::CreateFDivFMF(XX, Y, &I); 549 } 550 // (sqrt(Y) / X) * (sqrt(Y) / X) --> Y / (X * X) 551 if (match(Op0, m_FDiv(m_Intrinsic<Intrinsic::sqrt>(m_Value(Y)), 552 m_Value(X)))) { 553 Value *XX = Builder.CreateFMulFMF(X, X, &I); 554 return BinaryOperator::CreateFDivFMF(Y, XX, &I); 555 } 556 } 557 558 // exp(X) * exp(Y) -> exp(X + Y) 559 // Match as long as at least one of exp has only one use. 560 if (match(Op0, m_Intrinsic<Intrinsic::exp>(m_Value(X))) && 561 match(Op1, m_Intrinsic<Intrinsic::exp>(m_Value(Y))) && 562 (Op0->hasOneUse() || Op1->hasOneUse())) { 563 Value *XY = Builder.CreateFAddFMF(X, Y, &I); 564 Value *Exp = Builder.CreateUnaryIntrinsic(Intrinsic::exp, XY, &I); 565 return replaceInstUsesWith(I, Exp); 566 } 567 568 // exp2(X) * exp2(Y) -> exp2(X + Y) 569 // Match as long as at least one of exp2 has only one use. 570 if (match(Op0, m_Intrinsic<Intrinsic::exp2>(m_Value(X))) && 571 match(Op1, m_Intrinsic<Intrinsic::exp2>(m_Value(Y))) && 572 (Op0->hasOneUse() || Op1->hasOneUse())) { 573 Value *XY = Builder.CreateFAddFMF(X, Y, &I); 574 Value *Exp2 = Builder.CreateUnaryIntrinsic(Intrinsic::exp2, XY, &I); 575 return replaceInstUsesWith(I, Exp2); 576 } 577 578 // (X*Y) * X => (X*X) * Y where Y != X 579 // The purpose is two-fold: 580 // 1) to form a power expression (of X). 581 // 2) potentially shorten the critical path: After transformation, the 582 // latency of the instruction Y is amortized by the expression of X*X, 583 // and therefore Y is in a "less critical" position compared to what it 584 // was before the transformation. 585 if (match(Op0, m_OneUse(m_c_FMul(m_Specific(Op1), m_Value(Y)))) && 586 Op1 != Y) { 587 Value *XX = Builder.CreateFMulFMF(Op1, Op1, &I); 588 return BinaryOperator::CreateFMulFMF(XX, Y, &I); 589 } 590 if (match(Op1, m_OneUse(m_c_FMul(m_Specific(Op0), m_Value(Y)))) && 591 Op0 != Y) { 592 Value *XX = Builder.CreateFMulFMF(Op0, Op0, &I); 593 return BinaryOperator::CreateFMulFMF(XX, Y, &I); 594 } 595 } 596 597 // log2(X * 0.5) * Y = log2(X) * Y - Y 598 if (I.isFast()) { 599 IntrinsicInst *Log2 = nullptr; 600 if (match(Op0, m_OneUse(m_Intrinsic<Intrinsic::log2>( 601 m_OneUse(m_FMul(m_Value(X), m_SpecificFP(0.5))))))) { 602 Log2 = cast<IntrinsicInst>(Op0); 603 Y = Op1; 604 } 605 if (match(Op1, m_OneUse(m_Intrinsic<Intrinsic::log2>( 606 m_OneUse(m_FMul(m_Value(X), m_SpecificFP(0.5))))))) { 607 Log2 = cast<IntrinsicInst>(Op1); 608 Y = Op0; 609 } 610 if (Log2) { 611 Value *Log2 = Builder.CreateUnaryIntrinsic(Intrinsic::log2, X, &I); 612 Value *LogXTimesY = Builder.CreateFMulFMF(Log2, Y, &I); 613 return BinaryOperator::CreateFSubFMF(LogXTimesY, Y, &I); 614 } 615 } 616 617 return nullptr; 618 } 619 620 /// Fold a divide or remainder with a select instruction divisor when one of the 621 /// select operands is zero. In that case, we can use the other select operand 622 /// because div/rem by zero is undefined. 623 bool InstCombinerImpl::simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I) { 624 SelectInst *SI = dyn_cast<SelectInst>(I.getOperand(1)); 625 if (!SI) 626 return false; 627 628 int NonNullOperand; 629 if (match(SI->getTrueValue(), m_Zero())) 630 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y 631 NonNullOperand = 2; 632 else if (match(SI->getFalseValue(), m_Zero())) 633 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y 634 NonNullOperand = 1; 635 else 636 return false; 637 638 // Change the div/rem to use 'Y' instead of the select. 639 replaceOperand(I, 1, SI->getOperand(NonNullOperand)); 640 641 // Okay, we know we replace the operand of the div/rem with 'Y' with no 642 // problem. However, the select, or the condition of the select may have 643 // multiple uses. Based on our knowledge that the operand must be non-zero, 644 // propagate the known value for the select into other uses of it, and 645 // propagate a known value of the condition into its other users. 646 647 // If the select and condition only have a single use, don't bother with this, 648 // early exit. 649 Value *SelectCond = SI->getCondition(); 650 if (SI->use_empty() && SelectCond->hasOneUse()) 651 return true; 652 653 // Scan the current block backward, looking for other uses of SI. 654 BasicBlock::iterator BBI = I.getIterator(), BBFront = I.getParent()->begin(); 655 Type *CondTy = SelectCond->getType(); 656 while (BBI != BBFront) { 657 --BBI; 658 // If we found an instruction that we can't assume will return, so 659 // information from below it cannot be propagated above it. 660 if (!isGuaranteedToTransferExecutionToSuccessor(&*BBI)) 661 break; 662 663 // Replace uses of the select or its condition with the known values. 664 for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end(); 665 I != E; ++I) { 666 if (*I == SI) { 667 replaceUse(*I, SI->getOperand(NonNullOperand)); 668 Worklist.push(&*BBI); 669 } else if (*I == SelectCond) { 670 replaceUse(*I, NonNullOperand == 1 ? ConstantInt::getTrue(CondTy) 671 : ConstantInt::getFalse(CondTy)); 672 Worklist.push(&*BBI); 673 } 674 } 675 676 // If we past the instruction, quit looking for it. 677 if (&*BBI == SI) 678 SI = nullptr; 679 if (&*BBI == SelectCond) 680 SelectCond = nullptr; 681 682 // If we ran out of things to eliminate, break out of the loop. 683 if (!SelectCond && !SI) 684 break; 685 686 } 687 return true; 688 } 689 690 /// True if the multiply can not be expressed in an int this size. 691 static bool multiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product, 692 bool IsSigned) { 693 bool Overflow; 694 Product = IsSigned ? C1.smul_ov(C2, Overflow) : C1.umul_ov(C2, Overflow); 695 return Overflow; 696 } 697 698 /// True if C1 is a multiple of C2. Quotient contains C1/C2. 699 static bool isMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, 700 bool IsSigned) { 701 assert(C1.getBitWidth() == C2.getBitWidth() && "Constant widths not equal"); 702 703 // Bail if we will divide by zero. 704 if (C2.isNullValue()) 705 return false; 706 707 // Bail if we would divide INT_MIN by -1. 708 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue()) 709 return false; 710 711 APInt Remainder(C1.getBitWidth(), /*val=*/0ULL, IsSigned); 712 if (IsSigned) 713 APInt::sdivrem(C1, C2, Quotient, Remainder); 714 else 715 APInt::udivrem(C1, C2, Quotient, Remainder); 716 717 return Remainder.isMinValue(); 718 } 719 720 /// This function implements the transforms common to both integer division 721 /// instructions (udiv and sdiv). It is called by the visitors to those integer 722 /// division instructions. 723 /// Common integer divide transforms 724 Instruction *InstCombinerImpl::commonIDivTransforms(BinaryOperator &I) { 725 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 726 bool IsSigned = I.getOpcode() == Instruction::SDiv; 727 Type *Ty = I.getType(); 728 729 // The RHS is known non-zero. 730 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this, I)) 731 return replaceOperand(I, 1, V); 732 733 // Handle cases involving: [su]div X, (select Cond, Y, Z) 734 // This does not apply for fdiv. 735 if (simplifyDivRemOfSelectWithZeroOp(I)) 736 return &I; 737 738 const APInt *C2; 739 if (match(Op1, m_APInt(C2))) { 740 Value *X; 741 const APInt *C1; 742 743 // (X / C1) / C2 -> X / (C1*C2) 744 if ((IsSigned && match(Op0, m_SDiv(m_Value(X), m_APInt(C1)))) || 745 (!IsSigned && match(Op0, m_UDiv(m_Value(X), m_APInt(C1))))) { 746 APInt Product(C1->getBitWidth(), /*val=*/0ULL, IsSigned); 747 if (!multiplyOverflows(*C1, *C2, Product, IsSigned)) 748 return BinaryOperator::Create(I.getOpcode(), X, 749 ConstantInt::get(Ty, Product)); 750 } 751 752 if ((IsSigned && match(Op0, m_NSWMul(m_Value(X), m_APInt(C1)))) || 753 (!IsSigned && match(Op0, m_NUWMul(m_Value(X), m_APInt(C1))))) { 754 APInt Quotient(C1->getBitWidth(), /*val=*/0ULL, IsSigned); 755 756 // (X * C1) / C2 -> X / (C2 / C1) if C2 is a multiple of C1. 757 if (isMultiple(*C2, *C1, Quotient, IsSigned)) { 758 auto *NewDiv = BinaryOperator::Create(I.getOpcode(), X, 759 ConstantInt::get(Ty, Quotient)); 760 NewDiv->setIsExact(I.isExact()); 761 return NewDiv; 762 } 763 764 // (X * C1) / C2 -> X * (C1 / C2) if C1 is a multiple of C2. 765 if (isMultiple(*C1, *C2, Quotient, IsSigned)) { 766 auto *Mul = BinaryOperator::Create(Instruction::Mul, X, 767 ConstantInt::get(Ty, Quotient)); 768 auto *OBO = cast<OverflowingBinaryOperator>(Op0); 769 Mul->setHasNoUnsignedWrap(!IsSigned && OBO->hasNoUnsignedWrap()); 770 Mul->setHasNoSignedWrap(OBO->hasNoSignedWrap()); 771 return Mul; 772 } 773 } 774 775 if ((IsSigned && match(Op0, m_NSWShl(m_Value(X), m_APInt(C1))) && 776 *C1 != C1->getBitWidth() - 1) || 777 (!IsSigned && match(Op0, m_NUWShl(m_Value(X), m_APInt(C1))))) { 778 APInt Quotient(C1->getBitWidth(), /*val=*/0ULL, IsSigned); 779 APInt C1Shifted = APInt::getOneBitSet( 780 C1->getBitWidth(), static_cast<unsigned>(C1->getLimitedValue())); 781 782 // (X << C1) / C2 -> X / (C2 >> C1) if C2 is a multiple of 1 << C1. 783 if (isMultiple(*C2, C1Shifted, Quotient, IsSigned)) { 784 auto *BO = BinaryOperator::Create(I.getOpcode(), X, 785 ConstantInt::get(Ty, Quotient)); 786 BO->setIsExact(I.isExact()); 787 return BO; 788 } 789 790 // (X << C1) / C2 -> X * ((1 << C1) / C2) if 1 << C1 is a multiple of C2. 791 if (isMultiple(C1Shifted, *C2, Quotient, IsSigned)) { 792 auto *Mul = BinaryOperator::Create(Instruction::Mul, X, 793 ConstantInt::get(Ty, Quotient)); 794 auto *OBO = cast<OverflowingBinaryOperator>(Op0); 795 Mul->setHasNoUnsignedWrap(!IsSigned && OBO->hasNoUnsignedWrap()); 796 Mul->setHasNoSignedWrap(OBO->hasNoSignedWrap()); 797 return Mul; 798 } 799 } 800 801 if (!C2->isNullValue()) // avoid X udiv 0 802 if (Instruction *FoldedDiv = foldBinOpIntoSelectOrPhi(I)) 803 return FoldedDiv; 804 } 805 806 if (match(Op0, m_One())) { 807 assert(!Ty->isIntOrIntVectorTy(1) && "i1 divide not removed?"); 808 if (IsSigned) { 809 // If Op1 is 0 then it's undefined behaviour, if Op1 is 1 then the 810 // result is one, if Op1 is -1 then the result is minus one, otherwise 811 // it's zero. 812 Value *Inc = Builder.CreateAdd(Op1, Op0); 813 Value *Cmp = Builder.CreateICmpULT(Inc, ConstantInt::get(Ty, 3)); 814 return SelectInst::Create(Cmp, Op1, ConstantInt::get(Ty, 0)); 815 } else { 816 // If Op1 is 0 then it's undefined behaviour. If Op1 is 1 then the 817 // result is one, otherwise it's zero. 818 return new ZExtInst(Builder.CreateICmpEQ(Op1, Op0), Ty); 819 } 820 } 821 822 // See if we can fold away this div instruction. 823 if (SimplifyDemandedInstructionBits(I)) 824 return &I; 825 826 // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y 827 Value *X, *Z; 828 if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) // (X - Z) / Y; Y = Op1 829 if ((IsSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) || 830 (!IsSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1))))) 831 return BinaryOperator::Create(I.getOpcode(), X, Op1); 832 833 // (X << Y) / X -> 1 << Y 834 Value *Y; 835 if (IsSigned && match(Op0, m_NSWShl(m_Specific(Op1), m_Value(Y)))) 836 return BinaryOperator::CreateNSWShl(ConstantInt::get(Ty, 1), Y); 837 if (!IsSigned && match(Op0, m_NUWShl(m_Specific(Op1), m_Value(Y)))) 838 return BinaryOperator::CreateNUWShl(ConstantInt::get(Ty, 1), Y); 839 840 // X / (X * Y) -> 1 / Y if the multiplication does not overflow. 841 if (match(Op1, m_c_Mul(m_Specific(Op0), m_Value(Y)))) { 842 bool HasNSW = cast<OverflowingBinaryOperator>(Op1)->hasNoSignedWrap(); 843 bool HasNUW = cast<OverflowingBinaryOperator>(Op1)->hasNoUnsignedWrap(); 844 if ((IsSigned && HasNSW) || (!IsSigned && HasNUW)) { 845 replaceOperand(I, 0, ConstantInt::get(Ty, 1)); 846 replaceOperand(I, 1, Y); 847 return &I; 848 } 849 } 850 851 return nullptr; 852 } 853 854 static const unsigned MaxDepth = 6; 855 856 namespace { 857 858 using FoldUDivOperandCb = Instruction *(*)(Value *Op0, Value *Op1, 859 const BinaryOperator &I, 860 InstCombinerImpl &IC); 861 862 /// Used to maintain state for visitUDivOperand(). 863 struct UDivFoldAction { 864 /// Informs visitUDiv() how to fold this operand. This can be zero if this 865 /// action joins two actions together. 866 FoldUDivOperandCb FoldAction; 867 868 /// Which operand to fold. 869 Value *OperandToFold; 870 871 union { 872 /// The instruction returned when FoldAction is invoked. 873 Instruction *FoldResult; 874 875 /// Stores the LHS action index if this action joins two actions together. 876 size_t SelectLHSIdx; 877 }; 878 879 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand) 880 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {} 881 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS) 882 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {} 883 }; 884 885 } // end anonymous namespace 886 887 // X udiv 2^C -> X >> C 888 static Instruction *foldUDivPow2Cst(Value *Op0, Value *Op1, 889 const BinaryOperator &I, 890 InstCombinerImpl &IC) { 891 Constant *C1 = ConstantExpr::getExactLogBase2(cast<Constant>(Op1)); 892 if (!C1) 893 llvm_unreachable("Failed to constant fold udiv -> logbase2"); 894 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, C1); 895 if (I.isExact()) 896 LShr->setIsExact(); 897 return LShr; 898 } 899 900 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2) 901 // X udiv (zext (C1 << N)), where C1 is "1<<C2" --> X >> (N+C2) 902 static Instruction *foldUDivShl(Value *Op0, Value *Op1, const BinaryOperator &I, 903 InstCombinerImpl &IC) { 904 Value *ShiftLeft; 905 if (!match(Op1, m_ZExt(m_Value(ShiftLeft)))) 906 ShiftLeft = Op1; 907 908 Constant *CI; 909 Value *N; 910 if (!match(ShiftLeft, m_Shl(m_Constant(CI), m_Value(N)))) 911 llvm_unreachable("match should never fail here!"); 912 Constant *Log2Base = ConstantExpr::getExactLogBase2(CI); 913 if (!Log2Base) 914 llvm_unreachable("getLogBase2 should never fail here!"); 915 N = IC.Builder.CreateAdd(N, Log2Base); 916 if (Op1 != ShiftLeft) 917 N = IC.Builder.CreateZExt(N, Op1->getType()); 918 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N); 919 if (I.isExact()) 920 LShr->setIsExact(); 921 return LShr; 922 } 923 924 // Recursively visits the possible right hand operands of a udiv 925 // instruction, seeing through select instructions, to determine if we can 926 // replace the udiv with something simpler. If we find that an operand is not 927 // able to simplify the udiv, we abort the entire transformation. 928 static size_t visitUDivOperand(Value *Op0, Value *Op1, const BinaryOperator &I, 929 SmallVectorImpl<UDivFoldAction> &Actions, 930 unsigned Depth = 0) { 931 // FIXME: assert that Op1 isn't/doesn't contain undef. 932 933 // Check to see if this is an unsigned division with an exact power of 2, 934 // if so, convert to a right shift. 935 if (match(Op1, m_Power2())) { 936 Actions.push_back(UDivFoldAction(foldUDivPow2Cst, Op1)); 937 return Actions.size(); 938 } 939 940 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2) 941 if (match(Op1, m_Shl(m_Power2(), m_Value())) || 942 match(Op1, m_ZExt(m_Shl(m_Power2(), m_Value())))) { 943 Actions.push_back(UDivFoldAction(foldUDivShl, Op1)); 944 return Actions.size(); 945 } 946 947 // The remaining tests are all recursive, so bail out if we hit the limit. 948 if (Depth++ == MaxDepth) 949 return 0; 950 951 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) 952 // FIXME: missed optimization: if one of the hands of select is/contains 953 // undef, just directly pick the other one. 954 // FIXME: can both hands contain undef? 955 if (size_t LHSIdx = 956 visitUDivOperand(Op0, SI->getOperand(1), I, Actions, Depth)) 957 if (visitUDivOperand(Op0, SI->getOperand(2), I, Actions, Depth)) { 958 Actions.push_back(UDivFoldAction(nullptr, Op1, LHSIdx - 1)); 959 return Actions.size(); 960 } 961 962 return 0; 963 } 964 965 /// If we have zero-extended operands of an unsigned div or rem, we may be able 966 /// to narrow the operation (sink the zext below the math). 967 static Instruction *narrowUDivURem(BinaryOperator &I, 968 InstCombiner::BuilderTy &Builder) { 969 Instruction::BinaryOps Opcode = I.getOpcode(); 970 Value *N = I.getOperand(0); 971 Value *D = I.getOperand(1); 972 Type *Ty = I.getType(); 973 Value *X, *Y; 974 if (match(N, m_ZExt(m_Value(X))) && match(D, m_ZExt(m_Value(Y))) && 975 X->getType() == Y->getType() && (N->hasOneUse() || D->hasOneUse())) { 976 // udiv (zext X), (zext Y) --> zext (udiv X, Y) 977 // urem (zext X), (zext Y) --> zext (urem X, Y) 978 Value *NarrowOp = Builder.CreateBinOp(Opcode, X, Y); 979 return new ZExtInst(NarrowOp, Ty); 980 } 981 982 Constant *C; 983 if ((match(N, m_OneUse(m_ZExt(m_Value(X)))) && match(D, m_Constant(C))) || 984 (match(D, m_OneUse(m_ZExt(m_Value(X)))) && match(N, m_Constant(C)))) { 985 // If the constant is the same in the smaller type, use the narrow version. 986 Constant *TruncC = ConstantExpr::getTrunc(C, X->getType()); 987 if (ConstantExpr::getZExt(TruncC, Ty) != C) 988 return nullptr; 989 990 // udiv (zext X), C --> zext (udiv X, C') 991 // urem (zext X), C --> zext (urem X, C') 992 // udiv C, (zext X) --> zext (udiv C', X) 993 // urem C, (zext X) --> zext (urem C', X) 994 Value *NarrowOp = isa<Constant>(D) ? Builder.CreateBinOp(Opcode, X, TruncC) 995 : Builder.CreateBinOp(Opcode, TruncC, X); 996 return new ZExtInst(NarrowOp, Ty); 997 } 998 999 return nullptr; 1000 } 1001 1002 Instruction *InstCombinerImpl::visitUDiv(BinaryOperator &I) { 1003 if (Value *V = SimplifyUDivInst(I.getOperand(0), I.getOperand(1), 1004 SQ.getWithInstruction(&I))) 1005 return replaceInstUsesWith(I, V); 1006 1007 if (Instruction *X = foldVectorBinop(I)) 1008 return X; 1009 1010 // Handle the integer div common cases 1011 if (Instruction *Common = commonIDivTransforms(I)) 1012 return Common; 1013 1014 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1015 Value *X; 1016 const APInt *C1, *C2; 1017 if (match(Op0, m_LShr(m_Value(X), m_APInt(C1))) && match(Op1, m_APInt(C2))) { 1018 // (X lshr C1) udiv C2 --> X udiv (C2 << C1) 1019 bool Overflow; 1020 APInt C2ShlC1 = C2->ushl_ov(*C1, Overflow); 1021 if (!Overflow) { 1022 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); 1023 BinaryOperator *BO = BinaryOperator::CreateUDiv( 1024 X, ConstantInt::get(X->getType(), C2ShlC1)); 1025 if (IsExact) 1026 BO->setIsExact(); 1027 return BO; 1028 } 1029 } 1030 1031 // Op0 / C where C is large (negative) --> zext (Op0 >= C) 1032 // TODO: Could use isKnownNegative() to handle non-constant values. 1033 Type *Ty = I.getType(); 1034 if (match(Op1, m_Negative())) { 1035 Value *Cmp = Builder.CreateICmpUGE(Op0, Op1); 1036 return CastInst::CreateZExtOrBitCast(Cmp, Ty); 1037 } 1038 // Op0 / (sext i1 X) --> zext (Op0 == -1) (if X is 0, the div is undefined) 1039 if (match(Op1, m_SExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)) { 1040 Value *Cmp = Builder.CreateICmpEQ(Op0, ConstantInt::getAllOnesValue(Ty)); 1041 return CastInst::CreateZExtOrBitCast(Cmp, Ty); 1042 } 1043 1044 if (Instruction *NarrowDiv = narrowUDivURem(I, Builder)) 1045 return NarrowDiv; 1046 1047 // If the udiv operands are non-overflowing multiplies with a common operand, 1048 // then eliminate the common factor: 1049 // (A * B) / (A * X) --> B / X (and commuted variants) 1050 // TODO: The code would be reduced if we had m_c_NUWMul pattern matching. 1051 // TODO: If -reassociation handled this generally, we could remove this. 1052 Value *A, *B; 1053 if (match(Op0, m_NUWMul(m_Value(A), m_Value(B)))) { 1054 if (match(Op1, m_NUWMul(m_Specific(A), m_Value(X))) || 1055 match(Op1, m_NUWMul(m_Value(X), m_Specific(A)))) 1056 return BinaryOperator::CreateUDiv(B, X); 1057 if (match(Op1, m_NUWMul(m_Specific(B), m_Value(X))) || 1058 match(Op1, m_NUWMul(m_Value(X), m_Specific(B)))) 1059 return BinaryOperator::CreateUDiv(A, X); 1060 } 1061 1062 // (LHS udiv (select (select (...)))) -> (LHS >> (select (select (...)))) 1063 SmallVector<UDivFoldAction, 6> UDivActions; 1064 if (visitUDivOperand(Op0, Op1, I, UDivActions)) 1065 for (unsigned i = 0, e = UDivActions.size(); i != e; ++i) { 1066 FoldUDivOperandCb Action = UDivActions[i].FoldAction; 1067 Value *ActionOp1 = UDivActions[i].OperandToFold; 1068 Instruction *Inst; 1069 if (Action) 1070 Inst = Action(Op0, ActionOp1, I, *this); 1071 else { 1072 // This action joins two actions together. The RHS of this action is 1073 // simply the last action we processed, we saved the LHS action index in 1074 // the joining action. 1075 size_t SelectRHSIdx = i - 1; 1076 Value *SelectRHS = UDivActions[SelectRHSIdx].FoldResult; 1077 size_t SelectLHSIdx = UDivActions[i].SelectLHSIdx; 1078 Value *SelectLHS = UDivActions[SelectLHSIdx].FoldResult; 1079 Inst = SelectInst::Create(cast<SelectInst>(ActionOp1)->getCondition(), 1080 SelectLHS, SelectRHS); 1081 } 1082 1083 // If this is the last action to process, return it to the InstCombiner. 1084 // Otherwise, we insert it before the UDiv and record it so that we may 1085 // use it as part of a joining action (i.e., a SelectInst). 1086 if (e - i != 1) { 1087 Inst->insertBefore(&I); 1088 UDivActions[i].FoldResult = Inst; 1089 } else 1090 return Inst; 1091 } 1092 1093 return nullptr; 1094 } 1095 1096 Instruction *InstCombinerImpl::visitSDiv(BinaryOperator &I) { 1097 if (Value *V = SimplifySDivInst(I.getOperand(0), I.getOperand(1), 1098 SQ.getWithInstruction(&I))) 1099 return replaceInstUsesWith(I, V); 1100 1101 if (Instruction *X = foldVectorBinop(I)) 1102 return X; 1103 1104 // Handle the integer div common cases 1105 if (Instruction *Common = commonIDivTransforms(I)) 1106 return Common; 1107 1108 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1109 Type *Ty = I.getType(); 1110 Value *X; 1111 // sdiv Op0, -1 --> -Op0 1112 // sdiv Op0, (sext i1 X) --> -Op0 (because if X is 0, the op is undefined) 1113 if (match(Op1, m_AllOnes()) || 1114 (match(Op1, m_SExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1))) 1115 return BinaryOperator::CreateNeg(Op0); 1116 1117 // X / INT_MIN --> X == INT_MIN 1118 if (match(Op1, m_SignMask())) 1119 return new ZExtInst(Builder.CreateICmpEQ(Op0, Op1), Ty); 1120 1121 // sdiv exact X, 1<<C --> ashr exact X, C iff 1<<C is non-negative 1122 // sdiv exact X, -1<<C --> -(ashr exact X, C) 1123 if (I.isExact() && ((match(Op1, m_Power2()) && match(Op1, m_NonNegative())) || 1124 match(Op1, m_NegatedPower2()))) { 1125 bool DivisorWasNegative = match(Op1, m_NegatedPower2()); 1126 if (DivisorWasNegative) 1127 Op1 = ConstantExpr::getNeg(cast<Constant>(Op1)); 1128 auto *AShr = BinaryOperator::CreateExactAShr( 1129 Op0, ConstantExpr::getExactLogBase2(cast<Constant>(Op1)), I.getName()); 1130 if (!DivisorWasNegative) 1131 return AShr; 1132 Builder.Insert(AShr); 1133 AShr->setName(I.getName() + ".neg"); 1134 return BinaryOperator::CreateNeg(AShr, I.getName()); 1135 } 1136 1137 const APInt *Op1C; 1138 if (match(Op1, m_APInt(Op1C))) { 1139 // If the dividend is sign-extended and the constant divisor is small enough 1140 // to fit in the source type, shrink the division to the narrower type: 1141 // (sext X) sdiv C --> sext (X sdiv C) 1142 Value *Op0Src; 1143 if (match(Op0, m_OneUse(m_SExt(m_Value(Op0Src)))) && 1144 Op0Src->getType()->getScalarSizeInBits() >= Op1C->getMinSignedBits()) { 1145 1146 // In the general case, we need to make sure that the dividend is not the 1147 // minimum signed value because dividing that by -1 is UB. But here, we 1148 // know that the -1 divisor case is already handled above. 1149 1150 Constant *NarrowDivisor = 1151 ConstantExpr::getTrunc(cast<Constant>(Op1), Op0Src->getType()); 1152 Value *NarrowOp = Builder.CreateSDiv(Op0Src, NarrowDivisor); 1153 return new SExtInst(NarrowOp, Ty); 1154 } 1155 1156 // -X / C --> X / -C (if the negation doesn't overflow). 1157 // TODO: This could be enhanced to handle arbitrary vector constants by 1158 // checking if all elements are not the min-signed-val. 1159 if (!Op1C->isMinSignedValue() && 1160 match(Op0, m_NSWSub(m_Zero(), m_Value(X)))) { 1161 Constant *NegC = ConstantInt::get(Ty, -(*Op1C)); 1162 Instruction *BO = BinaryOperator::CreateSDiv(X, NegC); 1163 BO->setIsExact(I.isExact()); 1164 return BO; 1165 } 1166 } 1167 1168 // -X / Y --> -(X / Y) 1169 Value *Y; 1170 if (match(&I, m_SDiv(m_OneUse(m_NSWSub(m_Zero(), m_Value(X))), m_Value(Y)))) 1171 return BinaryOperator::CreateNSWNeg( 1172 Builder.CreateSDiv(X, Y, I.getName(), I.isExact())); 1173 1174 // abs(X) / X --> X > -1 ? 1 : -1 1175 // X / abs(X) --> X > -1 ? 1 : -1 1176 if (match(&I, m_c_BinOp( 1177 m_OneUse(m_Intrinsic<Intrinsic::abs>(m_Value(X), m_One())), 1178 m_Deferred(X)))) { 1179 Constant *NegOne = ConstantInt::getAllOnesValue(Ty); 1180 Value *Cond = Builder.CreateICmpSGT(X, NegOne); 1181 return SelectInst::Create(Cond, ConstantInt::get(Ty, 1), NegOne); 1182 } 1183 1184 // If the sign bits of both operands are zero (i.e. we can prove they are 1185 // unsigned inputs), turn this into a udiv. 1186 APInt Mask(APInt::getSignMask(Ty->getScalarSizeInBits())); 1187 if (MaskedValueIsZero(Op0, Mask, 0, &I)) { 1188 if (MaskedValueIsZero(Op1, Mask, 0, &I)) { 1189 // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set 1190 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName()); 1191 BO->setIsExact(I.isExact()); 1192 return BO; 1193 } 1194 1195 if (match(Op1, m_NegatedPower2())) { 1196 // X sdiv (-(1 << C)) -> -(X sdiv (1 << C)) -> 1197 // -> -(X udiv (1 << C)) -> -(X u>> C) 1198 return BinaryOperator::CreateNeg(Builder.Insert(foldUDivPow2Cst( 1199 Op0, ConstantExpr::getNeg(cast<Constant>(Op1)), I, *this))); 1200 } 1201 1202 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/ true, 0, &I)) { 1203 // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y) 1204 // Safe because the only negative value (1 << Y) can take on is 1205 // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have 1206 // the sign bit set. 1207 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName()); 1208 BO->setIsExact(I.isExact()); 1209 return BO; 1210 } 1211 } 1212 1213 return nullptr; 1214 } 1215 1216 /// Remove negation and try to convert division into multiplication. 1217 static Instruction *foldFDivConstantDivisor(BinaryOperator &I) { 1218 Constant *C; 1219 if (!match(I.getOperand(1), m_Constant(C))) 1220 return nullptr; 1221 1222 // -X / C --> X / -C 1223 Value *X; 1224 if (match(I.getOperand(0), m_FNeg(m_Value(X)))) 1225 return BinaryOperator::CreateFDivFMF(X, ConstantExpr::getFNeg(C), &I); 1226 1227 // If the constant divisor has an exact inverse, this is always safe. If not, 1228 // then we can still create a reciprocal if fast-math-flags allow it and the 1229 // constant is a regular number (not zero, infinite, or denormal). 1230 if (!(C->hasExactInverseFP() || (I.hasAllowReciprocal() && C->isNormalFP()))) 1231 return nullptr; 1232 1233 // Disallow denormal constants because we don't know what would happen 1234 // on all targets. 1235 // TODO: Use Intrinsic::canonicalize or let function attributes tell us that 1236 // denorms are flushed? 1237 auto *RecipC = ConstantExpr::getFDiv(ConstantFP::get(I.getType(), 1.0), C); 1238 if (!RecipC->isNormalFP()) 1239 return nullptr; 1240 1241 // X / C --> X * (1 / C) 1242 return BinaryOperator::CreateFMulFMF(I.getOperand(0), RecipC, &I); 1243 } 1244 1245 /// Remove negation and try to reassociate constant math. 1246 static Instruction *foldFDivConstantDividend(BinaryOperator &I) { 1247 Constant *C; 1248 if (!match(I.getOperand(0), m_Constant(C))) 1249 return nullptr; 1250 1251 // C / -X --> -C / X 1252 Value *X; 1253 if (match(I.getOperand(1), m_FNeg(m_Value(X)))) 1254 return BinaryOperator::CreateFDivFMF(ConstantExpr::getFNeg(C), X, &I); 1255 1256 if (!I.hasAllowReassoc() || !I.hasAllowReciprocal()) 1257 return nullptr; 1258 1259 // Try to reassociate C / X expressions where X includes another constant. 1260 Constant *C2, *NewC = nullptr; 1261 if (match(I.getOperand(1), m_FMul(m_Value(X), m_Constant(C2)))) { 1262 // C / (X * C2) --> (C / C2) / X 1263 NewC = ConstantExpr::getFDiv(C, C2); 1264 } else if (match(I.getOperand(1), m_FDiv(m_Value(X), m_Constant(C2)))) { 1265 // C / (X / C2) --> (C * C2) / X 1266 NewC = ConstantExpr::getFMul(C, C2); 1267 } 1268 // Disallow denormal constants because we don't know what would happen 1269 // on all targets. 1270 // TODO: Use Intrinsic::canonicalize or let function attributes tell us that 1271 // denorms are flushed? 1272 if (!NewC || !NewC->isNormalFP()) 1273 return nullptr; 1274 1275 return BinaryOperator::CreateFDivFMF(NewC, X, &I); 1276 } 1277 1278 Instruction *InstCombinerImpl::visitFDiv(BinaryOperator &I) { 1279 if (Value *V = SimplifyFDivInst(I.getOperand(0), I.getOperand(1), 1280 I.getFastMathFlags(), 1281 SQ.getWithInstruction(&I))) 1282 return replaceInstUsesWith(I, V); 1283 1284 if (Instruction *X = foldVectorBinop(I)) 1285 return X; 1286 1287 if (Instruction *R = foldFDivConstantDivisor(I)) 1288 return R; 1289 1290 if (Instruction *R = foldFDivConstantDividend(I)) 1291 return R; 1292 1293 if (Instruction *R = foldFPSignBitOps(I)) 1294 return R; 1295 1296 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1297 if (isa<Constant>(Op0)) 1298 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) 1299 if (Instruction *R = FoldOpIntoSelect(I, SI)) 1300 return R; 1301 1302 if (isa<Constant>(Op1)) 1303 if (SelectInst *SI = dyn_cast<SelectInst>(Op0)) 1304 if (Instruction *R = FoldOpIntoSelect(I, SI)) 1305 return R; 1306 1307 if (I.hasAllowReassoc() && I.hasAllowReciprocal()) { 1308 Value *X, *Y; 1309 if (match(Op0, m_OneUse(m_FDiv(m_Value(X), m_Value(Y)))) && 1310 (!isa<Constant>(Y) || !isa<Constant>(Op1))) { 1311 // (X / Y) / Z => X / (Y * Z) 1312 Value *YZ = Builder.CreateFMulFMF(Y, Op1, &I); 1313 return BinaryOperator::CreateFDivFMF(X, YZ, &I); 1314 } 1315 if (match(Op1, m_OneUse(m_FDiv(m_Value(X), m_Value(Y)))) && 1316 (!isa<Constant>(Y) || !isa<Constant>(Op0))) { 1317 // Z / (X / Y) => (Y * Z) / X 1318 Value *YZ = Builder.CreateFMulFMF(Y, Op0, &I); 1319 return BinaryOperator::CreateFDivFMF(YZ, X, &I); 1320 } 1321 // Z / (1.0 / Y) => (Y * Z) 1322 // 1323 // This is a special case of Z / (X / Y) => (Y * Z) / X, with X = 1.0. The 1324 // m_OneUse check is avoided because even in the case of the multiple uses 1325 // for 1.0/Y, the number of instructions remain the same and a division is 1326 // replaced by a multiplication. 1327 if (match(Op1, m_FDiv(m_SpecificFP(1.0), m_Value(Y)))) 1328 return BinaryOperator::CreateFMulFMF(Y, Op0, &I); 1329 } 1330 1331 if (I.hasAllowReassoc() && Op0->hasOneUse() && Op1->hasOneUse()) { 1332 // sin(X) / cos(X) -> tan(X) 1333 // cos(X) / sin(X) -> 1/tan(X) (cotangent) 1334 Value *X; 1335 bool IsTan = match(Op0, m_Intrinsic<Intrinsic::sin>(m_Value(X))) && 1336 match(Op1, m_Intrinsic<Intrinsic::cos>(m_Specific(X))); 1337 bool IsCot = 1338 !IsTan && match(Op0, m_Intrinsic<Intrinsic::cos>(m_Value(X))) && 1339 match(Op1, m_Intrinsic<Intrinsic::sin>(m_Specific(X))); 1340 1341 if ((IsTan || IsCot) && 1342 hasFloatFn(&TLI, I.getType(), LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) { 1343 IRBuilder<> B(&I); 1344 IRBuilder<>::FastMathFlagGuard FMFGuard(B); 1345 B.setFastMathFlags(I.getFastMathFlags()); 1346 AttributeList Attrs = 1347 cast<CallBase>(Op0)->getCalledFunction()->getAttributes(); 1348 Value *Res = emitUnaryFloatFnCall(X, &TLI, LibFunc_tan, LibFunc_tanf, 1349 LibFunc_tanl, B, Attrs); 1350 if (IsCot) 1351 Res = B.CreateFDiv(ConstantFP::get(I.getType(), 1.0), Res); 1352 return replaceInstUsesWith(I, Res); 1353 } 1354 } 1355 1356 // X / (X * Y) --> 1.0 / Y 1357 // Reassociate to (X / X -> 1.0) is legal when NaNs are not allowed. 1358 // We can ignore the possibility that X is infinity because INF/INF is NaN. 1359 Value *X, *Y; 1360 if (I.hasNoNaNs() && I.hasAllowReassoc() && 1361 match(Op1, m_c_FMul(m_Specific(Op0), m_Value(Y)))) { 1362 replaceOperand(I, 0, ConstantFP::get(I.getType(), 1.0)); 1363 replaceOperand(I, 1, Y); 1364 return &I; 1365 } 1366 1367 // X / fabs(X) -> copysign(1.0, X) 1368 // fabs(X) / X -> copysign(1.0, X) 1369 if (I.hasNoNaNs() && I.hasNoInfs() && 1370 (match(&I, m_FDiv(m_Value(X), m_FAbs(m_Deferred(X)))) || 1371 match(&I, m_FDiv(m_FAbs(m_Value(X)), m_Deferred(X))))) { 1372 Value *V = Builder.CreateBinaryIntrinsic( 1373 Intrinsic::copysign, ConstantFP::get(I.getType(), 1.0), X, &I); 1374 return replaceInstUsesWith(I, V); 1375 } 1376 return nullptr; 1377 } 1378 1379 /// This function implements the transforms common to both integer remainder 1380 /// instructions (urem and srem). It is called by the visitors to those integer 1381 /// remainder instructions. 1382 /// Common integer remainder transforms 1383 Instruction *InstCombinerImpl::commonIRemTransforms(BinaryOperator &I) { 1384 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1385 1386 // The RHS is known non-zero. 1387 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this, I)) 1388 return replaceOperand(I, 1, V); 1389 1390 // Handle cases involving: rem X, (select Cond, Y, Z) 1391 if (simplifyDivRemOfSelectWithZeroOp(I)) 1392 return &I; 1393 1394 if (isa<Constant>(Op1)) { 1395 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) { 1396 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) { 1397 if (Instruction *R = FoldOpIntoSelect(I, SI)) 1398 return R; 1399 } else if (auto *PN = dyn_cast<PHINode>(Op0I)) { 1400 const APInt *Op1Int; 1401 if (match(Op1, m_APInt(Op1Int)) && !Op1Int->isMinValue() && 1402 (I.getOpcode() == Instruction::URem || 1403 !Op1Int->isMinSignedValue())) { 1404 // foldOpIntoPhi will speculate instructions to the end of the PHI's 1405 // predecessor blocks, so do this only if we know the srem or urem 1406 // will not fault. 1407 if (Instruction *NV = foldOpIntoPhi(I, PN)) 1408 return NV; 1409 } 1410 } 1411 1412 // See if we can fold away this rem instruction. 1413 if (SimplifyDemandedInstructionBits(I)) 1414 return &I; 1415 } 1416 } 1417 1418 return nullptr; 1419 } 1420 1421 Instruction *InstCombinerImpl::visitURem(BinaryOperator &I) { 1422 if (Value *V = SimplifyURemInst(I.getOperand(0), I.getOperand(1), 1423 SQ.getWithInstruction(&I))) 1424 return replaceInstUsesWith(I, V); 1425 1426 if (Instruction *X = foldVectorBinop(I)) 1427 return X; 1428 1429 if (Instruction *common = commonIRemTransforms(I)) 1430 return common; 1431 1432 if (Instruction *NarrowRem = narrowUDivURem(I, Builder)) 1433 return NarrowRem; 1434 1435 // X urem Y -> X and Y-1, where Y is a power of 2, 1436 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1437 Type *Ty = I.getType(); 1438 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/ true, 0, &I)) { 1439 // This may increase instruction count, we don't enforce that Y is a 1440 // constant. 1441 Constant *N1 = Constant::getAllOnesValue(Ty); 1442 Value *Add = Builder.CreateAdd(Op1, N1); 1443 return BinaryOperator::CreateAnd(Op0, Add); 1444 } 1445 1446 // 1 urem X -> zext(X != 1) 1447 if (match(Op0, m_One())) { 1448 Value *Cmp = Builder.CreateICmpNE(Op1, ConstantInt::get(Ty, 1)); 1449 return CastInst::CreateZExtOrBitCast(Cmp, Ty); 1450 } 1451 1452 // X urem C -> X < C ? X : X - C, where C >= signbit. 1453 if (match(Op1, m_Negative())) { 1454 Value *Cmp = Builder.CreateICmpULT(Op0, Op1); 1455 Value *Sub = Builder.CreateSub(Op0, Op1); 1456 return SelectInst::Create(Cmp, Op0, Sub); 1457 } 1458 1459 // If the divisor is a sext of a boolean, then the divisor must be max 1460 // unsigned value (-1). Therefore, the remainder is Op0 unless Op0 is also 1461 // max unsigned value. In that case, the remainder is 0: 1462 // urem Op0, (sext i1 X) --> (Op0 == -1) ? 0 : Op0 1463 Value *X; 1464 if (match(Op1, m_SExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)) { 1465 Value *Cmp = Builder.CreateICmpEQ(Op0, ConstantInt::getAllOnesValue(Ty)); 1466 return SelectInst::Create(Cmp, ConstantInt::getNullValue(Ty), Op0); 1467 } 1468 1469 return nullptr; 1470 } 1471 1472 Instruction *InstCombinerImpl::visitSRem(BinaryOperator &I) { 1473 if (Value *V = SimplifySRemInst(I.getOperand(0), I.getOperand(1), 1474 SQ.getWithInstruction(&I))) 1475 return replaceInstUsesWith(I, V); 1476 1477 if (Instruction *X = foldVectorBinop(I)) 1478 return X; 1479 1480 // Handle the integer rem common cases 1481 if (Instruction *Common = commonIRemTransforms(I)) 1482 return Common; 1483 1484 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); 1485 { 1486 const APInt *Y; 1487 // X % -Y -> X % Y 1488 if (match(Op1, m_Negative(Y)) && !Y->isMinSignedValue()) 1489 return replaceOperand(I, 1, ConstantInt::get(I.getType(), -*Y)); 1490 } 1491 1492 // -X srem Y --> -(X srem Y) 1493 Value *X, *Y; 1494 if (match(&I, m_SRem(m_OneUse(m_NSWSub(m_Zero(), m_Value(X))), m_Value(Y)))) 1495 return BinaryOperator::CreateNSWNeg(Builder.CreateSRem(X, Y)); 1496 1497 // If the sign bits of both operands are zero (i.e. we can prove they are 1498 // unsigned inputs), turn this into a urem. 1499 APInt Mask(APInt::getSignMask(I.getType()->getScalarSizeInBits())); 1500 if (MaskedValueIsZero(Op1, Mask, 0, &I) && 1501 MaskedValueIsZero(Op0, Mask, 0, &I)) { 1502 // X srem Y -> X urem Y, iff X and Y don't have sign bit set 1503 return BinaryOperator::CreateURem(Op0, Op1, I.getName()); 1504 } 1505 1506 // If it's a constant vector, flip any negative values positive. 1507 if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) { 1508 Constant *C = cast<Constant>(Op1); 1509 unsigned VWidth = cast<FixedVectorType>(C->getType())->getNumElements(); 1510 1511 bool hasNegative = false; 1512 bool hasMissing = false; 1513 for (unsigned i = 0; i != VWidth; ++i) { 1514 Constant *Elt = C->getAggregateElement(i); 1515 if (!Elt) { 1516 hasMissing = true; 1517 break; 1518 } 1519 1520 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt)) 1521 if (RHS->isNegative()) 1522 hasNegative = true; 1523 } 1524 1525 if (hasNegative && !hasMissing) { 1526 SmallVector<Constant *, 16> Elts(VWidth); 1527 for (unsigned i = 0; i != VWidth; ++i) { 1528 Elts[i] = C->getAggregateElement(i); // Handle undef, etc. 1529 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) { 1530 if (RHS->isNegative()) 1531 Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS)); 1532 } 1533 } 1534 1535 Constant *NewRHSV = ConstantVector::get(Elts); 1536 if (NewRHSV != C) // Don't loop on -MININT 1537 return replaceOperand(I, 1, NewRHSV); 1538 } 1539 } 1540 1541 return nullptr; 1542 } 1543 1544 Instruction *InstCombinerImpl::visitFRem(BinaryOperator &I) { 1545 if (Value *V = SimplifyFRemInst(I.getOperand(0), I.getOperand(1), 1546 I.getFastMathFlags(), 1547 SQ.getWithInstruction(&I))) 1548 return replaceInstUsesWith(I, V); 1549 1550 if (Instruction *X = foldVectorBinop(I)) 1551 return X; 1552 1553 return nullptr; 1554 } 1555