[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 08:28:58 PDT 2025
================
@@ -4011,15 +4011,16 @@ KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
// Fill in any known bits from range information. There are 3 types being
// used. The results VT (same vector elt size as BitWidth), the loaded
// MemoryVT (which may or may not be vector) and the range VTs original
- // type. The range matadata needs the full range (i.e
+ // type. The range metadata needs the full range (i.e
// MemoryVT().getSizeInBits()), which is truncated to the correct elt size
// if it is know. These are then extended to the original VT sizes below.
if (const MDNode *MD = LD->getRanges()) {
+ ConstantInt *Lower = mdconst::extract<ConstantInt>(MD->getOperand(0));
+
+ Known0 = Known0.trunc(Lower->getBitWidth());
computeKnownBitsFromRangeMetadata(*MD, Known0);
----------------
LU-JOHN wrote:
This change only affects the behavior of computeKnownBits if it is called with a vector SDValue. There is no testcase that hits this and perhaps no call-site within LLVM that might do this. It may require the upcoming AMDGPU changes to test.
https://github.com/llvm/llvm-project/pull/128908
More information about the llvm-commits
mailing list