| 1 | //===- ScalarEvolutionDivision.h - See below --------------------*- C++ -*-===// |
| 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 defines the class that knows how to divide SCEV's. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/Analysis/ScalarEvolutionDivision.h" |
| 14 | #include "llvm/ADT/APInt.h" |
| 15 | #include "llvm/ADT/DenseMap.h" |
| 16 | #include "llvm/ADT/SmallVector.h" |
| 17 | #include "llvm/Analysis/ScalarEvolution.h" |
| 18 | #include "llvm/IR/InstIterator.h" |
| 19 | #include "llvm/IR/Instructions.h" |
| 20 | #include "llvm/Support/Casting.h" |
| 21 | #include <cassert> |
| 22 | #include <cstdint> |
| 23 | |
| 24 | #define DEBUG_TYPE "scev-division" |
| 25 | |
| 26 | namespace llvm { |
| 27 | class Type; |
| 28 | } // namespace llvm |
| 29 | |
| 30 | using namespace llvm; |
| 31 | |
| 32 | static inline int sizeOfSCEV(const SCEV *S) { |
| 33 | struct FindSCEVSize { |
| 34 | int Size = 0; |
| 35 | |
| 36 | FindSCEVSize() = default; |
| 37 | |
| 38 | bool follow(const SCEV *S) { |
| 39 | ++Size; |
| 40 | // Keep looking at all operands of S. |
| 41 | return true; |
| 42 | } |
| 43 | |
| 44 | bool isDone() const { return false; } |
| 45 | }; |
| 46 | |
| 47 | FindSCEVSize F; |
| 48 | SCEVTraversal<FindSCEVSize> ST(F); |
| 49 | ST.visitAll(Root: S); |
| 50 | return F.Size; |
| 51 | } |
| 52 | |
| 53 | // Computes the Quotient and Remainder of the division of Numerator by |
| 54 | // Denominator. |
| 55 | void SCEVDivision::divide(ScalarEvolution &SE, const SCEV *Numerator, |
| 56 | const SCEV *Denominator, const SCEV **Quotient, |
| 57 | const SCEV **Remainder) { |
| 58 | assert(Numerator && Denominator && "Uninitialized SCEV" ); |
| 59 | assert(Numerator->getType() == Denominator->getType() && |
| 60 | "Numerator and Denominator must have the same type" ); |
| 61 | |
| 62 | SCEVDivision D(SE, Numerator, Denominator); |
| 63 | |
| 64 | // Check for the trivial case here to avoid having to check for it in the |
| 65 | // rest of the code. |
| 66 | if (Numerator == Denominator) { |
| 67 | *Quotient = D.One; |
| 68 | *Remainder = D.Zero; |
| 69 | return; |
| 70 | } |
| 71 | |
| 72 | if (Numerator->isZero()) { |
| 73 | *Quotient = D.Zero; |
| 74 | *Remainder = D.Zero; |
| 75 | return; |
| 76 | } |
| 77 | |
| 78 | // A simple case when N/1. The quotient is N. |
| 79 | if (Denominator->isOne()) { |
| 80 | *Quotient = Numerator; |
| 81 | *Remainder = D.Zero; |
| 82 | return; |
| 83 | } |
| 84 | |
| 85 | // Split the Denominator when it is a product. |
| 86 | if (const SCEVMulExpr *T = dyn_cast<SCEVMulExpr>(Val: Denominator)) { |
| 87 | const SCEV *Q, *R; |
| 88 | *Quotient = Numerator; |
| 89 | for (const SCEV *Op : T->operands()) { |
| 90 | divide(SE, Numerator: *Quotient, Denominator: Op, Quotient: &Q, Remainder: &R); |
| 91 | *Quotient = Q; |
| 92 | |
| 93 | // Bail out when the Numerator is not divisible by one of the terms of |
| 94 | // the Denominator. |
| 95 | if (!R->isZero()) { |
| 96 | *Quotient = D.Zero; |
| 97 | *Remainder = Numerator; |
| 98 | return; |
| 99 | } |
| 100 | } |
| 101 | *Remainder = D.Zero; |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | D.visit(S: Numerator); |
| 106 | *Quotient = D.Quotient; |
| 107 | *Remainder = D.Remainder; |
| 108 | } |
| 109 | |
| 110 | void SCEVDivision::visitConstant(const SCEVConstant *Numerator) { |
| 111 | if (const SCEVConstant *D = dyn_cast<SCEVConstant>(Val: Denominator)) { |
| 112 | APInt NumeratorVal = Numerator->getAPInt(); |
| 113 | APInt DenominatorVal = D->getAPInt(); |
| 114 | assert(NumeratorVal.getBitWidth() == DenominatorVal.getBitWidth() && |
| 115 | "Numerator and Denominator must have the same bit width" ); |
| 116 | |
| 117 | APInt QuotientVal(NumeratorVal.getBitWidth(), 0); |
| 118 | APInt RemainderVal(NumeratorVal.getBitWidth(), 0); |
| 119 | APInt::sdivrem(LHS: NumeratorVal, RHS: DenominatorVal, Quotient&: QuotientVal, Remainder&: RemainderVal); |
| 120 | Quotient = SE.getConstant(Val: QuotientVal); |
| 121 | Remainder = SE.getConstant(Val: RemainderVal); |
| 122 | return; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | void SCEVDivision::visitVScale(const SCEVVScale *Numerator) { |
| 127 | return cannotDivide(Numerator); |
| 128 | } |
| 129 | |
| 130 | void SCEVDivision::visitAddRecExpr(const SCEVAddRecExpr *Numerator) { |
| 131 | const SCEV *StartQ, *StartR, *StepQ, *StepR; |
| 132 | if (!Numerator->isAffine()) |
| 133 | return cannotDivide(Numerator); |
| 134 | divide(SE, Numerator: Numerator->getStart(), Denominator, Quotient: &StartQ, Remainder: &StartR); |
| 135 | divide(SE, Numerator: Numerator->getStepRecurrence(SE), Denominator, Quotient: &StepQ, Remainder: &StepR); |
| 136 | // Bail out if the types do not match. |
| 137 | Type *Ty = Denominator->getType(); |
| 138 | if (Ty != StartQ->getType() || Ty != StartR->getType() || |
| 139 | Ty != StepQ->getType() || Ty != StepR->getType()) |
| 140 | return cannotDivide(Numerator); |
| 141 | |
| 142 | Quotient = SE.getAddRecExpr(Start: StartQ, Step: StepQ, L: Numerator->getLoop(), |
| 143 | Flags: SCEV::NoWrapFlags::FlagAnyWrap); |
| 144 | Remainder = SE.getAddRecExpr(Start: StartR, Step: StepR, L: Numerator->getLoop(), |
| 145 | Flags: SCEV::NoWrapFlags::FlagAnyWrap); |
| 146 | } |
| 147 | |
| 148 | void SCEVDivision::visitAddExpr(const SCEVAddExpr *Numerator) { |
| 149 | SmallVector<SCEVUse, 2> Qs, Rs; |
| 150 | Type *Ty = Denominator->getType(); |
| 151 | |
| 152 | for (const SCEV *Op : Numerator->operands()) { |
| 153 | const SCEV *Q, *R; |
| 154 | divide(SE, Numerator: Op, Denominator, Quotient: &Q, Remainder: &R); |
| 155 | |
| 156 | // Bail out if types do not match. |
| 157 | if (Ty != Q->getType() || Ty != R->getType()) |
| 158 | return cannotDivide(Numerator); |
| 159 | |
| 160 | Qs.push_back(Elt: Q); |
| 161 | Rs.push_back(Elt: R); |
| 162 | } |
| 163 | |
| 164 | if (Qs.size() == 1) { |
| 165 | Quotient = Qs[0]; |
| 166 | Remainder = Rs[0]; |
| 167 | return; |
| 168 | } |
| 169 | |
| 170 | Quotient = SE.getAddExpr(Ops&: Qs); |
| 171 | Remainder = SE.getAddExpr(Ops&: Rs); |
| 172 | } |
| 173 | |
| 174 | void SCEVDivision::visitMulExpr(const SCEVMulExpr *Numerator) { |
| 175 | SmallVector<SCEVUse, 2> Qs; |
| 176 | Type *Ty = Denominator->getType(); |
| 177 | |
| 178 | bool FoundDenominatorTerm = false; |
| 179 | for (const SCEV *Op : Numerator->operands()) { |
| 180 | // Bail out if types do not match. |
| 181 | if (Ty != Op->getType()) |
| 182 | return cannotDivide(Numerator); |
| 183 | |
| 184 | if (FoundDenominatorTerm) { |
| 185 | Qs.push_back(Elt: Op); |
| 186 | continue; |
| 187 | } |
| 188 | |
| 189 | // Check whether Denominator divides one of the product operands. |
| 190 | const SCEV *Q, *R; |
| 191 | divide(SE, Numerator: Op, Denominator, Quotient: &Q, Remainder: &R); |
| 192 | if (!R->isZero()) { |
| 193 | Qs.push_back(Elt: Op); |
| 194 | continue; |
| 195 | } |
| 196 | |
| 197 | // Bail out if types do not match. |
| 198 | if (Ty != Q->getType()) |
| 199 | return cannotDivide(Numerator); |
| 200 | |
| 201 | FoundDenominatorTerm = true; |
| 202 | Qs.push_back(Elt: Q); |
| 203 | } |
| 204 | |
| 205 | if (FoundDenominatorTerm) { |
| 206 | Remainder = Zero; |
| 207 | if (Qs.size() == 1) |
| 208 | Quotient = Qs[0]; |
| 209 | else |
| 210 | Quotient = SE.getMulExpr(Ops&: Qs); |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | if (!isa<SCEVUnknown>(Val: Denominator)) |
| 215 | return cannotDivide(Numerator); |
| 216 | |
| 217 | // The Remainder is obtained by replacing Denominator by 0 in Numerator. |
| 218 | ValueToSCEVMapTy RewriteMap; |
| 219 | RewriteMap[cast<SCEVUnknown>(Val: Denominator)->getValue()] = Zero; |
| 220 | Remainder = SCEVParameterRewriter::rewrite(Scev: Numerator, SE, Map&: RewriteMap); |
| 221 | |
| 222 | if (Remainder->isZero()) { |
| 223 | // The Quotient is obtained by replacing Denominator by 1 in Numerator. |
| 224 | RewriteMap[cast<SCEVUnknown>(Val: Denominator)->getValue()] = One; |
| 225 | Quotient = SCEVParameterRewriter::rewrite(Scev: Numerator, SE, Map&: RewriteMap); |
| 226 | return; |
| 227 | } |
| 228 | |
| 229 | // Quotient is (Numerator - Remainder) divided by Denominator. |
| 230 | const SCEV *Q, *R; |
| 231 | const SCEV *Diff = SE.getMinusSCEV(LHS: Numerator, RHS: Remainder); |
| 232 | // This SCEV does not seem to simplify: fail the division here. |
| 233 | if (sizeOfSCEV(S: Diff) > sizeOfSCEV(S: Numerator)) |
| 234 | return cannotDivide(Numerator); |
| 235 | divide(SE, Numerator: Diff, Denominator, Quotient: &Q, Remainder: &R); |
| 236 | if (R != Zero) |
| 237 | return cannotDivide(Numerator); |
| 238 | Quotient = Q; |
| 239 | } |
| 240 | |
| 241 | SCEVDivision::SCEVDivision(ScalarEvolution &S, const SCEV *Numerator, |
| 242 | const SCEV *Denominator) |
| 243 | : SE(S), Denominator(Denominator) { |
| 244 | Zero = SE.getZero(Ty: Denominator->getType()); |
| 245 | One = SE.getOne(Ty: Denominator->getType()); |
| 246 | |
| 247 | // We generally do not know how to divide Expr by Denominator. We initialize |
| 248 | // the division to a "cannot divide" state to simplify the rest of the code. |
| 249 | cannotDivide(Numerator); |
| 250 | } |
| 251 | |
| 252 | // Convenience function for giving up on the division. We set the quotient to |
| 253 | // be equal to zero and the remainder to be equal to the numerator. |
| 254 | void SCEVDivision::cannotDivide(const SCEV *Numerator) { |
| 255 | Quotient = Zero; |
| 256 | Remainder = Numerator; |
| 257 | } |
| 258 | |
| 259 | void SCEVDivisionPrinterPass::runImpl(Function &F, ScalarEvolution &SE) { |
| 260 | OS << "Printing analysis 'Scalar Evolution Division' for function '" |
| 261 | << F.getName() << "':\n" ; |
| 262 | for (Instruction &Inst : instructions(F)) { |
| 263 | BinaryOperator *Div = dyn_cast<BinaryOperator>(Val: &Inst); |
| 264 | if (!Div || Div->getOpcode() != Instruction::SDiv) |
| 265 | continue; |
| 266 | |
| 267 | const SCEV *Numerator = SE.getSCEV(V: Div->getOperand(i_nocapture: 0)); |
| 268 | const SCEV *Denominator = SE.getSCEV(V: Div->getOperand(i_nocapture: 1)); |
| 269 | const SCEV *Quotient, *Remainder; |
| 270 | SCEVDivision::divide(SE, Numerator, Denominator, Quotient: &Quotient, Remainder: &Remainder); |
| 271 | |
| 272 | OS << "Instruction: " << *Div << "\n" ; |
| 273 | OS.indent(NumSpaces: 2) << "Numerator: " << *Numerator << "\n" ; |
| 274 | OS.indent(NumSpaces: 2) << "Denominator: " << *Denominator << "\n" ; |
| 275 | OS.indent(NumSpaces: 2) << "Quotient: " << *Quotient << "\n" ; |
| 276 | OS.indent(NumSpaces: 2) << "Remainder: " << *Remainder << "\n" ; |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | PreservedAnalyses SCEVDivisionPrinterPass::run(Function &F, |
| 281 | FunctionAnalysisManager &AM) { |
| 282 | ScalarEvolution &SE = AM.getResult<ScalarEvolutionAnalysis>(IR&: F); |
| 283 | runImpl(F, SE); |
| 284 | return PreservedAnalyses::all(); |
| 285 | } |
| 286 | |