LLVM 22.0.0git
ScalarEvolutionDivision.cpp
Go to the documentation of this file.
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
14#include "llvm/ADT/APInt.h"
15#include "llvm/ADT/DenseMap.h"
21#include <cassert>
22#include <cstdint>
23
24#define DEBUG_TYPE "scev-division"
25
26namespace llvm {
27class Type;
28} // namespace llvm
29
30using namespace llvm;
31
32static 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;
49 ST.visitAll(S);
50 return F.Size;
51}
52
53// Computes the Quotient and Remainder of the division of Numerator by
54// Denominator.
55void 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
60 SCEVDivision D(SE, Numerator, Denominator);
61
62 // Check for the trivial case here to avoid having to check for it in the
63 // rest of the code.
64 if (Numerator == Denominator) {
65 *Quotient = D.One;
66 *Remainder = D.Zero;
67 return;
68 }
69
70 if (Numerator->isZero()) {
71 *Quotient = D.Zero;
72 *Remainder = D.Zero;
73 return;
74 }
75
76 // A simple case when N/1. The quotient is N.
77 if (Denominator->isOne()) {
78 *Quotient = Numerator;
79 *Remainder = D.Zero;
80 return;
81 }
82
83 // Split the Denominator when it is a product.
84 if (const SCEVMulExpr *T = dyn_cast<SCEVMulExpr>(Denominator)) {
85 const SCEV *Q, *R;
86 *Quotient = Numerator;
87 for (const SCEV *Op : T->operands()) {
88 divide(SE, *Quotient, Op, &Q, &R);
89 *Quotient = Q;
90
91 // Bail out when the Numerator is not divisible by one of the terms of
92 // the Denominator.
93 if (!R->isZero()) {
94 *Quotient = D.Zero;
95 *Remainder = Numerator;
96 return;
97 }
98 }
99 *Remainder = D.Zero;
100 return;
101 }
102
103 D.visit(Numerator);
104 *Quotient = D.Quotient;
105 *Remainder = D.Remainder;
106}
107
109 if (const SCEVConstant *D = dyn_cast<SCEVConstant>(Denominator)) {
110 APInt NumeratorVal = Numerator->getAPInt();
111 APInt DenominatorVal = D->getAPInt();
112 uint32_t NumeratorBW = NumeratorVal.getBitWidth();
113 uint32_t DenominatorBW = DenominatorVal.getBitWidth();
114
115 if (NumeratorBW > DenominatorBW)
116 DenominatorVal = DenominatorVal.sext(NumeratorBW);
117 else if (NumeratorBW < DenominatorBW)
118 NumeratorVal = NumeratorVal.sext(DenominatorBW);
119
120 APInt QuotientVal(NumeratorVal.getBitWidth(), 0);
121 APInt RemainderVal(NumeratorVal.getBitWidth(), 0);
122 APInt::sdivrem(NumeratorVal, DenominatorVal, QuotientVal, RemainderVal);
123 Quotient = SE.getConstant(QuotientVal);
124 Remainder = SE.getConstant(RemainderVal);
125 return;
126 }
127}
128
129void SCEVDivision::visitVScale(const SCEVVScale *Numerator) {
130 return cannotDivide(Numerator);
131}
132
134 const SCEV *StartQ, *StartR, *StepQ, *StepR;
135 if (!Numerator->isAffine())
136 return cannotDivide(Numerator);
137 divide(SE, Numerator->getStart(), Denominator, &StartQ, &StartR);
138 divide(SE, Numerator->getStepRecurrence(SE), Denominator, &StepQ, &StepR);
139 // Bail out if the types do not match.
140 Type *Ty = Denominator->getType();
141 if (Ty != StartQ->getType() || Ty != StartR->getType() ||
142 Ty != StepQ->getType() || Ty != StepR->getType())
143 return cannotDivide(Numerator);
144 Quotient = SE.getAddRecExpr(StartQ, StepQ, Numerator->getLoop(),
145 Numerator->getNoWrapFlags());
146 Remainder = SE.getAddRecExpr(StartR, StepR, Numerator->getLoop(),
147 Numerator->getNoWrapFlags());
148}
149
152 Type *Ty = Denominator->getType();
153
154 for (const SCEV *Op : Numerator->operands()) {
155 const SCEV *Q, *R;
156 divide(SE, Op, Denominator, &Q, &R);
157
158 // Bail out if types do not match.
159 if (Ty != Q->getType() || Ty != R->getType())
160 return cannotDivide(Numerator);
161
162 Qs.push_back(Q);
163 Rs.push_back(R);
164 }
165
166 if (Qs.size() == 1) {
167 Quotient = Qs[0];
168 Remainder = Rs[0];
169 return;
170 }
171
172 Quotient = SE.getAddExpr(Qs);
173 Remainder = SE.getAddExpr(Rs);
174}
175
178 Type *Ty = Denominator->getType();
179
180 bool FoundDenominatorTerm = false;
181 for (const SCEV *Op : Numerator->operands()) {
182 // Bail out if types do not match.
183 if (Ty != Op->getType())
184 return cannotDivide(Numerator);
185
186 if (FoundDenominatorTerm) {
187 Qs.push_back(Op);
188 continue;
189 }
190
191 // Check whether Denominator divides one of the product operands.
192 const SCEV *Q, *R;
193 divide(SE, Op, Denominator, &Q, &R);
194 if (!R->isZero()) {
195 Qs.push_back(Op);
196 continue;
197 }
198
199 // Bail out if types do not match.
200 if (Ty != Q->getType())
201 return cannotDivide(Numerator);
202
203 FoundDenominatorTerm = true;
204 Qs.push_back(Q);
205 }
206
207 if (FoundDenominatorTerm) {
208 Remainder = Zero;
209 if (Qs.size() == 1)
210 Quotient = Qs[0];
211 else
212 Quotient = SE.getMulExpr(Qs);
213 return;
214 }
215
216 if (!isa<SCEVUnknown>(Denominator))
217 return cannotDivide(Numerator);
218
219 // The Remainder is obtained by replacing Denominator by 0 in Numerator.
220 ValueToSCEVMapTy RewriteMap;
221 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = Zero;
222 Remainder = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap);
223
224 if (Remainder->isZero()) {
225 // The Quotient is obtained by replacing Denominator by 1 in Numerator.
226 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = One;
227 Quotient = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap);
228 return;
229 }
230
231 // Quotient is (Numerator - Remainder) divided by Denominator.
232 const SCEV *Q, *R;
233 const SCEV *Diff = SE.getMinusSCEV(Numerator, Remainder);
234 // This SCEV does not seem to simplify: fail the division here.
235 if (sizeOfSCEV(Diff) > sizeOfSCEV(Numerator))
236 return cannotDivide(Numerator);
237 divide(SE, Diff, Denominator, &Q, &R);
238 if (R != Zero)
239 return cannotDivide(Numerator);
240 Quotient = Q;
241}
242
243SCEVDivision::SCEVDivision(ScalarEvolution &S, const SCEV *Numerator,
244 const SCEV *Denominator)
245 : SE(S), Denominator(Denominator) {
246 Zero = SE.getZero(Denominator->getType());
247 One = SE.getOne(Denominator->getType());
248
249 // We generally do not know how to divide Expr by Denominator. We initialize
250 // the division to a "cannot divide" state to simplify the rest of the code.
251 cannotDivide(Numerator);
252}
253
254// Convenience function for giving up on the division. We set the quotient to
255// be equal to zero and the remainder to be equal to the numerator.
256void SCEVDivision::cannotDivide(const SCEV *Numerator) {
257 Quotient = Zero;
258 Remainder = Numerator;
259}
260
261void SCEVDivisionPrinterPass::runImpl(Function &F, ScalarEvolution &SE) {
262 OS << "Printing analysis 'Scalar Evolution Division' for function '"
263 << F.getName() << "':\n";
264 for (Instruction &Inst : instructions(F)) {
265 BinaryOperator *Div = dyn_cast<BinaryOperator>(&Inst);
266 if (!Div || Div->getOpcode() != Instruction::SDiv)
267 continue;
268
269 const SCEV *Numerator = SE.getSCEV(Div->getOperand(0));
270 const SCEV *Denominator = SE.getSCEV(Div->getOperand(1));
271 const SCEV *Quotient, *Remainder;
272 SCEVDivision::divide(SE, Numerator, Denominator, &Quotient, &Remainder);
273
274 OS << "Instruction: " << *Div << "\n";
275 OS.indent(2) << "Numerator: " << *Numerator << "\n";
276 OS.indent(2) << "Denominator: " << *Denominator << "\n";
277 OS.indent(2) << "Quotient: " << *Quotient << "\n";
278 OS.indent(2) << "Remainder: " << *Remainder << "\n";
279 }
280}
281
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
Expand Atomic instructions
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This file defines the DenseMap class.
#define F(x, y, z)
Definition MD5.cpp:54
#define T
static int sizeOfSCEV(const SCEV *S)
This file defines the SmallVector class.
Class for arbitrary precision integers.
Definition APInt.h:78
static LLVM_ABI void sdivrem(const APInt &LHS, const APInt &RHS, APInt &Quotient, APInt &Remainder)
Definition APInt.cpp:1890
unsigned getBitWidth() const
Return the number of bits in the APInt.
Definition APInt.h:1489
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
Definition APInt.cpp:985
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
BinaryOps getOpcode() const
Definition InstrTypes.h:374
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
This node represents an addition of some number of SCEVs.
This node represents a polynomial recurrence on the trip count of the specified loop.
const SCEV * getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
bool isAffine() const
Return true if this represents an expression A + B*x where A and B are loop invariant values.
This class represents a constant integer value.
const APInt & getAPInt() const
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
This node represents multiplication of some number of SCEVs.
NoWrapFlags getNoWrapFlags(NoWrapFlags Mask=NoWrapMask) const
ArrayRef< const SCEV * > operands() const
static const SCEV * rewrite(const SCEV *Scev, ScalarEvolution &SE, ValueToSCEVMapTy &Map)
Visit all nodes in the expression tree using worklist traversal.
This class represents the value of vscale, as used when defining the length of a scalable vector or r...
This class represents an analyzed expression in the program.
LLVM_ABI bool isZero() const
Return true if the expression is a constant zero.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
Analysis pass that exposes the ScalarEvolution for a function.
The main scalar evolution driver.
const SCEV * getZero(Type *Ty)
Return a SCEV for the constant 0 of a specific type.
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
const SCEV * getOne(Type *Ty)
Return a SCEV for the constant 1 of a specific type.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
Value * getOperand(unsigned i) const
Definition User.h:232
This is an optimization pass for GlobalISel generic memory operations.
DenseMap< const Value *, const SCEV * > ValueToSCEVMapTy
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
static void divide(ScalarEvolution &SE, const SCEV *Numerator, const SCEV *Denominator, const SCEV **Quotient, const SCEV **Remainder)
Computes the Quotient and Remainder of the division of Numerator by Denominator.
void visitVScale(const SCEVVScale *Numerator)
void visitAddRecExpr(const SCEVAddRecExpr *Numerator)
void visitConstant(const SCEVConstant *Numerator)
void visitAddExpr(const SCEVAddExpr *Numerator)
void visitMulExpr(const SCEVMulExpr *Numerator)