[llvm] [Reland][SCEV] teach isImpliedViaOperations about samesign (PR #133711)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 03:08:16 PDT 2025


================
@@ -11804,8 +11804,10 @@ bool ScalarEvolution::isImpliedCond(CmpPredicate Pred, const SCEV *LHS,
                                           MaxValue)) {
         const SCEV *TruncFoundLHS = getTruncateExpr(FoundLHS, NarrowType);
         const SCEV *TruncFoundRHS = getTruncateExpr(FoundRHS, NarrowType);
-        if (isImpliedCondBalancedTypes(Pred, LHS, RHS, FoundPred, TruncFoundLHS,
-                                       TruncFoundRHS, CtxI))
+        // We cannot preserve samesign after truncation.
+        if (isImpliedCondBalancedTypes(
+                Pred, LHS, RHS, static_cast<ICmpInst::Predicate>(FoundPred),
----------------
nikic wrote:

I kind of wonder whether we should have some more explicit API for this like `FoundPred.withoutSameSign()`. Doing this by going through a static_cast is a bit subtle...

https://github.com/llvm/llvm-project/pull/133711


More information about the llvm-commits mailing list