[PATCH] D150425: [ValueTracking] deduce `X * Y != 0` if `LowestKnownBit(X) * LowestKnownBit(Y) != 0`
Noah Goldstein via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 16 16:58:53 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG774ecc20e121: [ValueTracking] deduce `X * Y != 0` if `LowestKnownBit(X) * LowestKnownBit(Y) ! (authored by goldstein.w.n).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150425/new/
https://reviews.llvm.org/D150425
Files:
llvm/lib/Analysis/ValueTracking.cpp
llvm/test/Analysis/ValueTracking/known-non-zero.ll
Index: llvm/test/Analysis/ValueTracking/known-non-zero.ll
===================================================================
--- llvm/test/Analysis/ValueTracking/known-non-zero.ll
+++ llvm/test/Analysis/ValueTracking/known-non-zero.ll
@@ -1099,11 +1099,7 @@
define i1 @mul_nonzero_contains_nonzero_mul(i8 %x, i8 %y) {
; CHECK-LABEL: @mul_nonzero_contains_nonzero_mul(
-; CHECK-NEXT: [[XX:%.*]] = or i8 [[X:%.*]], 16
-; CHECK-NEXT: [[YY:%.*]] = or i8 [[Y:%.*]], 8
-; CHECK-NEXT: [[XY:%.*]] = mul i8 [[XX]], [[YY]]
-; CHECK-NEXT: [[NZ:%.*]] = icmp ne i8 [[XY]], 0
-; CHECK-NEXT: ret i1 [[NZ]]
+; CHECK-NEXT: ret i1 true
;
%xx = or i8 %x, 16
%yy = or i8 %y, 8
Index: llvm/lib/Analysis/ValueTracking.cpp
===================================================================
--- llvm/lib/Analysis/ValueTracking.cpp
+++ llvm/lib/Analysis/ValueTracking.cpp
@@ -2884,7 +2884,13 @@
return XKnown.isNonZero() ||
isKnownNonZero(I->getOperand(0), DemandedElts, Depth, Q);
- return KnownBits::mul(XKnown, YKnown).isNonZero();
+ // If there exists any subset of X (sX) and subset of Y (sY) s.t sX * sY is
+ // non-zero, then X * Y is non-zero. We can find sX and sY by just taking
+ // the the lowest known One of X and Y. If they are non-zero, the result
+ // must be non-zero. We can check if LSB(X) * LSB(Y) != 0 by doing
+ // X.CountLeadingZeros + Y.CountLeadingZeros < BitWidth.
+ return (XKnown.countMaxTrailingZeros() + YKnown.countMaxTrailingZeros()) <
+ BitWidth;
}
case Instruction::Select:
// (C ? X : Y) != 0 if X != 0 and Y != 0.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150425.522839.patch
Type: text/x-patch
Size: 1622 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230516/c0023060/attachment.bin>
More information about the llvm-commits
mailing list