diff options
author | Justin Lebar <jlebar@google.com> | 2018-03-07 15:11:13 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2018-03-07 15:11:13 +0000 |
commit | cb9e89c39b07efa6ba0dfbd24fc1b3d63d564d7f (patch) | |
tree | 9069cad3d6dfd039422cfd9d82c26558c1c88691 /llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp | |
parent | eab108ba391cf3228a8fce40986c8dc0d67b932f (diff) | |
download | bcm5719-llvm-cb9e89c39b07efa6ba0dfbd24fc1b3d63d564d7f.tar.gz bcm5719-llvm-cb9e89c39b07efa6ba0dfbd24fc1b3d63d564d7f.zip |
Teach CorrelatedValuePropagation to reduce the width of udiv/urem instructions.
Summary:
If the operands of a udiv/urem can be proved to fit within a smaller
power-of-two-sized type, reduce the width of the udiv/urem.
Reviewers: spatel, sanjoy
Subscribers: llvm-commits, hiraditya
Differential Revision: https://reviews.llvm.org/D44102
llvm-svn: 326898
Diffstat (limited to 'llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp index db24fe05e86..6985632c7a2 100644 --- a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp +++ b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp @@ -58,6 +58,7 @@ STATISTIC(NumCmps, "Number of comparisons propagated"); STATISTIC(NumReturns, "Number of return values propagated"); STATISTIC(NumDeadCases, "Number of switch cases removed"); STATISTIC(NumSDivs, "Number of sdiv converted to udiv"); +STATISTIC(NumUDivs, "Number of udivs whose width was decreased"); STATISTIC(NumAShrs, "Number of ashr converted to lshr"); STATISTIC(NumSRems, "Number of srem converted to urem"); STATISTIC(NumOverflows, "Number of overflow checks removed"); @@ -432,6 +433,46 @@ static bool hasPositiveOperands(BinaryOperator *SDI, LazyValueInfo *LVI) { return true; } +/// Try to shrink a udiv/urem's width down to the smallest power of two that's +/// sufficient to contain its operands. +static bool processUDivOrURem(BinaryOperator *Instr, LazyValueInfo *LVI) { + assert(Instr->getOpcode() == Instruction::UDiv || + Instr->getOpcode() == Instruction::URem); + if (Instr->getType()->isVectorTy()) + return false; + + // Find the smallest power of two bitwidth that's sufficient to hold Instr's + // operands. + auto OrigWidth = Instr->getType()->getIntegerBitWidth(); + ConstantRange OperandRange(OrigWidth, /*isFullset=*/false); + for (Value *Operand : Instr->operands()) { + OperandRange = OperandRange.unionWith( + LVI->getConstantRange(Operand, Instr->getParent())); + } + // Don't shrink below 8 bits wide. + unsigned NewWidth = std::max<unsigned>( + PowerOf2Ceil(OperandRange.getUnsignedMax().getActiveBits()), 8); + if (NewWidth == OrigWidth) + return false; + + ++NumUDivs; + auto *TruncTy = Type::getIntNTy(Instr->getContext(), NewWidth); + auto *LHS = CastInst::Create(Instruction::Trunc, Instr->getOperand(0), TruncTy, + Instr->getName() + ".lhs.trunc", Instr); + auto *RHS = CastInst::Create(Instruction::Trunc, Instr->getOperand(1), TruncTy, + Instr->getName() + ".rhs.trunc", Instr); + auto *BO = + BinaryOperator::Create(Instr->getOpcode(), LHS, RHS, Instr->getName(), Instr); + auto *Zext = CastInst::Create(Instruction::ZExt, BO, Instr->getType(), + Instr->getName() + ".zext", Instr); + if (BO->getOpcode() == Instruction::UDiv) + BO->setIsExact(Instr->isExact()); + + Instr->replaceAllUsesWith(Zext); + Instr->eraseFromParent(); + return true; +} + static bool processSRem(BinaryOperator *SDI, LazyValueInfo *LVI) { if (SDI->getType()->isVectorTy() || !hasPositiveOperands(SDI, LVI)) return false; @@ -441,6 +482,10 @@ static bool processSRem(BinaryOperator *SDI, LazyValueInfo *LVI) { SDI->getName(), SDI); SDI->replaceAllUsesWith(BO); SDI->eraseFromParent(); + + // Try to process our new urem. + processUDivOrURem(BO, LVI); + return true; } @@ -460,6 +505,9 @@ static bool processSDiv(BinaryOperator *SDI, LazyValueInfo *LVI) { SDI->replaceAllUsesWith(BO); SDI->eraseFromParent(); + // Try to simplify our new udiv. + processUDivOrURem(BO, LVI); + return true; } @@ -595,6 +643,10 @@ static bool runImpl(Function &F, LazyValueInfo *LVI, const SimplifyQuery &SQ) { case Instruction::SDiv: BBChanged |= processSDiv(cast<BinaryOperator>(II), LVI); break; + case Instruction::UDiv: + case Instruction::URem: + BBChanged |= processUDivOrURem(cast<BinaryOperator>(II), LVI); + break; case Instruction::AShr: BBChanged |= processAShr(cast<BinaryOperator>(II), LVI); break; |