[llvm] [DA] use NSW arithmetic (PR #116632)
Sebastian Pop via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 08:01:49 PST 2025
================
@@ -3116,11 +3116,9 @@ const SCEV *DependenceInfo::addToCoefficient(const SCEV *Expr,
const Loop *TargetLoop,
const SCEV *Value) const {
const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Expr);
- if (!AddRec) // create a new addRec
- return SE->getAddRecExpr(Expr,
- Value,
- TargetLoop,
- SCEV::FlagAnyWrap); // Worst case, with no info.
+ if (!AddRec)
+ return SE->getAddRecExpr(Expr, Value, TargetLoop, SCEV::FlagNSW);
----------------
sebpop wrote:
Yes, the check for affine happens at the beginning of the dependence test, and then during the dep test.
dep test crashes because new non-affine AddRecs are added to the constraints.
The patch does modify the 2 places that build the new AddRecs to follow the definition of affine in checkSubscript.
https://github.com/llvm/llvm-project/pull/116632
More information about the llvm-commits
mailing list