[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 08:23:13 PDT 2025


================
@@ -429,10 +429,14 @@ void llvm::computeKnownBitsFromRangeMetadata(const MDNode &Ranges,
     ConstantInt *Upper =
         mdconst::extract<ConstantInt>(Ranges.getOperand(2 * i + 1));
     ConstantRange Range(Lower->getValue(), Upper->getValue());
+    unsigned RangeBitWidth = Lower->getBitWidth();
 
     // The first CommonPrefixBits of all values in Range are equal.
     unsigned CommonPrefixBits =
         (Range.getUnsignedMax() ^ Range.getUnsignedMin()).countl_zero();
+    // BitWidth must equal RangeBitWidth.  Otherwise Mask will be set
+    // incorrectly.
+    assert(BitWidth == RangeBitWidth && "BitWidth must equal RangeBitWidth");
----------------
LU-JOHN wrote:

Undo ValueTracking.cpp.  Will be done in separate PR.

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


More information about the llvm-commits mailing list